html,
body {
    font-family: 'Source Sans 3', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

h1 {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    color: #FAEDE1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

h1 em {
    color: #A2CE00;
    font-style: normal;
}

h1 span {
    color: #A2CE00;
    font-size: 48px;
    line-height: 48px;
    font-weight: 900;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

p {
    font-size: 16px;
    line-height: 19px;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.05);
    }
}

.botao {
    font-weight: 700;
    font-size: 18px;
    padding: 16px 8px;
    border-radius: 16px;
    background: linear-gradient(0deg, rgba(246, 148, 0, 1) 0%, rgba(246, 148, 0, 1) 40%, rgba(239, 186, 0, 1) 100%);
    color: #FFF;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 50;
    display: inline-block;

    /* Animação para todos navegadores modernos */
    animation: scale 0.7s ease-in-out infinite alternate;
    -webkit-animation: scale 0.7s ease-in-out infinite alternate;
}

.botao:hover {
    background: linear-gradient(0deg, #177B39 0%, #A2CE00 100%);
    color: #FFF;
}

@media(min-width:992px) {
    h1 {
        font-size: 33px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    h1 span {
        color: #A2CE00;
        font-size: 96px;
        line-height: 96px;
    }

    h2 {
        font-size: 54px;
        line-height: 58px;
        margin-bottom: 24px;
    }

    p {
        font-size: 20px;
        line-height: 26px;
    }

    .botao {
        font-size: 22px;
        padding: 20px 44px;
    }

    .reverso {
        flex-direction: row-reverse;
    }
}

/* */

#menu-desktop,
#menu-mobile {
    z-index: 100;
    position: absolute;
    top: 0;
}

.desktop-container {
    height: 80px;
    width: 100%;
    background-color: #07884A;
    display: none;
    position: fixed;
    top: 0px;
    z-index: 3;
}

.contentTopoMenu {
    height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo_desktop {
    width: 220px;
    height: 40px;
    display: flex;
    align-items: center;
}

.logo_desktop>img {
    width: 220px;
    height: auto;
}

.menuDesktop {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 24px;
    width: calc(50% - 110px);
}

.menuDesktop a {
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
    margin-right: 32px;
    border-bottom: 2px solid #07884A;
}

.menuDesktop a:hover {
    color: #A2CE00;
    border-bottom: 2px solid #A2CE00;
}

.ctaTopo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 24px;
    width: calc(50% - 110px);
}

.ctaTopo a {
    padding: 18px 18px;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(0deg, rgba(246, 148, 0, 1) 0%, rgba(246, 148, 0, 1) 40%, rgba(239, 186, 0, 1) 100%);
    border-radius: 16px;
    font-weight: 800;
}

.ctaTopo a:hover {
    background: linear-gradient(0deg, #177B39 0%, #A2CE00 100%);
    color: #FFF;
}

@media(min-width:992px) {
    .desktop-container {
        display: block;
        box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    }
}


/* ----------------------------------------------------------- */


.mobile-container {
    width: 100%;
    height: 58px;
    background-color: FFF;
    position: fixed;
    z-index: 3;
}

.topnav {
    background-color: #07884A;
    position: relative;
}

.contentMobileTopo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo_mobile img {
    width: 180px;
}

.topnav a {
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    font-size: 22px;
    line-height: 22px;
    color: #A2CE00;
    padding: 14px 16px;
    display: flex;
    justify-content: center;
}

.topnav .mobileNav {
    padding: 32px 16px;
}

.ctaMobileTopo {
    padding-right: 8px;
}

.ctaMobileTopo a {
    padding: 14px 12px;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(0deg, rgba(246, 148, 0, 1) 0%, rgba(246, 148, 0, 1) 40%, rgba(239, 186, 0, 1) 100%);
    border-radius: 12px;
    font-size: 12px !important;
    line-height: 12px;
    font-weight: 800;
    text-align: center;
}

.topnav a.icon {
    background: #07884A;
    display: block;
    color: #A2CE00;
    font-size: 30px;
}

.topnav a:hover {
    background-color: #07884A;
    color: #A2CE00;
}

.active {
    background-color: #F6F8FA;
    color: white;
}

@media(min-width:992px) {
    .mobile-container {
        display: none;
    }
}

/* ----------------------------------------- */
.divMargemTop {
    height: 56px;
    width: 100%;
    background-color: #f5f5f5;
}

/* ---------testeira----------- */

#testeira {
    background-color: #07884A;
    padding: 8px 0;
    text-align: center;
}

#testeira h5 {
    color: #FAEDE1;
    text-transform: uppercase;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
}

/* ---------fim testeira----------- */

/* ----------cover------------- */
#cover {
    background-image: url('../../images/home/fundo-desktop-escuro.jpg');
    background-size: cover;
    position: relative;
    padding-top: 120px;
    padding-bottom: 110px;
}

    #cover::after {
        content: "";
        background-image: url('../../images/home/lp-vb-novaoferta2024-grafismoSetaDireitaCover.png');
        background-size: 100%;
        background-repeat: no-repeat;
        width: 62px;
        height: 60px;
        position: absolute;
        bottom: 0;
        right: 0;
    }

