/* Reset Total */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-fundo: #E9E2D7;
    --cor-texto: #8A7051;
    --fonte-serif: 'Cormorant Garamond', serif;
    --fonte-sans: 'Montserrat', sans-serif;
}

body {
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    font-family: var(--fonte-sans);
    min-height: 100vh;
    overflow-x: hidden;
}

header nav {
    position: absolute;
    top: 40px;
    right: 5%;
    z-index: 100;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--cor-texto);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: var(--cor-texto);
    transition: width 0.3s ease;
}


.nav-links li a:hover {
    color: #b59b7c; 
}

.nav-links li a:hover::after {
    width: 100%;
}

.hero-section {
    position: relative;
    padding: 60px 4%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 3. LOGO AQUI E TEXTO ESTETICA AVANÇADA */
.logo-clinica {
    margin-bottom: 60px; /* Espaço para o texto de baixo */
    margin-left: -20px;  /* Truque para encostar ela ainda mais na esquerda */
    text-align: left;
}

.logo-clinica img {
    width: 320px; 
    height: auto; 
    display: block;
    position: relative;
    left: -29px;
    margin-right: -15px; 
}

.titulo-avancada {
    font-family: var(--fonte-serif);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 15px;
}

/* 4. FRASE: REALCE A SUA BELEZA (Esquerda) */
.texto-area {
    max-width: 450px;
}

.frase-destaque {
   font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-style: italic;
    line-height: 1.6;
    color: #b59b7c; /* Um tom levemente diferente para destaque */
    font-weight: 300;
    max-width: 300px;
    letter-spacing: 0.5px;
}

/* 5. IMAGEM DA BORBOLETA (Centralizada) */
.borboleta-area {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: -1; /* Fica atrás do texto se necessário */
}

.borboleta-area img {
    width: 500px; /* Tamanho da borboleta */
    height: auto;
    opacity: 0.6;
    filter: sepia(50%) brightness(120%) contrast(80%); 
}

/* 6. BOTÃO AQUI */
.botao-area {
   position: absolute; /* Torna o botão independente de tudo ao redor */
    top: 65%;    /* Distância do topo (0% é no topo, 100% no fundo) */
    left: 5%;   /* Distância da esquerda (0% é colado, 100% é na direita) */
       
    z-index: 10; /* Garante que ele fique por cima da borboleta */
   }


.botao-agendar {
    display: inline-block;
    background-color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--cor-texto);
    font-family: var(--fonte-sans);
    font-size: 0.85rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.botao-agendar:hover {
    transform: translateY(-10px) scale(1.05); /* Efeito de saltar */
}

/* 7. TEXTO PROCEDIMENTOS (Direita Baixo) */
.descricao-area {
    position: absolute;
    top: 40%;
    right: 5%;
    max-width: 350px;
    text-align: left;
    z-index: 15;
}

.descricao-tecnica {
    font-size: 15px;
    line-height: 1.6;
    font-family: var(--fonte-sans);
    font-weight: 300;
}

/* SEÇÃO SOBRE/ 2 PAG */

.sobre-section {
    padding: 100px 4%;
    background-color: var(--cor-fundo);
    text-align: center;
}

.sobre-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-titulo {
    font-family: var(--fonte-serif);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 1px;
}

.sobre-titulo span {
    color: #b59b7c;
}

.sobre-subtitulo {
    font-family: var(--fonte-sans);
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.sobre-subtitulo span {
    font-style: italic;
}

.sobre-texto {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: left;
}

.texto-direita {
    text-align: center !important; 
    display: block;
    width: 100%;
    margin: 30px auto;            
    max-width: 800px;             
}

/* Estilo das Estatísticas (Stats) */
.sobre-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(138, 112, 81, 0.2);
    padding-top: 40px;
}

.stat-item h4 {
    font-family: var(--fonte-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: #b59b7c;
}

.stat-item p {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* SEÇÃO VIDEO/ 3 PAG */

.video-section {
    position: relative;
    width: 100%;
    height: 600px; /* Altura que você vê no Canva */
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo preencher todo o espaço sem deformar */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Um fundo escuro bem leve para o texto aparecer */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Joga o conteúdo para a direita */
    padding-right: 8%;
}

.video-content {
    max-width: 800px;
    text-align: right; 
    color: #fff;
    padding-right: 20px;
}

.video-logo {
    width: 250px;
    margin-bottom: 20px;
}

.video-frase {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    white-space: nowrap; 
}

/* SEÇÃO PROCEDIMENTOS/ 4 PAG */

.procedimentos-section {
    padding: 100px 4%;
    background-color: var(--cor-fundo);
    color: var(--cor-texto #3e3222 );
}

.procedimentos-titulo {
    font-family: var(--fonte-serif);
    font-size: 2.5rem;
    font-weight: 300;
    text-align: left;
}

.procedimentos-sub {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    margin-bottom: 60px;
    color: #3e3222;
}

.servico-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

/* O truque do zigue-zague */
.servico-card.invertido {
    flex-direction: row-reverse;
}

.servico-img {
    flex: 1;
    display: flex;
    justify-content: center; 
}

.servico-img img {
    width: 100%;
    max-width: 450px;      
    height: 400px;          
    object-fit: cover;      
    border-radius: 20px;    
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.servico-info {
    flex: 1;
    background-color: #F2D4C2; 
    padding: 40px;
    border-radius: 20px;
}

.servico-info h3 {
    font-family: var(--fonte-serif);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.servico-info p {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    font-weight: 300;
}


.outros-servicos {
    background-color: #E6C6AC; 
    border-radius: 20px;       
    padding: 60px 40px;
    position: relative;        
    margin-top: 50px;
    overflow: hidden;          
    text-align: center;
}

/* Título "Entre outros" */
.outros-servicos h3 {
    font-family: var(--fonte-serif);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Bloco de cada sub-serviço */
.sub-servico {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sub-servico h4 {
    font-family: var(--fonte-serif);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
}

.sub-servico p {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* A Borboleta Decorativa */
.borboleta-decor {
    position: absolute;
    right: -30px;        
    bottom: -30px;
    width: 280px;       
    opacity: 0.3;        
    pointer-events: none; 
}


.servico-info h3, 
.outros-servicos h3, 
.sub-servico h4 {
    
    color: #3e3222;
    transition: transform 0.3s ease-out, color 0.3s ease;
    display: inline-block; 
    cursor: pointer; 
}


.servico-info h3:hover, 
.outros-servicos h3:hover, 
.sub-servico h4:hover {
    
    transform: translateY(-5px); 
    
    
    color: #060606; 
}


/* SEÇÃO COMO FUNCIONA / 5 PAG */


.fluxo-section {
    background-color: #3e3222; 
    padding: 100px 4%;
    color: #ffffff;
}

.fluxo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fluxo-titulo {
    font-family: var(--fonte-serif);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.fluxo-subtitulo {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 60px;
    opacity: 0.8;
}

.fluxo-subtitulo span {
    font-style: italic;
    color: #E6C6AC; /* Destaque na palavra resultado */
}

/* Grid para os 4 itens */
.fluxo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    gap: 60px 100px; /* Espaço entre as linhas e colunas */
}

.fluxo-item {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    padding-top: 20px;
}

.numero {
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #E6C6AC;
    transition: transform 0.3s ease, color 0.3s ease;
}

.fluxo-item:hover .numero {
    transform: translateY(-8px); /* O número sobe um pouco mais que o texto */
    color: #ffffff; /* O número brilha ficando branco puro no hover */
}


.fluxo-item h3 {
    font-family: var(--fonte-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.fluxo-item p {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* SEÇÃO DEPOIMENTOS / 6 PAG */

.depoimentos-section {
    padding: 100px 4%;
    background-color: var(--cor-fundo); /* A cor bege clarinha de fundo */
    text-align: center;
}

.depoimentos-sub span {
    font-style: italic;
    color: #8A7051;
}

.depoimentos-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.depoimento-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

.depoimento-texto {
    font-family: 'Raleway', sans-serif;
    color: #3e3222;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    background-color: #E6C6AC; 
    color: #3e3222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--fonte-serif);
}

.autor-info {
    text-align: left;
}

.autor-info strong {
    display: block;
    color: #3e3222;
    font-size: 1rem;
}

.autor-info span {
    font-size: 0.85rem;
    color: #8A7051;
}

/* SEÇÃO LOCALIZAÇÃO / 7 PAG */


.contato-section {
    padding: 100px 4%;
    background-color: var(--cor-fundo); /* Bege claro */
    text-align: center;
}

.contato-titulo {
    font-family: var(--fonte-serif);
    font-size: 2.8rem;
    color: #3e3222;
    margin-bottom: 20px;
}

.contato-titulo span {
    font-style: italic;
    font-weight: 300;
}

.contato-texto {
    max-width: 700px;
    margin: 0 auto 40px;
    font-family: 'Raleway', sans-serif;
    color: #3e3222;
    line-height: 1.8;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #8A7051;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #3e3222;
    transform: translateY(-3px);
}

.info-local {
    margin-top: 50px;
    font-family: 'Raleway', sans-serif;
    color: #3e3222;
}

/* --- FOOTER COMPLETO --- */
.footer-completo {
    background-color: #3e3222;
    padding: 80px 4% 20px;
    color: #E6C6AC;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    text-align: left; /* Garante alinhamento à esquerda nas colunas */
}

.footer-logo-texto {
    font-family: var(--fonte-serif);
    font-size: 2.2rem;
    letter-spacing: 5px;
    color: #E6C6AC;
    margin: 0;
}

.footer-sublogo {
    font-size: 0.8rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--fonte-serif);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    border-bottom: 1px solid rgba(230, 198, 172, 0.3);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #E6C6AC;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 198, 172, 0.1);
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* --- RESPONSIVIDADE (CELULAR) --- */

@media (max-width: 768px) {
    /* Ajustes no Menu */

    html, body {
    max-width: 100%;
    overflow-x: hidden; /* Mata o scroll lateral */
    }

    /* Ajuste dos textos que estão encavalados no print */
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }

    header nav {
        top: 20px;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .titulo-avancada, .frase-destaque {
        width: 100%;
        position: relative;
        left: 0;
        margin-bottom: 20px;
    }

/* Estilo do Botão */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 10000 !important; /* Acima de tudo */
    }

    .menu-toggle span {
        width: 30px;
        height: 3px;
        background-color: var(--cor-texto);
        transition: 0.3s;
    }

    .nav-links {
        display: flex !important;;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%; /* Começa escondido */
        width: 80%; /* Largura do menu lateral */
        height: 100vh;
        background-color: var(--cor-fundo);
        z-index: 9999 !important; /* Acima de tudo */
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    
    }


    /* Cria um botão de menu simples no canto superior direito */
    header::after {
        content: '☰'; 
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: var(--cor-texto);
        cursor: pointer;
        display: none !important; 
    }

    .nav-links li a {
        font-size: 1.2rem !important;
        color: var(--cor-texto) !important;
        text-decoration: none;
        font-family: var(--fonte-sans);
        letter-spacing: 2px;
    }

    .nav-links li { 
        margin: 25px 0;
        list-style: none;
     }

    .nav-links.active {
        right: 0 !important; /* para dentro da tela */
    }
    

    /* Hero Section (Topo) */
    .hero-section {
        padding-top: 100px;
        text-align: center;
        align-items: center;
    }

    .logo-clinica {
        margin-left: 0;
        text-align: center;
    }

    .logo-clinica img {
        width: 250px;
        left: 0;
        margin: 0 auto;
    }

    .titulo-avancada {
        font-size: 1.1rem;
    }

    .frase-destaque {
        font-size: 24px;
        margin: 0 auto;
    }

    /* Borboleta no Celular */
    .borboleta-area {
        width: 100%;
        left: 50%;
        overflow: hidden;
        pointer-events: none;
    }

    .borboleta-area img {
        width: 120%; /* Reduz o tamanho para não empurrar a tela */
        opacity: 0.2; /* Deixa mais sutil no fundo */
    }

    /* Botão e Descrição */
    .botao-area {
        position: relative;
        top: 40px;
        left: 0;
        margin-bottom: 50px;
    }

    .descricao-area {
        position: relative;
        top: 60px;
        right: 0;
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    /* Seção Sobre e Stats */
    .sobre-stats {
        flex-direction: column;
        gap: 30px;
    }

    /* Procedimentos (Zigue-Zague vira coluna única) */
    .servico-card, 
    .servico-card.invertido {
        flex-direction: column;
        gap: 20px;
    }

    .servico-img img {
        height: 300px;
    }

    .servico-info {
        width: 100%;
    }

    /* Vídeo */
    .video-section {
        height: 400px;
    }

    .video-frase {
        white-space: normal;
        font-size: 1rem;
        text-align: right;
    }

    /* Como Funciona (Grid vira 1 coluna) */
    .fluxo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4 {
        margin-top: 20px;
    }
}