html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: normal;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    box-sizing: border-box;
}

:root {
    --laranja: #F28127;
    --transicao: 0.2s all ease-in-out;
}

a {
    text-decoration: none;
}

.estica-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/** Banner **/

#banner {
    background-image: url(../imagens/bg-banner.webp);
    padding-top: 70px;
    margin-bottom: 89px;
}

#banner .container {
    width: 1460px;
    max-width: 90%;
    margin: 0 auto;
    padding-bottom: 110px;
}

#banner .container .topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

#banner .container .topo .btn {
    border: 2px solid #00CD1F;
    border-radius: 222px;
    padding: 18px 30px;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    column-gap: 18px;
    transition: var(--transicao);
}

#banner .container .topo .btn:hover {
    background-color: #00CD1F;
}

#banner .container .bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#banner .container .bottom .esq {
    width: 50%;
    padding-top: 72px;
}

#banner .container .bottom .esq .titulo {
    font-weight: 300;
    font-size: 33.31px;
    color: #fff;
    margin-bottom: 18px;
}

#banner .container .bottom .esq .titulo .colorido {
    background: linear-gradient(90deg, #833494 41.75%, #F28127 100%);
    border-radius: 200px;
    font-weight: 800;
    font-size: 54.14px;
    padding: 13px 20px;
    display: flex;
    justify-content: center;
    width: max-content;
    padding: 13px 20px;
}

#banner .container .bottom .esq .titulo .maior {
    font-weight: 800;
    font-size: 79.12px;
    line-height: 90px;
    margin-bottom: 12px;
    display: inline-block;
}

#banner .container .bottom .esq .titulo b {
    font-weight: 800;
    font-size: 33.5px;
}

#banner .container .bottom .esq .sub {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    line-height: 42px;
    margin-bottom: 53px;
}

#banner .container .bottom .esq .sub b {
    font-weight: 800;
}

#banner .container .bottom .esq .btn {
    background-color: var(--laranja);
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    border: 2px solid var(--laranja);
    border-radius: 222px;
    padding: 17px 18px;
    display: inline-block;
    transition: var(--transicao);
}

#banner .container .bottom .esq .btn:hover {
    background-color: #fff;
    color: var(--laranja);
}

#banner>.linha {
    display: block;
    background: linear-gradient(90deg, #833494 9.62%, #CE4A2C 31.25%, #F28127 51.44%, #F9B133 75.96%, #FFD86C 100%);
    height: 12px;
    background-size: 300% 100%;
    animation: moveBackground 3s linear infinite alternate;
}


@keyframes moveBackground {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

/** Plataforma **/

#plataforma {
    position: relative;
    margin-bottom: 77px;
}

#plataforma .container {
    width: 1460px;
    max-width: 90%;
    margin: 0 auto;
}

#plataforma .container .cima {
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 42px;
}

#plataforma .container .cima .esq {
    max-width: 50%;
}

#plataforma .container .cima .esq .titulo {
    font-weight: 300;
    font-size: 35px;
    line-height: 57.6px;
    color: #000;
}

#plataforma .container .cima .esq .titulo b {
    font-weight: 800;
}

#plataforma .container .cima .esq .titulo .colorido {
    color: var(--laranja);
}

#plataforma .container .bottom>.texto {
    font-weight: 300;
    font-size: 18px;
    line-height: 44.6px;
    text-align: center;
    color: #000;
    margin-bottom: 44px;
}

#plataforma .container .bottom .area-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    align-items: flex-start;
    width: 1090px;
    margin: 0 auto;
    max-width: 100%;
}

#plataforma .container .bottom .area-linha .item .icone {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#plataforma .container .bottom .area-linha .item .texto {
    width: 228px;
    margin: 0 auto;
    font-weight: 800;
    font-size: 22px;
    line-height: 33.6px;
    text-align: center;

}

#plataforma .container .bottom .area-linha .item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    position: relative;
    z-index: 2;
}

#plataforma .container .bottom .area-linha .item.laranja {
    color: var(--laranja);
}

#plataforma .container .bottom .area-linha .item.roxo {
    color: #833494;
}