#cover .row {
    align-items: center;
}

#cover p {
    color: #FAEDE1;
}

.content-logo {
    text-align: center;
    padding-top: 22px;
}

.logometodo-mobile {
    width: 205px;
    margin-bottom: 22px;
}

.logometodo-desktop {
    display: none;
    width: 300px;
    margin-bottom: 60px;
}

.contentButton {
    text-align: center;
}

.content-texto-cover {
    margin-bottom: 30px;
    text-align: center;
}

.foto-cover {
    width: 100%;
}

@media(min-width:992px) {
    #cover {
        background-image: url('../../images/home/fundo-desktop-escuro.jpg');
        background-size: cover;
        position: relative;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    #cover::after {
        width: 162px;
        height: 152px;
    }

    .contentButton {
        text-align: left;
    }

    .content-logo {
        text-align: left;
        padding-top: 44px;
    }

    .logometodo-desktop {
        display: block;
    }

    .logometodo-mobile {
        display: none;
    }

    .content-texto-cover {
        margin-bottom: 60px;
        text-align: left;
    }
}

/* ------------fimcover------------- */

/* -------------mudanca------------- */

#mudanca {
    background-image: url('../../images/home/fundo-Depoimentos-escuro.jpg');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 160px;
    position: relative;
}

#mudanca::before {
    content: "";
    background-image: url('../../images/home/lp-vb-novaoferta2024-grafismoTrocaPagina.svg');
    background-size: cover;
    background-position-y: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
}

#mudanca h2 {
    color: #A2CE00;
}

#mudanca p {
    color: #FAEDE1;
}

#mudanca .reverso {
    align-items: center;
}

.content-texto-mudanca {
    margin-bottom: 24px;
}

.content-foto-mudanca {
    text-align: center;
}

.foto-mudanca {
    width: 80%;
}

@media(min-width:992px) {

    #mudanca {
        padding-top: 100px;
        padding-bottom: 110px;
    }

    #mudanca::before {
        height: 60px;
    }

    .content-foto-mudanca {
        text-align: left;
    }

}

/* -----------------icones---------------- */

.linha-blocoIcones {
    position: absolute;
    bottom: -180px;
    z-index: 10;
    width: 100%;
}

.blocoIcones {
    background-color: #242222;
    border-radius: 16px;
    padding-top: 32px;
    padding-bottom: 32px;

}

.contentIcones {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
}

.contentIcones:last-child {
    margin-bottom: 0;
}

.contentIcones img {
    width: 50px;
    height: auto;
    margin-right: 16px;
}

.contentIcones h4 {
    font-weight: 800;
    color: #FFF;
}

@media(min-width:992px) {

    .linha-blocoIcones {
        bottom: -100px;
    }

    .blocoIcones {
        padding-top: 45px;
        padding-bottom: 45px;
        border-radius: 32px;
    }

    .contentIcones img {
        width: 90px;
    }

    .contentIcones {
        margin-bottom: 0;
    }
}

/* -----------------fim icones---------------- */

/* -----------------resultados------------------ */

#resultados {
    background-image: url('../../images/home/lp-vb-novaoferta2024-fundoAnteseDepois.jpg');
    background-size: cover;
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
}

#resultados::before {
    content: "";
    background-image: url('../../images/home/lp-vb-novaoferta2024-grafismoTrocaPagina2.svg');
    background-size: cover;
    background-position-y: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
}

.foto-antesDepois {
    width: 80%;
    margin-bottom: 32px;
}

