/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #c88462a5;
    color: #3e342d;
    padding-top: 85px; /* Compensa a altura do header fixo */
}

/* CONTAINER */
.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER (Estilo Onodera unificado) */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.menu-topo{
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.logo-topo{
    width: 170px;
    height: auto;
}

.menu-icon{
    font-size: 38px;
    color: #d88c8c;
    cursor: pointer;
    font-weight: 300;
}

/* MENU MOBILE */
.menu-mobile{
    display: none;
    background: #ffffff;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.menu-mobile.ativo{
    display: flex;
    flex-direction: column;
}

.menu-mobile a{
    padding: 18px 25px;
    text-decoration: none;
    color: #905846;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    transition: .3s;
}

.menu-mobile a:hover{
    background: #f8f8f8;
}

/* SECTION TITLE */
.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title span{
    color: #b08d57;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title h2{
    font-size: 2.7rem;
    margin-top: 12px;
    font-family: 'Cormorant Garamond', serif;
}

/* SOBRE */
.about{
    padding: 120px 0;
}

.about-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img{
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.about-text span{
    color: #0000007c;
    text-transform: uppercase;
}

.about-text h2{
    font-size: 3rem;
    margin: 20px 0;
    font-family: 'Cormorant Garamond', serif;
}

.about-text p{
    margin-bottom: 20px;
    line-height: 1.8;
}

/* PROFISSIONAIS */
.profissionais{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profissional-card{
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255,255,255,0.75);
    padding: 25px;
    border-radius: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: .3s;
}

.profissional-card:hover{
    transform: translateY(-5px);
}

.profissional-card img{
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #b08d57;
    flex-shrink: 0;
}

.profissional-info h3{
    color: #b08d57;
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.profissional-info p{
    line-height: 1.8;
}

/* PROCEDIMENTOS */
.procedures{
    padding: 120px 0;
    background: #905846;    
}

.cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card{
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 35px;
    text-align: center;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(215, 146, 96, 0.792);
}

.card h3{
    color: #b18334;
    margin-bottom: 15px;
}

/* GALERIA (ANTES E DEPOIS) */
.results{
    padding: 120px 0;
}

.gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery img{
    width: 100%;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.gallery img:hover{
    transform: scale(1.05); /* Zoom suave e seguro */
}

/* DEPOIMENTOS */
.testimonials{
    padding: 120px 0;
    background: #905846;
}

.testimonial-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.testimonial{
    background: white;
    padding: 40px;
    border-radius: 28px;
    text-align: center;
}

.testimonial h4{
    margin-top: 20px;
    color: #b08d57;
}

/* FAQ */
.faq{
    padding: 120px 0;
}

.faq-item{
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.faq-item h3{
    margin-bottom: 10px;
    color: #b18334;
}

/* CTA */
.cta{
    background: #ffffff;
    color: rgb(203, 158, 99);
    text-align: center;
    padding: 90px 20px;
}

.cta h2{
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.btn-primary{
    text-decoration: none;
    background: #c9a96e;
    color: white;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
    display: inline-block;
}

.btn-primary:hover{
    transform: translateY(-3px);
}

/* FOOTER */
.footer{
    background: #e4a98ca5;
    text-align: center;
    padding: 50px 20px;
}

.footer-links{
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a{
    text-decoration: none;
    background: #b08d57;
    color: white;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.footer-links a:hover{
    transform: translateY(-3px);
    background: #9a7745;
}

.copyright {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* BOTÕES FIXOS */
.instagram-button{
    position: fixed;
    right: 25px;
    bottom: 105px;
    background: #e5443b;
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    transition: .3s;
    z-index: 999;
}

.instagram-button:hover{
    transform: translateY(-3px);
    background: #b08d57;
}

.whatsapp-button{
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #36d325;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    transition: .3s;
    z-index: 999;
}

.whatsapp-button:hover{
    transform: translateY(-3px);
    background: #b08d57;
}

/* RESPONSIVO */
@media(max-width: 900px){
    .about-container{
        grid-template-columns: 1fr;
    }

    .gallery{
        grid-template-columns: 1fr;
    }

    .section-title h2{
        font-size: 2rem;
    }

    .about-text h2{
        font-size: 2.2rem;
    }
}

@media(max-width: 768px){
    .profissional-card{
        flex-direction: column;
        text-align: center;
    }
}