#plataforma .container .bottom .area-linha .item.amarelo {
    color: #F9B133;
}

#plataforma .container .bottom .area-linha .item.laranja .icone {
    background-color: var(--laranja);
    color: var(--laranja);
}

#plataforma .container .bottom .area-linha .item.roxo .icone {
    background-color: #833494;
    color: #833494;
}

#plataforma .container .bottom .area-linha .item.amarelo .icone {
    background-color: #F9B133;
    color: #F9B133;
}

#plataforma .container .bottom .area-linha .linha-meio {
    width: 100%;
    height: 9px;
    display: block;
    background: linear-gradient(90deg, #833494 9.62%, #CE4A2C 31.25%, #F28127 51.44%, #F9B133 75.96%, #FFD86C 100%);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 44px;
    width: 923px;
    background-size: 300% 100%;
    animation: moveBackground 3s linear infinite alternate;
}

/** Empresas **/

#empresas {
    position: relative;
    margin-bottom: 91px;
}

#empresas .container {
    width: 1460px;
    max-width: 90%;
    margin: 28px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}

#empresas .container .texto-inicial {
    font-weight: 300;
    font-size: 20px;
    line-height: 30.6px;
    max-width: 100%;
    color: #000000;
    width: 290px;
}

#empresas .container .texto-inicial b {
    font-weight: 800;
}

#empresas .container .texto-final {
    font-weight: 800;
    font-size: 20px;
    line-height: 30.6px;
    color: #833494;
    width: 266px;
}

#empresas .borda {
    width: 100%;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, #833494 9.62%, #CE4A2C 31.25%, #F28127 51.44%, #F9B133 75.96%, #FFD86C 100%);
    background-size: 300% 100%;
    animation: moveBackground 3s linear infinite alternate;
}

/** Resultados **/

#resultados {
    margin-bottom: 90px;
}

#resultados .container {
    width: 1460px;
    max-width: 90%;
    margin: 0 auto;
}

#resultados .container>.titulo {
    font-weight: 300;
    font-size: 35px;
    line-height: 57.6px;
    text-align: center;
    color: #000;
    width: 650px;
    margin: 0 auto 40px;
    text-align: center;
}

#resultados .container>.titulo .colorido {
    color: var(--laranja);
    font-weight: 800;
}

#resultados .container>.titulo b {
    font-weight: 800;
}

#resultados .container .area-cards {
    display: flex;
    column-gap: 11px;
    width: 283px;
    width: 100%;
}

#resultados .container .area-cards .card {
    width: 283px;
    border: 4px solid #00CD1F;
    border-radius: 35px;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 21px;
}

#resultados .container .area-cards .card .texto {
    font-weight: 300;
    font-size: 20px;
    line-height: 37.6px;
    text-align: center;
    color: #000;
}

#resultados .container .area-cards .card .texto b {
    font-weight: 600;
}

/** Força **/

#forca {
    background-image: url(../imagens/bg-forca.webp);
    padding: 90px 0;
    margin-bottom: 90px;
}

#forca .container {
    width: 1460px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    column-gap: 30px;
    justify-content: space-between;
}

#forca .container .esq {
    width: 523px;
    display: flex;
    flex-direction: column;
}

#forca .container .esq .titulo {
    font-weight: 300;
    font-size: 50px;
    line-height: 57.6px;
    color: #fff;
    margin-bottom: 47px;
}

#forca .container .esq .titulo b {
    display: block;
    font-weight: 800;
}

#forca .container .esq img {
    display: block;
    margin-top: auto;
}

#forca .container .esq .texto {
    font-weight: 400;
    font-size: 20px;
    line-height: 40.6px;
    color: #fff;
    margin-bottom: 30px;
}

#forca .container .esq .texto b {
    font-weight: 800;
}

#forca .container .dir .area-texto {
    background-color: #fff;
    display: block;
    width: 100%;
    border-radius: 25px;
    padding: 0 100px;
}

#forca .container .dir .area-texto p {
    font-weight: 500;
    font-size: 34.55px;
    line-height: 66.33px;
    color: #000;
}

#forca .container .dir .area-texto p .quebra-linha {
    display: block;
}

