/* configurações Gerais */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway";
}

.container{
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.btn-agendamento, .btn-ver-servicos{
    text-align: center;
}

.box-complemento-footer{
    text-align: center;
}

.box-complemento-footer h2{
    font-family: 'Playfair Display';
    font-size: 30px;
    margin-bottom: 20px;
    padding-top: 50px;
}

.box-complemento-footer p{
    font-size: 18px;
    color: #F5EFE6E6;
    margin-bottom: 20px;
}

.box-complemento-footer .buttons{
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}


/* header*/

header{
    padding: 16px 2%;
    background-color: #B3927E;
    position: fixed;
    width: 100%;
    top: 0;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

header.scrolled{
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .container{
    display: flex;
    justify-content: space-between;
}

header .logo{
    display: flex;
    align-items: center;
    text-decoration: none;
}

header .logo img{
    width:60px;
}

header .logo h1{
    font-family: "Plafair Display";
    font-size: 24px;
    color: #94674A;
    font-weight: 600;
}

header .menu-mobile{
    display: none;
}

header nav{
    display: flex;
    align-items: center;
}

header nav ul{
    list-style-type: none;
    display: flex;
    align-items: center;
}

header nav ul li{
    font-size: 14px;
    padding: 0 14px;
}

header nav ul li a{
    color: black;
    text-decoration: none;
    transition: 0.4s;
}

header nav ul li a:hover{
    color: #94674A;
}

header nav ul li .pagina-atual{
    color: #94674A;
    border-bottom: 2px solid #94674A;
}

header nav .socials i{
    padding: 0 6px;
    color: #94674A;
    font-size: 20px;
    cursor: pointer;
    transition: 0.4s;
}

header nav .socials i:hover{
    transform: scale(1.2);
}

/* servicos-chamada */
.servicos-chamada{
    padding: 150px 2% 100px 2%;
    text-align: center;
    background-color: #F8F4EE;
}

.servicos-chamada h2{
    font-size: 48px;
    color: #94674A;
    font-family: "Playfair Display";
    margin-bottom: 20px;
}

.servicos-chamada p{
    font-size: 18px;
    line-height: 28px;
    color: #7E7167;
}

/* chamada */
#chamada{
    background-color: #B3927E;
    height: 100vh;
    padding: 0 2%;
}

#chamada .container{
    max-width: 768px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 2%;
}

#chamada h1{
    color: white;
    font-size: 60px;
    font-family: "Playfair Display";
    line-height: 60px;
}

#chamada p{
    font-size: 24px;
    color: white;
    margin-top: 20px;
}

#chamada .buttons{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-agendamento, .btn-ver-servicos{
    padding:15px 0;
    display: block;
    max-width: 170px;
    width: 100%;
    font-size: 14px;
    text-decoration: none;
    color: white;
    background-color: #D4AF37;
    border-radius: 7px;
    margin: 0 10px;
    transition: 0.4s;
}

.btn-agendamento:hover{
    background-color: #A78A2A;
}

.btn-ver-servicos{
    background-color: white;
    color: black;
    border: 1px solid white;
}

.btn-ver-servicos:hover{
    background-color: rgba(255, 255, 255, 0.103);
    color: white;
}

/* especialista */
#especialista{
    padding: 80px 2%;
    background-color: white;
}

#especialista .container{
    max-width: 1088px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#especialista .container .img-perfil{
    width: 100%;
    max-width: 520px;
    padding-top: 50%;
    background-image: url('../img/perfil2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#especialista .texto{
    width: 49%;
    padding-left: 2%;
}

#especialista .texto h2{
    font-size: 30px;
    color: #94674A;
    font-family: "Playfair Display";
    margin-bottom: 30px;
}

#especialista .texto p{
    font-size: 18px;
    color: #7e7167;
    margin-bottom: 30px;
}

#especialista .texto .wraper{
    display: flex;
    justify-content: space-between;
}

#especialista .texto .wraper .box{
    max-width: 248px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: first baseline;
}

#especialista .texto .wraper .box i{
    color: #94674A;
}

#especialista .texto .wraper .box .desc{
    width: 87%;
}

#especialista .texto .wraper .box .desc h3{
    font-size: 16px;
    color: #3D3129;
    font-family: "Playfair Display";
}


