:root {
    --laranja: #E8772B;
    --laranjaClaro: #ebba99;
    --cor-fundo-claro: #f5f5f5;
    --verde-whats: #25CF43;
    --black-fundo: #2B2828;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
}




@keyframes namimationOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes revealTextAnimationRtoL {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



@keyframes revealTextAnimationLtoR {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(30%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}


li {
    list-style-type: none;
}

.navbar {
    background: #FFF;
}

.navbar .logoNavBar {
    height: 3.5rem;
    width: 7rem;
    margin-top: -0.5rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    padding-right: 4rem;
    padding-left: 3rem;
}


.navbar .container .menu {
    display: flex;
    column-gap: 3rem;
    list-style-type: none;
    z-index: 9999;
}

#menu {
    display: block;
}

#menu-button {
    display: none;
}

.divBtnMenu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.btnMenu {
    border: none;
    background-color: white;
    font-size: 1.9rem;
    color: #000 !important;
}

ul li a {
    color: #1E1E1E;
    font-family: Roboto;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition: color 0.3s, font-size 0.3s;
}

ul li a:hover {
    color: var(--laranja);
    font-size: 0.9rem;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.main {
    border-radius: 3.125rem 3.125rem 0rem 0rem;
    background: linear-gradient(180deg, #0C121B 25.52%, rgba(0, 0, 0, 0.89) 100%);

    height: 100vh;
    padding: 2rem;
    padding-top: 0;
    overflow: hidden;


}

.main .divTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prev-button {
    opacity: 0.5;
}

.main .mainTitle {
    color: #FFF;
    text-align: center;
    font-family: 'Jockey One', sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: font-size 0.3s;
    animation: revealTextAnimationRtoL 0.8s ease-in-out both;
}

.main .mainTitle:hover {
    color: var(--laranja);
    font-size: 4.2rem;
}

.main .mainCRM {
    color: #FFF;
    text-align: center;
    font-family: 'Jockey One', sans-serif;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: font-size 0.3s;
    z-index: 999;
    margin-top: -1rem;
    animation: revealTextAnimationLtoR 0.8s ease-in-out both;
}

.mainCRM:hover {
    font-size: 2.5rem;
}

.main .divTitleSecondaryFirts {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.main .divTitleSecondary {
    display: flex;
    justify-content: center;
}

.main .mainTitleSecondary {
    color: #FFF;
    font-family: Roboto;
    font-size: 1.6875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.main .mainTitleSecondaryOrange {
    color: var(--laranja);
    font-family: Roboto;
    font-size: 1.6875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}


.main .divBannersSVG {
    display: flex;
    justify-content: space-between;

    /*position: absolute;*/
    width: 100%;


}

.mainBannerFabio {

    /*margin-top: -42rem;*/
    margin-top: -2rem;
    animation: revealTextAnimationLtoR 0.8s ease-in-out both;
    height: 19rem;
}

.mainBannerCorpoFabio {

    animation: revealTextAnimationRtoL 0.8s ease-in-out both;
    margin-top: -7rem;
    height: 99vh;
    z-index: 1;

}

.divRedesSociais {

    margin-top: 1rem;

}



.redeSocial {
    color: white;
    font-family: Roboto;
    z-index: 999;
}

/* Para todos os elementos <p> com a classe "redeSocial" */
p.redeSocial {
    color: white !important;
    /* Define a cor do texto como branco e usa !important para garantir prioridade */
    text-decoration: none !important;
    /* Opcional: remover sublinhado */
    -webkit-text-decoration: none !important;
    /* Opcional: remover sublinhado para WebKit */
}

/* Para links de telefone dentro de elementos <p> com a classe "redeSocial" */
p.redeSocial a[href^="tel"] {
    color: inherit !important;
    /* Herda a cor do texto do elemento pai */
    text-decoration: none !important;
    /* Opcional: remover sublinhado */
    -webkit-text-decoration: none !important;
    /* Opcional: remover sublinhado para WebKit */
}

.divRedeSocial {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.svgRede {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.5rem;
}

.divCenterPage {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
}

.btnAgendeSuaConsulta {
    display: flex;
    flex-direction: row;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    background-color: var(--laranja);
    width: 70%;
    border-radius: 2.8125rem;
    margin-top: 5rem;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    z-index: 10000;
}

.btnAgendeSuaConsulta:hover {
    transform: scale(1.1);
    background-color: #f06305;
    /* Aumenta o tamanho em 10% (ou o valor desejado) */
}


.svgWhatsApp {
    width: 3.5rem;
    height: 3.5rem;
}

.textBtnAgende {
    font-family: Roboto;
    color: var(--cor-fundo-claro);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.sectionImagensFabioLeite {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    max-height: 32rem;
    overflow: hidden;
    margin-top: -2.2rem;
    min-width: 100vw;
    max-width: 100vw;

}

.divFotoPrioridade {
    width: 90%;
}

.divFotoPrioridade .FotoPrioridade {

    height: 32rem;
    width: 100%;
}

.divFotoAndTitleDieta {
    display: flex;
    background-color: #292E35;
    height: 32rem;
    padding-right: 1rem;
    padding-left: 1rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.textDietaMudanca {
    color: #FFF;
    text-align: center;
    font-family: Jockey One;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.imgFabioSentado {

    width: 20.125rem;
    height: 30rem;
    flex-shrink: 0;
    border-radius: 1.5625rem;
}

.sectionCirculos {
    margin-top: 4rem;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: row;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.divCirculo {
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 32%;
    min-width: 32%;
    padding: 0.5rem;

}

.svgCirculo {
    width: 10.35744rem;
    height: 10.35744rem;
    flex-shrink: 0;
}

.titleCirculo {
    margin-top: 1rem;
    color: #585858;
    text-align: center;
    font-family: Roboto;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.textCirculo {
    margin-top: 1rem;
    color: #585858;
    text-align: center;
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.sectionResultados {
    margin-top: 2rem;
    background: rgba(12, 18, 26, 0.03);
    padding-left: 2.5rem;
    padding-bottom: 2rem;
}

.titleResultadosComprovados {
    color: #3794C8;
    text-align: center;
    font-family: Jockey One;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.titleAntesDepois {
    color: #E8772B;
    font-family: Jockey One;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 2rem;
}

.textResultPacientes {
    color: rgba(0, 0, 0, 0.74);
    font-family: Jockey One;
    font-size: 1.4375rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
}



.carousel-container {
    width: 100%;


    /* Largura do carrossel */
    /*overflow: hidden;*/
    position: relative;
    margin-top: 1.5rem;
}

.carousel-wrapper {
    width: 100%;
    /* Largura total do conteúdo do carrossel */
    white-space: nowrap;
    display: flex;
    transition: transform 0.3s ease;
    /* Para suavizar a animação de rolagem */

    overflow-x: scroll;


}

.carousel img {
    width: 20rem;
    /* Largura de cada imagem */
    height: 20rem;
    /* Altura de cada imagem */
    margin-right: 10px;
    /* Espaçamento entre as imagens */

    transition: transform 0.3s ease;
}

.carousel img:hover {
    transform: scale(1.08);
}

.btnImagens {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btnImagens button {
    background-color: var(--laranja);
    border: none;
    padding: 0.5rem;
    width: 5rem;
    color: white;
    cursor: pointer;
    border-radius: 5rem;
    transition: transform 300ms;
}

.btnImagens button:hover {
    background-color: var(--black-fundo);
    border-radius: 0.6rem;
    text-decoration-line: underline;
}

.divSobreMim {
    background-color: var(--laranja);
    padding: 1rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;

}

.titleSobreMim {
    color: #FFF;
    text-align: center;
    font-family: Jockey One;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.divFotoCelularText {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.FotoFabioCelular {
    height: 35rem;
    width: 30rem;
    border-radius: 2.9rem;
}

.textoSobre {
    color: #FFF;
    font-family: Roboto;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 4rem;
}

.divConsultorias {
    background: #FFF;
    margin-top: 4rem;
}

.titleConsultorias {
    color: #3794C8;
    text-align: center;
    font-family: Jockey One;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}



.containerBoxesConsultorias {
    display: flex;
    flex-direction: row;
    margin-top: 2.5rem;
    gap: 1rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.boxConsultoria {
    border-radius: 0.3125rem;
    border: 2px solid #000;
    background: #FFF;
    padding-top: 1.5rem;
    width: 100%;
    overflow: hidden;
    transition: transform 300ms;
}

.boxConsultoria:hover {
    border-radius: 0;
    border: 2px solid #3794C8;
    transform: scale(1.02);
}

.titleBoxConsulta {
    color: var(--laranja);
    text-align: center;
    font-family: Jost;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
}

.subTitleConsulta {
    color: #000;
    text-align: center;
    font-family: Jost;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    margin-bottom: 1.2rem;
}

.divBtnConsultas {
    background-color: var(--black-fundo);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-left: 5rem;
    padding-right: 5rem;
}

.btnConsultoria {
    display: flex;
    flex-direction: row;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    background-color: var(--verde-whats);
    width: 100%;
    border-radius: 2.8125rem;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.btnConsultoria:hover {
    transform: scale(1.08);
    background-color: #f06305;
    /* Aumenta o tamanho em 10% (ou o valor desejado) */
}

.divContainerDepoimentos {
    margin-top: 10rem;
}

.titleDepoimentos {
    color: #3794C8;
    text-align: center;
    font-family: Jockey One;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    margin-bottom: 3rem;
}

.divComentario {
    display: flex;
    flex-direction: row;
    max-width: 100vw;
    overflow: hidden;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    gap: 1rem;
    margin-bottom: 1rem;

}

.imgComent {
    max-width: 50%;
    border-radius: 2rem;
}

.sectionContato {
    margin-top: 7rem;
}

.textInfoContato {
    color: #585858;
    text-align: center;
    font-family: Roboto;
    font-size: 1.333rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;

}

.divContato {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

/* PARTE FORM */
.form-container {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    min-width: 60%;
    font-size: 1.5rem;

}

.form-group {
    margin-bottom: 15px;

}

label {
    display: block;
    font-weight: bold;
    color: #585858;
    font-family: Roboto;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

input[type="text"],
input[type="email"],
textarea {
    width: 95%;
    padding: 8px;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.26);
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-top: 0.3rem;
    font-size: 1.3rem;
}

.btnEnviarEmail {
    background-color: #3771C8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 2rem;
    cursor: pointer;

    text-align: center;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.btnEnviarEmail:hover {
    background-color: #0056b3;
}

footer {
    background-color: var(--black-fundo);
    padding: 3rem;
    padding-bottom: 1rem;
}

.containerFooter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.titleEndereco {
    color: #FFF;
    font-family: Roboto;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.imgHome {
    width: 3.125rem;
    height: 3.125rem;
    flex-shrink: 0;
}

.divHomeEndereco {
    display: flex;
    flex-direction: row;
    margin-top: 2rem;
    align-items: center;
    gap: 1rem;
}

.textEndereco {
    color: #FFF;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.textCopy {
    color: white;
    font-family: Roboto;
    font-size: 0.7rem;
    text-align: center;

}

.textDev {
    color: white;
    font-family: Roboto;
    font-size: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

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

@media only screen and (max-width: 1300px) {
    .mainBannerCorpoFabio {
        margin-right: -6rem;
    }
}

@media only screen and (max-width: 1210px) {
    .main .mainTitleSecondary {
        font-size: 1.3rem;
    }

    .main .mainTitleSecondaryOrange {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 1065px) {
    .main .mainTitleSecondary {
        font-size: 1rem;
    }

    .main .mainTitleSecondaryOrange {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 970px) {
    .mainBannerFabio {
        height: 10rem;
    }
}

@media only screen and (max-width: 900px) {
    .textBtnAgende {
        font-size: 0.8rem;
    }

    .main .mainTitle {
        font-size: 2rem;
    }

    .containerRede {
        margin-top: 20rem;
    }

    .divCenterPage {
        margin-left: -14rem;
    }

    .mainBannerCorpoFabio {
        margin-right: -3rem;
    }
}

@media only screen and (max-width: 1024px) {

    .titleSobreMim {
        font-size: 2.5rem;
    }

    .divFotoCelularText {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .FotoFabioCelular {
        height: 28rem;
        width: 20rem;
        margin-bottom: 1rem;
    }

    .textoSobre {
        font-size: 1.6rem;
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 900px) {
    .containerBoxesConsultorias {
        flex-direction: column;
    }

    .sectionImagensFabioLeite {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;

        max-height: 100%;
        overflow: hidden;
        margin-top: 0;
        min-width: 100%;
        max-width: 100%;

    }

    .divFotoPrioridade {
        width: 100%;
    }

    .divFotoAndTitleDieta {
        gap: 1rem;
        width: 100%;
        margin-top: -0.3rem;
    }

    .textDietaMudanca {
        font-size: 2rem;
        max-width: 50%;
    }


}

@media only screen and (max-width: 768px) {
    .main .mainTitle {
        font-size: 1.5rem;
    }

    #menu {
        display: none;


    }

    .menu {
        position: absolute;
        background-color: white;
        left: 0;
        flex-direction: column;
        width: 91.7vw;
        margin-top: 2rem;
        padding: 1rem;
        justify-content: center;
        align-items: center;
        gap: 1.3rem;

    }

    #menu-button {
        display: block;
    }

    .carousel {
        max-width: 85vw;
        overflow-x: scroll;
    }

    .btnImagens {
        display: none;
    }

    .form-group {}
}

@media only screen and (max-width: 685px) {
    .main .mainTitleSecondary {
        font-size: 0.8rem;
    }

    .main .mainTitleSecondaryOrange {
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 480px) {
    .mainBannerCorpoFabio {
        /*display: none;*/
        margin-left: -17rem;
        height: 48vh;
        margin-top: 7rem;
        margin-right: -6rem;
    }

    .divCenterPage {

        width: 100%;
        margin-left: -20rem;

    }

    .btnAgendeSuaConsulta {
        width: 100%;
        margin-top: 25rem;
    }

    .main .mainTitleSecondary {
        font-size: 0.9rem;
    }

    .main .mainTitleSecondaryOrange {
        font-size: 0.9rem;
    }

    .containerRede {
        margin-top: 10rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: -1.5rem;

    }

    .main .mainCRM {
        font-size: 1.3rem;
        margin-top: 0.3rem;
    }

    .sectionImagensFabioLeite {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;

        max-height: 100%;
        overflow: hidden;
        margin-top: -2.2rem;
        min-width: 100%;
        max-width: 100%;

    }

    .divFotoPrioridade {
        width: 100%;
    }

    .divFotoPrioridade .FotoPrioridade {
        height: 20rem;
    }

    .divFotoAndTitleDieta {

        height: 20rem;
        padding: 0;

        gap: 1rem;
        width: 100%;
        margin-top: -0.3rem;
    }

    .imgFabioSentado {

        width: 50%;
        height: 18rem;
        margin-left: -1rem;

    }

    .textDietaMudanca {

        font-size: 1.5rem;
        max-width: 40%;

    }

    .sectionCirculos {
        flex-direction: column;
    }

    .divCirculo {
        display: flex;
        flex-direction: column;
        align-items: center;

        max-width: 100%;
        min-width: 100%;
        padding: 0.5rem;
        margin-bottom: 5rem;
    }

    .svgCirculo {
        width: 7rem;
        height: 7rem;
        flex-shrink: 0;
    }

    .titleResultadosComprovados {
        font-size: 2.5rem;
        margin-left: -2rem;
    }

    .titleAntesDepois {
        font-size: 2rem;
        margin-top: 2rem;
    }

    .carousel img {
        width: 13rem;
        /* Largura de cada imagem */
        height: 13rem;
        /* Altura de cada imagem */
        margin-right: 10px;
        /* Espaçamento entre as imagens */
    }



    .titleConsultorias {
        font-size: 2.5rem;
    }



    .titleBoxConsulta {
        font-size: 1.6rem;
    }

    .subTitleConsulta {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .divBtnConsultas {
        padding: 1.5rem;
    }

    .titleDepoimentos {

        font-size: 2.5rem;

    }

    .divComentario {
        flex-direction: column;
        padding-left: 1rem;
    }

    .imgComent {
        max-width: 100%;
        height: 8rem;
    }

    .textInfoContato {

        font-size: 0.8rem;
        margin: 1.5rem;
        margin-top: 0;
    }


    .form-container {
        width: 80%;
        font-size: 1.2rem;
    }

    .btnEnviarEmail {
        font-size: 1.5rem;
        width: 100%;
    }

    .containerFooter {
        flex-direction: column;
        gap: 5rem;
    }

    .textCopy {
        margin-top: 2.5rem;

    }

    .textDev {
        font-size: 0.3rem;
    }

}

@media only screen and (max-width: 414px) {
    .imgFabioSentado {

        width: 50%;
        height: 18rem;
        margin-left: 1rem;

    }

    .titleResultadosComprovados {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 380px) {
    .FotoFabioCelular {
        height: 20rem;
        width: 15rem;
        margin-bottom: 1rem;
        max-width: 70vw;
    }

    .main .mainTitleSecondary {
        font-size: 0.7rem;
    }

    .main .mainTitleSecondaryOrange {
        font-size: 0.7rem;
    }

    .imgFabioSentado {

        width: 50%;
        height: 18rem;
        margin-left: 0;

    }


}