#forca .container .dir .area-texto p .cifrao {
    font-weight: 500;
    font-size: 46.06px;
    line-height: 66.33px;
    color: #000;
}

#forca .container .dir .area-texto p .colorido {
    font-weight: 800;
    font-size: 57.58px;
    line-height: 66.33px;
    color: var(--laranja);
}

#forca .container .dir img {
    display: block;
    margin-bottom: 13px;
}

/** Prova **/

#prova>.titulo {
    font-weight: 300;
    font-size: 35px;
    text-align: center;
    color: #000;
    width: 100%;
    padding: 0 5%;
    margin-bottom: 40px;
}

#prova>.titulo b {
    font-weight: 800;
    color: var(--laranja);
}

#prova .container {
    width: 1460px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.7%;
    row-gap: 22px;
}

#prova .container .card {
    display: block;
    position: relative;
    width: 49.1%;
    height: 357px;
    border: 2px solid var(--laranja);
    border-radius: 33px;
    overflow: hidden;
}

#prova .container .card::before {
    content: '';
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background-color: var(--laranja);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../imagens/icones/lightbox.svg);
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    background-position: center;
    right: 24px;
    top: 24px;
    z-index: 2;
    transition: var(--transicao);
}

#prova .container .card .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0000004D;
}

#prova .container .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#prova .container .card:hover::before {
    transform: scale(1.1);
}

/* Alinhe */

#alinhe .container {
    width: 1460px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
}

#alinhe .container .esq {
    width: 849px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#alinhe .container .esq .titulo {
    font-weight: 300;
    font-size: 35px;
    line-height: 48.6px;
    color: #000;
    margin-bottom: 35px;
}

#alinhe .container .esq .titulo b {
    font-weight: 800;
}

#alinhe .container .esq .titulo span {
    font-weight: 800;
    display: block;
    color: var(--laranja);
}

#alinhe .container .esq .texto {
    font-weight: 500;
    font-size: 20px;
    line-height: 40.6px;
    color: #000;
}

#alinhe .container .dir img {
    display: block;
}

/** Oportunidade **/


#oportunidade {
    margin-bottom: 109px;
    scroll-margin-top: 20px;
}

#oportunidade .container {
    width: 1740px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    background-color: #000;
    border-radius: 45px;
    padding: 95px 120px;
}

#oportunidade .container .esq {
    max-width: 45%;
}

#oportunidade .container .esq .titulo {
    font-weight: 900;
    font-size: 55.11px;
    color: #fff;
    margin-bottom: 18px;
}

#oportunidade .container .esq .titulo .colorido {
    background: linear-gradient(90deg, #833494 9.62%, #CE4A2C 31.25%, #F28127 51.44%, #F9B133 75.96%, #FFD86C 100%);
    border-radius: 20px;
    padding: 0 20px;
}

#oportunidade .container .esq .texto {
    font-weight: 500;
    font-size: 20px;
    line-height: 40.6px;
    color: #fff;
    margin-bottom: 62px;
}

#oportunidade .container .esq .texto b {
    font-weight: 800;
}

#oportunidade .container .esq .btn {
    width: 100%;
    padding: 17px 5%;
    border: 2px solid #00CD1F;
    border-radius: 20px;
    font-weight: 800;
    font-size: 30px;
    line-height: 40.6px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
    transition: var(--transicao);
}

#oportunidade .container .esq .btn:hover {
    background-color: #00CD1F;
}

#oportunidade .container .dir {
    width: 577px;
    max-width: 50%;
}

#oportunidade .container .dir .oferta {
    font-weight: 900;
    font-size: 55.06px;
    color: #fff;
    background-color: #EB0202;
    padding: 0 30px;
    border-radius: 20px;
    position: relative;
    display: inline-block;
}

#oportunidade .container .dir .contador {
    font-weight: 900;
    font-size: 79.54px;
    color: #fff;
}

#oportunidade .container .dir .area-qr-code {
    display: flex;
    column-gap: 45px;
    margin-bottom: 30px;
}

#oportunidade .container .dir .garanta {
    font-weight: 900;
    font-size: 35.34px;
    line-height: 43px;
    color: #fff;
    margin-bottom: 12px;
}