#resultados h2 {
    color: #A2CE00;
}

#resultados h2>em {
    font-weight: 300 !important;
    color: #FFF;
    font-style: normal;
}

#resultados p {
    color: #FAEDE1;
    margin-bottom: 32px;
}

#resultados h3 {
    color: #FFFFFF;
}

.containerMenor {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.textoDepoimento {
    display: flex;
    flex-direction: row;
}

.textoDepoimento .aspas {
    width: 40px;
    height: 40px;
}

.textoDepoimento p {
    text-align: left;
    padding-left: 16px;
}

@media(min-width:992px) {

    #resultados {
        padding-top: 200px;
        padding-bottom: 140px;
    }

    #resultados::before {
        height: 60px;
    }

    .foto-antesDepois {
        width: 100%;
    }

    .contentAntesDepois {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/* -----------------FIM resultados------------------ */

/* -----------------Profissionais---------------- */

#especialistas {
    background-image: url('../../images/home/lp-vb-novaoferta2024-fundoProfissionais.jpg');
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
}

.linha-especialistas {
    align-items: center;
}

.fotos-profissionais {
    width: 100%;
}

#especialistas h2 {
    color: #A2CE00;
}

#especialistas p {
    color: #FAEDE1;
    margin-bottom: 32px;
}

.content-numero {
    background-color: #242222;
    display: flex;
    flex-direction: row;
    border-radius: 32px;
    margin-bottom: 24px;
    height: 100px;
    align-items: center;
    padding: 16px;
}

.content-numero h4 {
    font-weight: 800;
    color: #FFF;
}

.content-numero img {
    width: 30%;
    margin-right: 16px;
}

@media(min-width:992px) {

    #especialistas {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* -----------------Fim Profissionais---------------- */

/* -------------depoimentos------------- */

#depoimentos {
    background-image: url('../../images/home/lp-vb-novaoferta2024-fundoDepoimentos.jpg');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 20px;
    position: relative;
}

#depoimentos::before {
    content: "";
    background-image: url('../../images/home/lp-vb-novaoferta2024-grafismoTrocaPagina.svg');
    background-size: cover;
    background-position-y: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
}

#depoimentos::after {
    content: "";
    background-image: url('../../images/home/lp-vb-novaoferta2024-grafismoSetaDireitaCinza.png');
    background-size: cover;
    background-position-y: top;
    background-repeat: no-repeat;
    width: 180px;
    height: 190px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
}

.linhaDepoimentos {
    align-items: center;
}

.linhaDepoimentos .contentButton {
    text-align: center;
}

#depoimentos h2 {
    color: #808080;
    /* text-transform: uppercase; */
    text-align: center;
}

#depoimentos h2>span {
    color: #A2CE00;
}

#depoimentos p {
    color: #808080;
    text-align: center;
}

#depoimentos .splide__arrow {
    background-color: #64ff98 !important;
}

#depoimentos .splide__arrow--prev {
    left: -16px !important;
}

#depoimentos .splide__arrow--next {
    right: -16px;
}

.fotoDepoimentoDesktop {
    text-align: center;
}

.fotoDepoimentoDesktop img {
    width: 95%;
    height: auto;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.splide__slide {
    border: none !important;
    padding-bottom: 10px !important;
}

#splide01 {
    max-width: 343px !important;
    margin: 0 auto;
    box-shadow: 0px 4px 4px rgba(255, 255, 255, 0);
}

.splide__arrow--next {
    right: 2em;
}


@media(min-width:992px) {

    #depoimentos::before {
        height: 60px;
    }

    .fotoDepoimentoDesktop img {
        height: 580px;
        width: auto;
    }

    .carousel {
        display: none;
    }

    .linhaDepoimentos .contentButton {
        text-align: left;
    }

    #depoimentos h2 {
        text-align: left;
    }

    #depoimentos p {
        text-align: left;
    }
}

/* -------------fim depoimentos------------- */

/* --------------consultas---------------- */

#consultas {
    background-image: url('../../images/home/lp-vb-novaoferta2024-fundoDepoimentos.jpg');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
}

#consultas::before {
    content: "";
    background-image: url('../../images/home/lp-vb-novaoferta2024-grafismoTrocaPagina.svg');
    background-size: cover;
    background-position-y: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
}