#especialista .texto .wraper .box .desc P{
    font-size: 14px;
    color: #7e7167;
}

#especialista .texto .button-historia{
    display: block;
    max-width: 217px;
    width: 100%;
    text-decoration: none;
    color: white;
    padding: 10px 0;
    background-color: #94674A;
    font-size: 14px;
    text-align: center;
    border-radius: 6px;
    transition: 0.4s;
}

#especialista .texto .button-historia:hover{
    background-color: #724F38;
}

/* nossos serviços */
#nossos-servicos{
    padding: 80px 2%;
    background-color: #F5EFE6;
}

#nossos-servicos h2{
    color: #94674A;
    text-align: center;
    font-size: 30px;
    font-family: "Playfair Display";
    margin-bottom: 20px;
}


#nossos-servicos .container > p{
    text-align: center;
    font-size: 16px;
    color: #7e7167;
    margin-bottom: 50px;
}

#nossos-servicos .cards{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#nossos-servicos .card{
    max-width: 422px;
    width: 100%;
    background-color: white;
    border-radius: 7px;
    margin-top: 30px;
}

#nossos-servicos .card .img-card{
    width: 100%;
    height: 237px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    background-position: center;
    background-size: cover;
}

#nossos-servicos .card .descricao-card{
    padding: 30px 20px;
}

#nossos-servicos .card .descricao-card h3{
    font-family: "Playfair Display";
    font-size: 24px;
    color: #94674A;
    margin-bottom: 10px;
    font-weight: 500;
}

#nossos-servicos .card .descricao-card p{
    color: #7e7167;
    margin-bottom: 20px;
}

#nossos-servicos .card .descricao-card .preco{
    color: #94674A;
    font-size: 18px;
    background-color: #FCFAF8;
    padding: 15px 7px;
    font-weight: bold;
}

#nossos-servicos .card .descricao-card  ul{
    list-style: none;
    padding-left: 0;
}

#nossos-servicos .card .descricao-card  ul li{
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    color: #3D3129;
    margin-bottom: 10px;
}

#nossos-servicos .card .descricao-card  ul li::before {
    content: "\f058"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    position: absolute;
    left: 0;
    top: 0;
    color: #94674A;
}


#nossos-servicos .card .descricao-card .agendar{
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    border-radius: 7px;
    border: 0;
    background-color: #94674A;
    color: white;
    cursor: pointer;
    transition: 0.4s;
    display: block;
    text-align: center;
    text-decoration: none;
}

#nossos-servicos .card .descricao-card .agendar:hover{
    background-color: #724F38;
}

#nossos-servicos .card .descricao-card .agendar span{
    padding-left: 10px;
}

#nossos-servicos .button-nossos-servicos{
    background-color: white;
    display: block;
    max-width: 211px;
    width: 100%;
    text-align: center;
    padding: 10px;
    color: #94674A;
    font-size: 14px;
    border: 1px solid #94674A;
    border-radius: 8px;
    transition: 0.4s;
    cursor: pointer;
    margin: 30px auto;
    text-decoration: none;
}

#nossos-servicos .button-nossos-servicos:hover{
    transform: scale(1.1);
}

/* agendamento */
#agendamento{
    padding: 50px 2%;
    background-color: #B3927E;
    text-align: center;
    color: white;
}

#agendamento h2{
    font-size: 36px;
    font-family: "Playfair Display";
    margin-bottom: 20px;
}

#agendamento p{
    font-size: 18px;
    color: #F5EFE6E6;
    margin-bottom: 20px;
}

#agendamento .button-agendamento{
    background-color: #D4AF37;
    padding: 13px 30px;
    border-radius: 7px;
    font-size: 14px;
    color: #FAFAFA;
    margin: 20px 0;
    display: inline-block;
    cursor: pointer;
    transition: 0.4s;
    text-decoration: none;
}

#agendamento .button-agendamento:hover{
    background-color: #A78A2A;
}

#agendamento .button-agendamento span{
    padding-left: 10px;
    font-weight: 500;
}

/* feedbak */
#feedback{
    padding: 60px 2%;
    background-color: #FCFAF8;
}