#oportunidade .container .dir .garanta .quebra-linha {
    display: block;
}

#oportunidade .container .dir .empresas {
    font-weight: 700;
    font-size: 35.34px;
    line-height: 48.83px;
    color: #fff;
}

#oportunidade .container .deixar {
    width: 100%;
    padding: 0 5%;
    text-align: center;
    color: #fff;
    border: 2px solid #FF0000;
    font-weight: 500;
    font-size: 35.34px;
    text-align: center;
    border-radius: 13px;
}

#oportunidade .container .deixar b {
    font-weight: 900;
}

/**  Operação  **/

#operacao>img {
    max-width: 90%;
    height: auto;
    text-align: center;
    display: block;
    margin: 0 auto 90px;
}

#operacao .container {
    background-color: #E6E6E6;
    padding: 33px 0;
}

#operacao .container p {
    width: 1376px;
    max-width: 90%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
}

#operacao .container p .quebra-linha {
    display: block;
}

/** Footer **/

footer {
    height: 50px;
    text-align: center;
    padding: 0 5%;
    background-color: #3B82F6;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 119px;
}

footer a {
    color: #fff;
}

footer b {
    font-weight: 800;
}

/** Footer fixo **/


#footer-fixo {
    position: fixed;
    bottom: 0;
    height: 119px;
    left: 0;
    width: 100%;
    background-color: #000000;
    padding: 20px 0;
    z-index: 1000;
    display: none;
}
#footer-fixo.exibir {
    display: flex;
}
#footer-fixo .container {
    width: 1017px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 22px;
}

#footer-fixo .container a {
    width: 100%;
    height: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    border-radius: 20px;
}

#footer-fixo .container a.laranja {
    background-color: var(--laranja);
}

#footer-fixo .container a.verde {
    background-color: #00CD1F;
}


@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1680px) {}

@media screen and (max-width: 1600px) {
    #oportunidade .container .esq .titulo {
        font-size: 41.11px;
    }

    #oportunidade .container .dir .oferta {
        font-size: 44.06px;
    }

    #oportunidade .container .dir .contador {
        font-size: 67.54px;
    }

    #oportunidade .container .dir .garanta {
        font-size: 23.34px;
        line-height: 32px;
    }

    #oportunidade .container .dir .empresas {
        font-size: 23.34px;
        line-height: 37.83px;
    }

    #oportunidade .container .dir .area-qr-code .qr {
        min-width: 196px;
    }

    #oportunidade .container .deixar {
        font-size: 23.34px;
    }

    #oportunidade .container .esq .btn {
        font-size: 18px;
    }
}

@media screen and (max-width: 1480px) {
    #banner .container .bottom .esq .titulo {
        font-size: 22.31px;
    }

    #banner .container .bottom .esq .titulo .colorido {
        font-size: 45.14px;
    }

    #banner .container .bottom .esq .titulo .maior {
        display: block;
        font-size: 69px;
    }

    #banner .container .bottom .esq .titulo b {
        font-size: 29.5px;
    }

    #banner .container .bottom .esq .btn {
        font-size: 18px;
    }

    #banner {
        padding-top: 30px;
    }

    #banner .container .bottom .esq .sub {
        font-size: 18px;
        line-height: 32px;
    }

    #banner .container .bottom .dir {
        max-width: 45%;
    }

    #banner .container .bottom {
        align-items: center;
    }

    #banner .container .topo .btn {
        padding: 13px 30px;
        font-size: 16px;
    }
}

@media screen and (max-width: 1366px) {
    #plataforma .container .bottom .area-linha .linha-meio {
        width: 76%;
    }

    #forca .container .dir {
        width: 46%;
    }

    #forca .container .esq {
        width: 52%;
    }

    #forca .container .dir .area-texto {
        padding: 20px 40px;
    }

    #forca .container .dir .area-texto p {
        font-size: 24.55px;
        line-height: normal;
    }

    #forca .container .dir .area-texto p .cifrao {
        font-size: 36.06px;
        line-height: normal;
    }

    #forca .container .dir .area-texto p .colorido {
        font-size: 38.58px;
        line-height: normal;
    }

    #oportunidade .container {
        padding: 50px;
    }
}