.content-consultas img {
    width: 100%;
}

#consultas h2 {
    color: #808080;
}

#consultas h2>span {
    color: #A2CE00;
}

#consultas p {
    color: #808080;
}

#consultas .reverso {
    align-items: center;
}

.fotoModalMobile {
    display: block;
}

.fotoModalDesktop {
    display: none;
}

@media(min-width:992px) {

    .fotoModalMobile {
        display: none;
    }

    .fotoModalDesktop {
        display: block;
    }

    #consultas {
        padding-top: 160px;
        padding-bottom: 40px;
    }

    #consultas::before {
        height: 60px;
    }
}

/* -----------------fim consultas------------------ */

/* -------------Bonus----------------- */

#bonus {
    background-image: url('../../images/home/fundo-Depoimentos-escuro.jpg');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
}

#bonus h2 {
    color: #FAEDE1;
}

#bonus h2>span {
    color: #A2CE00;
}

#bonus p {
    color: #FAEDE1;
}

.card-bonus {
    margin-top: 40px;
}

.content-bonus {
    position: relative;
    top: -80px;
}

.content-bonus p {
    color: #FAEDE1;
    font-size: 14px;
    line-height: 18px;
}

.content-bonus h4 {
    color: #A2CE00;
    font-weight: 800;
    font-size: 28px;
}

.card-bonus {

    border-radius: 32px;
    position: relative;
    padding: 16px;
}

.content-image-bonus {
    text-align: center;
}

.content-bonus img {
    width: 200px;
    height: auto;

}

.content-background {
    display: block;
    width: 100%;
    height: 90%;
    position: absolute;
    background-color: #242222;
    border-radius: 32px;
    top: 0;
    left: 0;
}

@media(min-width:992px) {

    .content-bonus img {
        width: 300px;
        height: auto;
    }

    .content-bonus p {
        color: #FAEDE1;
        font-size: 18px;
        line-height: 22px;
    }
}

/* -------------Fim Bonus----------------- */

/* --------------PREÇO--------------- */

#preco {
    background-image: url('../../images/home/lp-vb-novaoferta2024-fundoAnteseDepois.jpg');
    background-size: cover;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

#preco::before {
    content: "";
    background-image: url('../../images/home/lp-vb-novaoferta2024-grafismoSetaDireitaCinzaBolinhas.png');
    background-size: 100%;
    background-repeat: no-repeat;
    width: 275px;
    height: 171px;
    position: absolute;
    bottom: 0;
    right: 0;
}

#preco h2 {
    text-align: center;
    color: #FAEDE1;
}

#preco h2>span {
    color: #A2CE00;
}

#preco h3 {
    color: #A2CE00;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.card-preco {
    width: 100%;
    min-height: 66px;
    padding: 8px 16px;
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #242222;
    border-radius: 16px;
    z-index: 10;
}

.card-preco img {
    width: 104px;
    height: auto;
    margin-left: 16px;
}

#preco h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    line-height: 1.3;
}

.preco-valor {
    width: 70%;
    max-width: 300px;
    margin-bottom: 32px;
}

.preco-bandeiras {
    width: 90%;
    max-width: 320px;
    margin-top: 32px;
}

@media(min-width:992px) {
    .card-preco img {
        width: 134px;
    }

    .card-preco {
        padding: 8px 32px;
    }

    #preco h3 {
        font-size: 1.5rem;
    }

    #preco h4 {
        font-size: 1.3rem;
    }

}

/* --------------FIM PREÇO--------------- */

/* -------------- GARANTIA ------------ */

#garantia {
    background-image: url('../../images/home/lp-vb-novaoferta2024-fundoDepoimentos.jpg');
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 60px;
    position: relative;
}

#garantia::before {
    content: "";
    background-image: url('../../images/home/lp-vb-novaoferta2024-grafismoTrocaPagina.svg');
    background-size: cover;
    background-position-y: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
}

#garantia .texto-reforco {
    border-radius: 16px;
    border: #A2CE00 solid 2px;
    padding: 40px 24px;
}

#garantia .foto-garantia {
    width: 100%;
}

.linha-garantia {
    align-items: center;
    text-align: center;
}

#garantia h2 {
    color: #808080;
}

#garantia h2>span {
    color: #A2CE00;
}

#garantia p {
    color: #808080;
}