#feedback h2{
   font-family: 'Playfair Display';
   font-size: 30px;
   color: #94674A; 
   text-align: center;
   margin-bottom: 20px;
}

#feedback .container > p{
    color: #7e7167;
    text-align: center;
    margin-bottom: 30px;
}

#feedback .cards-feedback{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#feedback .card-feedback{
    max-width: 430px;
    width: 100%;
    background-color: white;
    border-radius: 7px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.342);
    padding: 25px;
}

#feedback .card-feedback .stars{
    margin-bottom: 20px;
}

#feedback .card-feedback .stars i{
    font-size: 13px;
    color: #D4AF37;
}

#feedback .card-feedback q{
    color: #3D3129;
    font-style: italic;
    line-height: 24px;
    margin-bottom: 20px;
    display: block;
}

#feedback .card-feedback h6{
    font-size: 16px;
    color: #94674A;
    font-weight: normal;
}

#feedback .card-feedback .titulo-trança-feedback{
    font-size: 14px;
    color: #7e7167;
    margin-bottom: 20px;
}

#feedback .card-feedback .data-feedback{
    font-size: 12px;
    color: #7e7167;
}

/* instagram */

#instagram{
    background-color: #F5EFE6;
    padding: 80px 2%;
}

#instagram .container{
    max-width: 672px;
    width: 100%;
}

#instagram h2{
    font-size: 30px;
    color: #94674A;
    font-family: 'Playfair Display';
    text-align: center;
    margin-bottom: 20px;
}

#instagram p{
    color: #7e7167;
    text-align: center;
    margin-bottom: 30px;
}

#instagram .fotos-instagram{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

#instagram .foto-instagram{
    display: block;
    background-color: #ccc;
    max-width: 98px;
    width: 100%;
    padding-top: 15%;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}

#instagram .foto-instagram:hover{
    transform: scale(1.1);
}

#instagram .button-instagram{
    background-color: white;
    display: block;
    max-width: 211px;
    width: 100%;
    text-align: center;
    padding: 10px;
    color: #94674A;
    font-size: 14px;
    border: 1px solid #94674A;
    border-radius: 8px;
    transition: 0.4s;
    cursor: pointer;
    margin: 0 auto;
    text-decoration: none;
}

#instagram .button-instagram:hover{
    transform: scale(1.1);
}

/* footer */
footer{
    background-color: #94674A;
    padding: 0 2%;
    color: white;
}

footer .wraper{
    padding-top: 30px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f5efe649;
}

footer .box{
    max-width: 434px;
    width: 100%;
}

footer .onnly .logo{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

footer .onnly img{
    width: 48px;
}

footer .onnly h2{
    margin-left: 10px;
    font-size: 20px;
    font-family: 'Playfair Display';
}

footer .onnly p{
    color: #F5EFE6E6;
    line-height: 24px;
    margin-bottom: 20px;
}

footer .onnly .socials i{
    margin-right: 15px;
    color: white;
    font-size: 20px;
    transition: 0.4s;
}

footer .onnly .socials i:hover{
    color: #D4AF37;
}

footer .links-rapidos h4{
    font-size: 20px;
    font-family: 'Playfair Display';
    margin-bottom: 15px;
}

footer .links-rapidos ul{
    list-style-type: none;
}

footer .links-rapidos ul li a{
    text-decoration: none;
    color:#F5EFE6E6;
    margin-bottom: 10px;
    display: block;
    transition: 0.4s;
}

footer .links-rapidos ul li a:hover{
    color: #D4AF37;
}

footer .contato h4{
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Playfair Display';
}

footer .contato i{
    color: #D4AF37;
    margin-right: 5px;
}

footer .contato div{
    margin-bottom: 15px;
}

footer .contato div span, footer .contato div address, footer .contato div a{
    color:#F5EFE6E6;
    display: inline;
    line-height: 24px;
    text-decoration: none;
    transition: 0.4s;
}

footer .contato div a:hover{
    color: #D4AF37;
}

footer .rodape{
    padding: 25px 0;
    text-align: center;
}

footer .rodape p{
    font-size: 14px;
    color: #F5EFE6B3;
}

/* galeria */
.galeria{
    padding: 100px 2%;
}

.galeria .wraper-galeria{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 1fr;
    justify-items: start;
    overflow: hidden;
}

.galeria .wraper-galeria .img{
    max-width: 450px;
    width: 100%;
    padding-top: 100%;
    border-radius: 10px;
    background-position: center;
    background-size: 100% 100%;
    transition: background-size 0.4s ease;
    cursor: pointer;
    background-repeat: no-repeat;
}

.galeria .wraper-galeria .img:hover{
    background-size: 110% 110%;
}



.modal-img{
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.582);
    display: none;
    padding: 0 2%;
}