@media screen and (max-width: 1280px) {
    #banner .container .bottom .esq .titulo .maior {
        font-size: 55px;
    }

    #banner .container .bottom .esq .titulo .colorido {
        font-size: 35.14px;
    }

    #banner .container .bottom .esq .titulo b {
        font-size: 23.5px;
    }

    #plataforma .container .cima .esq {
        max-width: 67%;
    }

    #empresas .container .texto-final,
    #empresas .container .texto-inicial {
        font-size: 16px;
        line-height: 21.6px;
    }

    #resultados .container .area-cards .card {
        padding: 27px 10px;
    }

    #prova .container .card {
        height: 286px;
    }
}

@media screen and (max-width: 1200px) {
    #forca .container .esq {
        width: 40%;
    }

    #forca .container .dir {
        width: 57%;
    }

    #forca .container .esq .titulo {
        font-size: 35px;
        line-height: 46.6px;
        margin-bottom: 25px;
    }

    #forca .container .esq .texto {
        font-size: 16px;
        line-height: 28.6px;
    }

    #oportunidade .container .esq .titulo {
        font-size: 34.11px;
    }

    #oportunidade .container .esq .texto {
        font-weight: 500;
        font-size: 18px;
        line-height: 30.6px;
    }

    #oportunidade .container .dir .oferta {
        font-size: 32.06px;
    }

    #oportunidade .container .dir .contador {
        font-size: 50.54px;
    }
}

@media screen and (max-width: 1080px) {}

@media screen and (max-width: 1024px) {
    #banner .container .bottom {
        flex-direction: column;
        row-gap: 40px;
    }

    #banner .container .bottom .esq,
    #banner .container .bottom .dir {
        width: 100%;
        max-width: 100%;
    }

    #banner .container .bottom .dir {
        display: none;
    }

    #plataforma .container .cima {
        flex-direction: column;
        row-gap: 30px;
    }

    #plataforma .container .cima .esq {
        max-width: 100%;
    }

    #plataforma .container .cima .dir {
        text-align: center;
        padding: 0 5%;
    }

    #plataforma .container .bottom .area-linha {
        flex-direction: column;
        row-gap: 132px;
    }

    #plataforma .container .bottom .area-linha .linha-meio {
        width: 6px;
        height: 100%;
        margin: unset;
        left: 33px;
        top: 0;
        background: linear-gradient(180deg, #833494 9.62%, #CE4A2C 31.25%, #F28127 51.44%, #F9B133 75.96%, #FFD86C 100%);

    }

    #plataforma .container .bottom .area-linha .item {
        flex-direction: row;
        column-gap: 20px;
    }

    #plataforma .container .bottom .area-linha .item .texto {
        width: auto;
        text-align: left;
    }

    #plataforma .container .bottom .area-linha .item .icone {
        width: 70px;
        min-width: 70px;
        height: 70px;
    }

    #plataforma .container .bottom .area-linha .item .icone svg {
        max-width: 40%;
    }

    #empresas .container {
        flex-direction: column;
        row-gap: 36px;
    }

    #empresas .container .texto-final,
    #empresas .container .texto-inicial {
        font-size: 20px;
        line-height: 30.6px;
        text-align: center;
        width: 100%;
        padding: 0 5%;
    }

    #resultados .container>.titulo {
        font-size: 30px;
        line-height: 45.6px;
        max-width: 100%;
    }

    #resultados .container .area-cards {
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 1.4%;
    }

    #resultados .container .area-cards .card {
        width: 49.3%;
    }

    #forca .container {
        flex-direction: column;
        row-gap: 30px;
    }

    #forca .container .esq {
        width: 100%;
        align-items: flex-start;
    }

    #forca .container .dir {
        width: 100%;
    }

    #forca .container .dir img {
        text-align: center;
        margin: 0 auto 13px;
    }

    #forca .container .esq .titulo {
        font-size: 44px;
        line-height: 53.6px;
    }

    #prova {
        margin-bottom: 60px;
    }

    #alinhe .container {
        flex-direction: column;
        row-gap: 30px;
    }

    #alinhe .container .dir {
        margin: 0 auto;
    }

    #oportunidade .container {
        flex-direction: column;
        row-gap: 60px;
    }

    #oportunidade .container .esq,
    #oportunidade .container .dir {
        width: 100%;
        max-width: 100%;
    }

    #oportunidade .container .esq .texto {
        margin-bottom: 28px;
    }

    #oportunidade .container .esq .btn {
        width: fit-content;
        margin: 0 auto;
        text-align: center;
    }

    #oportunidade .container .dir .area-qr-code {
        align-items: center;
        flex-direction: column;
        row-gap: 20px;
        width: 100%;
    }

    #oportunidade .container .dir .contador {
        margin-bottom: 23px;
        font-size: 50.54px;
        text-align: center;
    }

    #oportunidade .container .dir {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #oportunidade .container .dir .area-qr-code .textos {
        width: 100%;
        text-align: center;
    }

    #footer-fixo {
        height: auto;
    }

    #footer-fixo .container a {
        height: 60px;
        font-size: 14px;
        padding: 0 5%;
        text-align: center;
    }

    footer {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 996px) {}

