*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{ 
    scroll-behavior: smooth;
}

body{
    background-color: white;
}

p{

    font-family: "Open Sans", sans-serif;
    font-size: 18px;
}

h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
}


h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 500;
}


.bg_header_hero{
    background-color: #FDFDFE;
}



.footer_bg{
    background-color: #FDFDFE;
}

h4{
   font-family: 'Montserrat', sans-serif;
   font-size: 20px;
   font-weight: 600;
}
/*Container Principal */

.container{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* header */

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1.5px solid #AD9A78;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 10;
}


/* Logo */ 

.logo{
    color: rgb(5, 5, 5);
    font-size: 22px;
    font-weight: bold;
    padding-top: 20px; 
    animation: slidesquerda 1.8s ease-in-out;
}


/* Menu */

.menu-desktop{
    display: flex;
    gap: 50px;
}

.menu-desktop a{
    color: black;
    text-decoration: none;
    font-size: 18px;
}


nav{
    display:  flex;
    gap: 50px;
    font-size: 18px;
    margin-left: 80px;
    animation: slidecima 1.9s ease forwards
}


@keyframes slidecima{
    from{
        opacity: 0;
        transform: translateY(-80px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}


nav a{
    color: black;
    text-decoration: none;
    font-size: 18px;
    padding-top: 20px; 
    transition: 0.3 ease;
}


.botao_nav{
    margin: 20px 0 0 0;
    padding: 10px 15px;
    border: solid 1.2px black;
    border-radius: 20px;
    color:black;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease ;
    cursor: pointer;
    animation: slidedireita 1.2s ease forwards;
    
}

.botao_nav a{
    text-decoration: none;
    color: black;
}

.botao_nav:hover{ 
   transform:  translateX(90) scale(1.1);
   background-color: #AD9A78;
   color: white;
}


.botao_nav a:hover{
    color: rgb(255, 255, 255);
}



/* MENU MOBILE */ 

#menu-toggle{
    display: none;
}

/* ÍCONE */

.menu-icon{
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
}

.menu-icon span{
    width: 30px;
    height: 3px;
    background-color: black;
    border-radius: 10px;
    transition: 0.3s ease;
}

.menu-mobile{
    display: none;
}

/*** HERO ***/


/*section hero */

.hero{
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-top: 45px;
    padding-bottom: 5px;
}

.hero h5{
    margin-top: 20px;
    font-size: 14px;
}

/*HERO CONTAINER*/

.hero_container{
    width: 50%;
    animation: slidesquerda 1.8s ease-in-out;
}

@keyframes slidesquerda {
  from {
        opacity: 0;
        transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.hero_container h1{
    font-size: 60px;
    color: black;

    margin-bottom: 5px;

    line-height: 1.1;
}


.hero_container h2{
    font-size: 28px;
    margin-bottom: 5px;

    
}


/*parágrafo*/

.hero_container p{
    font-size: 16px;
    color:black;
    line-height: 1.5;

    margin-bottom: 35px;
    font-weight: 600;
    max-width: 650px;

    text-align: justify;

}


/* Botão */

.bt_hero{
    padding: 14px 28px;
    border: solid 1.2px #AD9A78;
    border-radius: 30px;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    transition:  0.3s ease;
    font-weight: 600;
    margin-top: 20px;

}

.bt_hero a{
    text-decoration: none;
    color:#000000
}

.bt_hero a:hover{
    text-decoration: none;
    color:#ffffff;
}



.bt_hero:hover{
    transform: translateY(-5px);
    background-color: #AD9A78;
    color: white;
}

/*imagem*/

.foto_hero{
    width: 50%;
    margin: -150px auto auto 60px;
    justify-content: center;
    animation: slidedireita 1.2s ease forwards;

}


@keyframes slidedireita {

    from{
        opacity: 0;
        transform: translateX(80px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }
}


.foto_hero img{
    width: 100%;

    max-width: 500px;

    border-radius: 90px;

    object-fit: cover;

}


/* Especialidade*/


.minha_especialidade{
    padding-top: 60px;
}

.texto_cada{
    text-align: center;
}



.minha_especialidade #texto_cada{
    text-align: center;
}

.texto_especialidade{
    justify-content: center;
    text-align: center;
      animation: fadein 2.8s ease forwards;
}

@keyframes fadein {

	from{
		opacity: 0;	}

	to {
		opacity: 1;}

}

.texto_especialidade h2{
    font-size: 43px;
}

.texto_especialidade h3{
    font-size: 25px;
    margin: 20px;
}

.texto_especialidade p{
    max-width: 920px;
    margin: 0px auto
}

.linha_especialidade{
    width: 450px;
    height: 2px;
    background-color:#AD9A78;
    margin: 20px auto;
    border-radius: 10px;
}

/* CAIXAS ESPECIALIDADES */

.caixas{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 60px;
    margin-top: 20px;
}


/*card */

.especialidade_card{
    background-color: white;

    border: 1px solid black;

    border-radius: 24px;

    padding: 35px 25px;

    transition: 0.5s ease;

    height: 190px;

    box-shadow: 0px 4px 15px rgba(0,0,0,0.25);
}

.especialidade_card:hover{

        transform: translateY(-8px);

        border-color: #AD9A78;

        box-shadow: 0px 15px 20px rgba(0,0,0,0.3);
}


/* título especialidade H4 */

.especialidade_card h4{
    font-size: 20px;
    line-height: 1;
}

.especialidade_card p{
    font-size: 16px;
    line-height: 1.5;
    padding-top: 10px;
}


/* botão especialidade */


.botao_especial{
    display: flex;
    justify-content: center;
    margin: 30px;
}

.agenda_consulta_2{
   font-size: 18px;
    padding: 15px 28px;
    border: solid 1.2px #AD9A78;
    border-radius: 30px;
    background-color: white;
    cursor: pointer;
    transition:  0.3s ease;
    font-weight: 600;
}

.agenda_consulta_2 a{
    text-decoration: none;
    color: black;
}


.agenda_consulta_2 a:hover{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.agenda_consulta_2:hover{
    transform: translateY(-15px);
    background-color: #AD9A78;
    border: solid 1.2px rgb(0, 0, 0);
    color: white;
}


/*---- SOBRE MIM ----*/


.sobre_mim_texto{
    justify-content: center;
    align-items: center;
    margin: auto auto 50px;
    text-align: center;
    animation: fadein 2.8s ease forwards;
}


.sobre_mim_jornada{
    display: flex;  
}


.barra_sobremim{
    width: 150px;
    margin: auto;
    height: 2px;
    background-color: #AD9A78;
}


.sobre_mim_foto{
    padding: 10px;
    border: solid 1.2px;
    border-color: black;
    border-radius: 65px;
    animation: slidesquerda 1.8s ease-in-out;
}

.foto_dra_jornada{
    border: solid 1.2px #AD9A78;
    border-radius: 65px;
}


.avanco{
    width: 800px;
    
    margin-left: 150px;
}

.avanco p{
      animation: slidedireita 1.2s ease forwards;
}


.formacao{
    
    border-left: solid 1.2px #AD9A78;
    padding-left: 10px;
    margin-top: 40px;
    
}

.formacao h4{
    animation: fadein 2.8s ease forwards;
}

.ipub{
    border-left: solid 1.2px #AD9A78;
    padding-left: 10px;
    margin-top: 80px;
}


.residencia{
    border-left: solid 1.2px #AD9A78;
    padding-left: 10px;
    margin-top: 80px;
}



/*Saúde Mental*/

.saude_mental{
    display: flex;
    margin-top: 95px;
}



.texto_saude{
    width: 650px;
    animation: slidesquerda 1.8s ease-in-out;
}

.texto_saude h2{
    margin-bottom: 10px;
}

.texto_saude p{
    margin-bottom: 30px;
}

.boxes_saude{
    margin: auto;
}


.bt_saude {

    width: 250px;
    height: 50px;
    border: solid 1.2px #AD9A78;
    border-radius: 30px;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    transition:  0.3s ease;
    font-weight: 600;
    margin-top: 40px;

}

.bt_saude:hover{
    background-color: #AD9A78;
    color: white;
    transform: translateY(-20px);
    border: solid 1.2px black;
}
.barra_saude{
     width: 275px;
    height: 2px;
    background-color: #AD9A78;
    margin-bottom: 30px;
}

.box_saude1{
    width: 550px;
    border: solid 1.5px black;
    border-radius: 25px;
    padding: 15px;
    margin-bottom: 50px;
    background: linear-gradient(0.75turn, #AD9A78, #ffffff, #ffffff);
    text-align: center;
    transition: 0.45s ease;
    animation: slidedireita 1.2s ease forwards;
    
}

.box_saude1:hover{
   background: linear-gradient(0.75turn, #AD9A78, #AD9A78, #AD9A78);
    color:white;
    transform: scale3d(90px);
    transform: translateY(-10px);
    border: solid white 1.2px;
    transform: scale(1.06);

}


.box_saude2{
    width: 550px;
    border: solid 1.5px black;
    border-radius: 25px;
    padding: 15px;
    margin: 10px 0 0 100px;
    background: linear-gradient(0.75turn, #AD9A78, #ffffff, #ffffff);
     text-align: center;
     transition: 0.45s ease;
     animation: fadein 2.8s ease forwards;
     
}

.box_saude2:hover{
      background: linear-gradient(0.75turn, #AD9A78, #AD9A78, #AD9A78);
        color:white;
        transform: scale3d(90px);
        transform: translateY(-10px);
        border: solid white 1.2px;
        transform: scale(1.06);
     
}


.box_saude3{
    width: 520px;
    border: solid 1.5px black;
    border-radius: 25px;
    padding: 15px;
    margin-top: 50px;
    background: linear-gradient(0.18turn, #AD9A78, #ffffff, #ffffff);
    text-align: center;
    transition: 0.45s ease;
    animation: slidedireita 1.2s ease forwards;
}


.box_saude3:hover{
   background: linear-gradient(0.75turn, #AD9A78, #AD9A78, #AD9A78);
    color:white;
    transform: scale3d(90px);
    transform: translateY(-10px);
    border: solid white 1.2px;
    transform: scale(1.06);
}

/* --- Agenda sua consulta --- */


.Consulta{
    margin-top: 65px;
    margin-bottom: 65px;
}
.texto_consulta_tit{
    margin: auto auto 45px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.texto_consulta_tit h2{
    margin-bottom: 10px;
}

.espaco_agendamento{
    display: flex;
}

.agenda_doc{
    padding: 14px 28px;
    border: solid 1.2px #AD9A78;
    border-radius: 30px;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    transition:  0.3s ease;
    font-weight: 600;
    margin-top: 20px;
}

.consulta_direto{
    max-width: 700px;
    margin-right: 90px;
}

.barra_4{
    width: 420px;
    margin: auto auto 20px auto;
    height: 2px;
    background-color: #AD9A78;
}
.consulta_direto p{
    margin-bottom: 25px;
    font-weight: 500;
}

.consulta_doctoralia{
    width: 450px;

    min-width: 450px;

    max-width: 450px;
}


#zl-url,
.zlw-big,
.zlw-widget{

    width: 100% !important;

    max-width: 100% !important;
}



.agenda_consulta_3{
    width: 250px;
    border: solid 1.5px #AD9A78;
    border-radius: 25px;
    padding: 15px;
   background-color: white;
   transition: 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}


.agenda_consulta_3:hover{
    transform: translateY(-10px);
    background-color: #AD9A78;
    color: white;
    border: solid 1.2px black;
}



.barra_5{
    width: 270px;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 45px;
    background-color: #AD9A78;
}


.vector{
    margin-left: 450px;
    transition: 0.5s ease;
}

.vector:hover{
    transform: translateX(-10px);
}


/* --- Depoimentos ---- */

.depoimentos_pacientes{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
}

.paciente{
    border: solid 1.2px #AD9A78;
    padding: 15px;
    border-radius: 35px;
    transition: 0.3s ease;
    width: 350px;
    height: 150px;
    
}

.paciente:hover{
    transform: translateY(-10px);
}


.paciente h3{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}


.paciente p{
    font-size: 18px;
}




/* --- Footer --- */

.footer{
    margin-top: 135px;
    padding-bottom: 20px;
}


.footer_info{
    padding-top: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}


.logo_e_info{
    width: 390px;
}


.logo_e_info h4{
    font-size: 18px;
    margin-top: 15px;
}

.home{
margin-left: 190px;
}

.home h3{
    font-size: 22px;
    font-weight: 600;
}

.home h4{
    font-size: 18px;
    margin-top: 15px;
    font-weight: 600;
}


.barra_6{
    width: 60px;
    height: 10px;
    border-radius: 1000px;
    margin-top: 60px;
    margin-bottom: 35px;
    background-color: #000000;
}


.contato h3{
    font-size: 22px;
    font-weight: 600;

}

.contato p{
    font-size: 18px;
    margin-top: 15px;
    font-weight: 600;
}

.footer_final{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.termos_uso{
    margin-bottom: 20px;
}
.termos a{
    color: black;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.barra_7 {
 border: solid 1.5px #AD9A78;

 margin-top: 25px;

 margin-bottom: 25px;
}

.footer_final h3{
    font-size: 18px;
    
}



/* --- WhatsApp --- */

.bt_what{
    position: fixed;
    width: 65px;
    height: 60px;
    right: 20px;
    bottom: 15px;
    padding: 10px 10px 20px 10px;
    background-color: #25d366;
    color: white;

    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 50px;

    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);

    z-index: 9999;

    transition: 0.3s ease;
}


.bt_what:hover{
    transform: scale(1.1);
    background-color: #20ba5a;
}



.bt_what i{
    margin-top: 16px;
}


@keyframes float{

    0%{
        transform: translateY(0px);
    }

    50%{transform: translateY(-30px);
    }


    100%{
        transform: translateY(0px);
    }
}



/*--- RESPONSÍVEL PARA TELAS ATÉ 768PX ---*/

@media screen and (max-width: 768px) {

/* h2, h3, p */

p{

    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 500;
}


h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
}



/* Header */ 

header{

    flex-direction: column;
    gap: 20px;
    text-align: center;
}


nav{
    flex-direction: column;
    gap: 20px;
    margin-left: 0;
}


.botao_nav{
    margin-top: 0;
}


header > a .botao_nav{
    display: none;
}


.logo_menu_mobile{
    width: 200px;
}


/* hero */

.hero{

    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding-top: 35px;
}



.hero_container {
    width: 100%;
}


.hero_container h1{
    font-size: 42px;
}



.hero_container h2{
    font-size: 26px;
}


.hero_container p{
    text-align: center;
    max-width: 100%;
}


.foto_hero{

    width: 100%;

    margin: -80px auto;
}

.foto_hero img{
    max-width: 100%;
}



/* especialdiade */

.minha_especialidade{
    padding-top: 90px;
}

.linha_especialidade{
    width: 200px;
}

.caixas{

        display: flex;

        overflow-x: auto;

        gap: 20px;

        padding: 20px 10px;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    /* REMOVE SCROLLBAR */

    .caixas::-webkit-scrollbar{
        display: none;
    }

    /* CARDS */

    .especialidade_card{

        min-width: 280px;

        max-width: 280px;

        flex: 0 0 auto;

        scroll-snap-align: center;

        height: auto;

        padding: 30px 20px;
    }


/* Sober Mim */

.sobre_mim_jornada {

    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.sobre_mim_foto{
    width: 100%;
    max-width: 350px;
}

.foto_dra_jornada {
    width: 100%;
}


.avanco{

    width: 100%;
    margin-left: auto;
}

.formacao,
.ipub,
.residencia {
    margin-top: 40px;
}


/* Saúde Mental */

.saude_mental {
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}


.texto_saude{
    width: 100%;
    text-align: center;
}


.barra_saude{
    margin: 10px auto;
    width: 200px;
}

.boxes_saude {
    width: 100%;
}


.box_saude1,
.box_saude2,
.box_saude3{
    width: 100%;
    margin:  0 0 25px 0;
}


/* Agende Sua Consulta */


.Consulta{
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: auto;
    text-align: center;

}

.consulta_direto {
flex-direction: column;
    width: 100%;
     align-items: center;
     margin: auto;

}

.espaco_agendamento{
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: auto;
    text-align: center;

}

.barra_4 {
    width: 250px;
    
}

.zl-url{
    width: 100%;
    align-items: center;
    margin: auto;
}


.consulta_doctoralia{

    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: auto;
    text-align: center;
}

.vector{
        display: none;
    }

 .bt_what{
        width: 40px;
        height: 40px;

        right: 10px;
        bottom: 20px;

        font-size: 30px;
    }


/* Depoimentos */


.depoimentos{
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 10px auto;
    text-align: center;

}

.barra_5{
    margin: 10px auto;
}


.depoimentos_pacientes{
   
     display: flex;

    overflow-x: auto;

    gap: 20px;

    padding: 20px 10px;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

}


.paciente{

    min-width: 200px;

    max-width: 220px;
        
    height: 200px;

    flex: 0 0 auto;

    scroll-snap-align: center;

    padding: 30px 20px;

}


.paciente p{
    font-size: 16px;
}



/* Footer */ 

.footer{
    margin-top: 20px;
}


.footer_info{
    
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.footer_info h3{
    font-size: 16px;
}


.footer_info h4{
    font-size: 16px;
}


.footer_info p{
    font-size: 14px;
}


.logo_e_info{
    width: 100%;
}




.home{
        margin-left: 0;
}

.footer_final{
        flex-direction: column;
        align-items: center;
        text-align: center;
}

.footer_final h3{
    font-size: 16px;
}

.termos a{
    font-size: 14px;
}

.direitos{
    margin-top: 2px;
    margin-bottom: 15px;
}

.barra_6{
    justify-content: center;
    margin: 20px auto;
    height: 2.5px;
    width: 250px;
}


/* MENU */

.menu-desktop,
    .desktop-btn{
        display: none;
    }

    /* HEADER */

    header{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* MOSTRA ÍCONE */

    .menu-icon{
        display: flex;
        
    }

    

    /* MENU MOBILE */

    .menu-mobile{
        position: fixed;

        top: 0;
        right: -100%;

        width: 75%;
        height: 100vh;

        background-color: white;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 35px;

        transition: 0.4s ease;

        box-shadow: -5px 0 15px rgba(0,0,0,0.15);

        z-index: 10000;
    }

    /* ABRIR MENU */

    #menu-toggle:checked ~ .menu-mobile{
        right: 0;
    }

    /* LINKS */

    .menu-mobile a{
        color: black;
        text-decoration: none;
        font-size: 22px;
        font-weight: 600;
    }

    /* ANIMAÇÃO X */

    #menu-toggle:checked + .menu-icon span:nth-child(1){
        transform: rotate(45deg) translate(6px, 6px);
        right: 20px;
        position: fixed;
    }

    #menu-toggle:checked + .menu-icon span:nth-child(2){
        opacity: 0;
        position: fixed;
        right: 20px;
    }

    #menu-toggle:checked + .menu-icon span:nth-child(3){
        transform: rotate(-45deg) translate(5px, -5px);
        position: fixed;
        right: 20px;
        margin-top: 10px;
    }


    .consulta_doctoralia{

        width: 100%;

        min-width: 100%;

        max-width: 100%;
    }



    .agenda_consulta_3{
        margin-bottom: 25px;
    }
}