@media(min-width:992px) {
    .linha-garantia {
        text-align: left;
    }

    #garantia::before {
        height: 60px;
    }
}

/*  FIM GARANTIA  */

/* novaProf */

#novaProf {
    background-image: url('../../images/home/lp-vb-novaoferta2024-fundoDepoimentos.jpg');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
}

#novaProf::before {
    content: "";
    background-image: url('../../images/home/lp-vb-novaoferta2024-grafismoTrocaPagina.svg');
    background-size: cover;
    background-position-y: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
}

.linhaNovaProf {
    align-items: center;
}

#novaProf h2 {
    color: #808080;
}

#novaProf h2>span {
    color: #A2CE00;
}

#novaProf {
    color: #808080;
}


/* Fim novaProf */


/* fechamento */

#fechamento {
    background-image: url('../../images/home/fundo-Depoimentos-escuro.jpg');
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 150px;
}

#fechamento h2 {
    color: #A2CE00;
}

#fechamento h2>span {
    color: #A2CE00;
}

#fechamento p {
    color: #FFFFFF;
}

.card-fechamento {
    width: 100%;
    min-height: 66px;
    padding: 8px 16px;
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 16px;
    z-index: 10;

}

.card-fechamento img {
    width: 54px;
    height: auto;
}

.card-fechamento h4 {
    display: inline-block;
    width: 100%;
    padding-left: 32px;
    color: #A2CE00;
    font-weight: 800;
    font-size: 22px;
    text-align: left;
}

@media(min-width:992px) {

    .card-fechamento img {
        width: 54px;
    }

    .card-fechamento {
        padding: 8px 32px;
    }
}

/* fim fechamento */


/* faq */

#faq {
    background-image: url('../../images/home/fundo-Depoimentos-escuro.jpg');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 20px;
}

#faq h2 {
    color: #A2CE00;
}

#faq .card {
    margin-bottom: 16px;
    border: 0;
    box-shadow: 0px 10px 29px -16px rgba(0, 0, 0, 0.12);
    background-color: #139d5b;
}

.card-header {
    background-color: #07884A;
}

.card-body {
    color: #FFF;
}

#faq h5>button {
    width: 100%;
    font-weight: 600;
    color: #A2CE00;
    text-align: left;
}

#faq h5 > button {
    background-image: url('../../images/home/icon-seta-baixo.svg');
    background-size: 36px 28px;
    background-repeat: no-repeat;
    background-position: right center;
}

@media(min-width:992px) {
    #faq h5>button {
        font-size: 18px;
    }

    #faq h5>button {
        font-size: 20px;
    }
}

/* fim faq */

/* footer */

footer {
    border-top: #A2CE00 2px solid;
    background-color: #0e9556;
    padding-bottom: 80px;
}

.grupoLinks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
}

.grupoLinks h6 {
    font-size: 18px;
    color: #FFF;
}

.linkBlog {
    border-bottom: 1px solid #9e9e9e;
}

.linkBlog,
.linkRedesSociais {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.linkBlog img,
.linkRedesSociais img {
    width: 48px;
    height: 48px;
}

.grupoLinks a {
    padding: 8px;
}

.linha-rodape {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
}

.linha-rodape p {
    color: #FAEDE1;
    font-size: 14px;
    line-height: 18px;
}

.linha-rodape img {
    width: 280px;
}

.dadosFinais {
    background-color: #07884A;
}

@media(min-width:768px) {
    .linha-rodape {
        flex-direction: row;
    }

    .linha-rodape p {
        color: #FAEDE1;
        font-size: 16px;
        line-height: 20px;
    }

    .linha-rodape img {
        width: 300px;
    }

    .grupoLinks {
        flex-direction: row;
    }

    .linkRedesSociais,
    .linkBlog {
        border-bottom: none;
        width: 300px;
    }

}

/*  fim footer */


/* PREÇO */

#PosCover {
    background-image: url('../../images/home/lp-vb-novaoferta2024-fundoAnteseDepois.jpg');
    background-size: cover;
    position: relative;
    padding-top: 260px;
    padding-bottom: 80px;
}

#PosCover h2 {
    text-align: center;
    color: #FAEDE1;
}

#PosCover h2>span {
    color: #A2CE00;
}

#PosCover h3 {
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    font-weight: 400;
}