.modal{
    max-width: 1000px;
    height: 90vh;
    width: 100%;
    padding-bottom: 40%;
    background-color: black;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    border: 2px solid white;
}

.modal i{
    position: relative;
    left: 94%;
    top: 5px;
    font-size: 30px;
    cursor: pointer;
    border: 2px solid red;
    padding: 0 7px;
    border-radius: 10px;
    color: red;
}

/* página agendamento .agendamento-contato */

.agendamento-contato{
    padding: 50px 2%;
    background-color: #FCFAF8;
}

.agendamento-contato .container{
    display: flex;
    justify-content: center;
}

.agendamento-contato .box{
    max-width: 430px;
    width: 100%;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    transition: 0.4s;
}

.agendamento-contato .box:hover{
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.075);

}

.agendamento-contato .box h3{
    font-family: "Playfair Display";
    font-size: 24px;
    color: #94674A;
    margin-bottom: 10px;
}

.agendamento-contato .box h3 i{
    color: #16A34A;
}

.agendamento-contato .box p:nth-of-type(1){
    font-size: 14px;
    color: #7E7167;
    margin-bottom: 20px;
}

.agendamento-contato .box p:nth-of-type(2){
    color: #3D3129;
    line-height: 24px;
    margin-bottom: 20px;
}

.agendamento-contato .box ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.agendamento-contato .box ul li{
    position: relative;
    padding-left: 25px;
    color: #3D3129;
    margin-bottom: 10px;
}

.agendamento-contato .box ul li::before{
    content: "\f058"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    position: absolute;
    left: 0;
    top: 0;
    color: #16A34A;
}

.agendamento-contato .box a{
    width: 100%;
    text-decoration: none;
    display: block;
    color: white;
    background-color: #16A34A;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    transition: 0.4s;
}

.agendamento-contato .box a:hover{
    background-color: #15803D;
}

.agendamento-contato .box a i{
    padding-right: 10px;
}

/* .agendamento-contato .ligacao-box h3 i{
    color: #94674A;
}

.agendamento-contato .ligacao-box a{
    background-color: #94674A;
} */


/* informações importantes */
.informacoes-importantes{
    background-color: #F9F5EF;
    padding: 50px 2%;
}

.informacoes-importantes h2{
    font-size: 30px;
    color: #94674A;
    text-align: center;
    margin-bottom: 30px;
    font-family: "Playfair Display";
}

.informacoes-importantes .lista-informacoes-importantes{
    max-width: 704px;
    width: 100%;
    padding: 40px 20px 10px 20px;
    background-color: white;
    list-style-type: none;
    border-radius: 8px;
    margin: 0 auto;
}

.informacoes-importantes .lista-informacoes-importantes > li{
    color: #94674A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.informacoes-importantes .lista-informacoes-importantes > li span{
    color: #94674A;
    font-family: "Playfair Display";
}

.informacoes-importantes .lista-informacoes-importantes > li:hover span{
    text-decoration: underline;
}

.informacoes-importantes .lista-informacoes-importantes .row{
    width: 100%;
    height: 1px;
    background-color: #94684a4b;
    margin: 20px 0;
}

.informacoes-importantes .lista-informacoes-importantes > li i{
    font-size: 14px;
}

.informacoes-importantes .content-hidden{
    display: none;
}

.informacoes-importantes .content-hidden ul{
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
}

.informacoes-importantes .content-hidden ul li{
    margin-bottom: 14px;
    font-size: 14px;
}

.informacoes-importantes .content-hidden p{
    margin: 14px 0;
    font-size: 14px;
}

.girarI{
    transform: rotate(180deg);
}


.devsime-group{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.devsime{
    width: 150px;
}

.desenvolvido-devsime{
    margin-right: 20px;
}











  