@media screen and (max-width: 768px) {
    #prova .container .card {
        height: 38vw;
        width: 100%;
    }

    #prova .container .card::before {
        content: '';
        width: 9.7vw;
        height: 9.7vw;
        background-size: 50%;
    }
}

@media screen and (max-width: 600px) {
    #banner .container .topo {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    #banner .container .bottom .esq .titulo,
    #banner .container .bottom .esq .sub {
        text-align: center;
    }

    #banner .container .bottom .esq .btn {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    #banner .container .bottom .esq .titulo .colorido {
        width: auto;
        margin-bottom: 20px;
    }

    #banner .container .bottom .esq .titulo .colorido {
        font-size: 26.14px;
        padding: 10px 30px;
        border-radius: 29px;
    }

    #banner .container .bottom .esq .titulo .maior {
        font-size: 40px;
        line-height: 53px;
    }

    #plataforma .container .cima .esq .titulo {
        font-size: 29px;
        line-height: 46.6px;
    }

    #alinhe .container .esq .titulo {
        font-size: 28px;
        line-height: 42.6px;
    }

    #oportunidade .container {
        padding: 50px 30px;
    }
}

@media screen and (max-width: 490px) {
    #plataforma .container .bottom .area-linha .item .texto {
        font-size: 18px;
        line-height: 27.6px;
    }

    #resultados .container .area-cards .card {
        width: 100%;
    }

    #empresas {
        margin-bottom: 60px;
    }

    #oportunidade .container .esq .titulo {
        font-size: 28.11px;
    }

    #oportunidade .container .esq .texto {
        font-weight: 500;
        font-size: 16px;
    }

    #oportunidade .container .dir .oferta {
        font-size: 32.06px;
        text-align: center;
        line-height: 30px;
        padding: 15px 30px;
    }

    #footer-fixo .container {
        column-gap: 8px;
    }

    #footer-fixo .container a {
        height: 100px;
        flex-direction: column;
        row-gap: 5px;
        font-size: 12px;
    }

    footer {
        margin-bottom: 140px;
    }
}

@media screen and (max-width: 460px) {
    #oportunidade .container .dir .oferta {
        font-size: 22px;
    }

    #oportunidade .container .dir .contador {
        font-size: 33px;
    }

    #oportunidade .container .esq .btn svg {
        display: none;
    }
}

@media screen and (max-width: 430px) {
    #forca .container .esq .titulo {
        font-size: 36px;
        line-height: 48.6px;
    }

    #forca .container .dir .area-texto {
        padding: 20px;
    }


}

@media screen and (max-width: 400px) {
    #resultados .container>.titulo {
        font-size: 24px;
        line-height: 33.6px;
    }
}

@media screen and (max-width: 360px) {
    #oportunidade .container .esq .titulo {
        font-size: 23.11px;
    }
}

@media screen and (max-width: 330px) {}

@media screen and (max-width: 280px) {}