@media(min-width:992px) {

    #PosCover {
        padding-top: 200px;
        padding-bottom: 140px;
    }



    #PosCover h3 {
        font-size: 2rem;
    }


}

/* FIM PREÇO */


/* FRUSTRAÇÃO */

#frustracao {
    background-image: url('../../images/home/lp-vb-novaoferta2024-fundoDepoimentos.jpg');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 120px;
    position: relative;
}

#frustracao .fotoFrustrada {
    width: 85%;
    max-width: 480px;
}

#frustracao h2 {
    color: #A2CE00;
}

#frustracao h4 {
    color: #363636;
    padding-top: 1.2rem;
}

.sem-quebra {
    white-space: nowrap;
}

.linha-blocoTexto {
    position: absolute;
    bottom: -80px;
    z-index: 11;
    width: 100%;
}

.blocoLinha {
    background-color: #07884a;
    border-radius: 16px;
    padding: 16px 0;
}

.blocoLinha h2 {
    color: #FFFFFF !important;
    font-size: 24px;
    line-height: 28px;
}

.blocoLinha em {
    color: #A2CE00;
    font-style: normal;
}

.ctaOquevem a {
    padding: 18px 8px;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(0deg, rgba(246, 148, 0, 1) 0%, rgba(246, 148, 0, 1) 40%, rgba(239, 186, 0, 1) 100%);
    border-radius: 16px;
    font-weight: 800;
    display: inline-block;
}

.ctaOquevem a:hover {
    background: #FFFFFF;
    color: #f4bb02;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}


@media(min-width:992px) {

    #frustracao {
        padding-top: 20px;
        padding-bottom: 100px;
    }

    #frustracao .fotoFrustrada {
        width: 100%;
    }

    .itensFrustracao {
        text-align: left;
    }


    .blocoLinha h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .linha-blocoTexto {
        bottom: -80px;

    }

    .ctaOquevem a {
        padding: 18px 28px;
        font-size: 22px;

    }
}


/* FIM FRUSTRAÇÃO */

#oqueeh {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: #FFFFFF;
}

#oqueeh h2 {
    color: #A2CE00;
}

#oqueeh h3 {
    color: #363636;
}

.box-oqueeh {
    background: linear-gradient(0deg, #F4F4F4 0%, #F9F9F9 100%);
    border: 1px solid #f5f5f5;
    border-radius: 16px;
}

#oqueeh img {
    width: 160px;
    margin-bottom: 8px;
}

.box-oqueeh h5 {
    font-weight: bold;
    color: #07884A;
}

.box-oqueeh p {
    color: #363636;
    font-size: 16px;
    line-height: 20px;
}

@media (min-width:992px) {

    #oqueeh {
        padding-top: 160px;

    }

    #oqueeh img {
        width: 100%;
        margin-bottom: 16px;
    }

}

/*********************** 
Popup
***********************/

.image-popup {
    width: 100%;
}

.modal-header {
    position: relative;
}

.close {
    position: absolute;
    right: 16px;
}


/******************************
Animations
******************************/


/* BARRA FIXA RODAPE */

.barra-fixa {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #07884A;
    color: white;
    text-align: center;
    padding: 10px;
    opacity: 0;
    /* inicia invisível */
    pointer-events: none;
    /* evita interações quando invisível */
    transition: opacity 0.4s ease;
    /* transição suave */
    z-index: 9999;
}

.barra-fixa.ativo {
    opacity: 1;
    /* visível */
    pointer-events: auto;
    /* reativa interações */
}

.ctaBarra {
    padding: 8px 16px;
    border-radius: 16px;
    background: linear-gradient(0deg, rgba(246, 148, 0, 1) 0%, rgba(246, 148, 0, 1) 40%, rgba(239, 186, 0, 1) 100%);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.ctaBarra:hover {
    background-color: #f9b83f;
    color: #FFFFFF;
}

/* rodapé */

.endereco-rodape {
    background-color: #f0f0f0;
}

.logo-slogan img {
    padding-top: 12px;
    padding-bottom: 16px;
}

.endereco-rodape p {
    margin-top: 20px;
    /*padding-top: 12px;*/
    padding-bottom: 50px;
    font-size: 12px;
    line-height: 1.2;
}

.endereco-rodape p a {
    color: #212529;
    text-decoration: underline;
}