/* -------------------------------------------------------------------------- */
/*                               RESET & VARS                                 */
/* -------------------------------------------------------------------------- */
:root {
    --pink: #C86577;
    --pink-light: #FBDCE0;
    --pink-bg-soft: #FFF5F7;
    --pink-bg-warm: #FEF4F6;
    --coffee: #3E2C26;
    --coffee-light: #6D5A54;
    --coffee-dark: #2C1E1A;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --gray-text: #8C7A74;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html, body {
    /* Garante altura para layouts flexíveis (necessário para a página de captura) */
    height: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--coffee);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Variação de Body para Página de Captura */
body.page-capture {
    background-color: var(--pink-bg-soft);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem; /* Margem lateral segura para mobile 360px */
}

/* Variação de Container para Captura (Max-width 1100px original do cadastro.css) */
.container-capture {
    max-width: 1100px;
}

.text-pink { color: var(--pink); }
.italic { font-style: italic; }

/* -------------------------------------------------------------------------- */
/*                                 COMPONENTS                                 */
/* -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--pink);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(200, 101, 119, 0.2);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--coffee);
    border: 1px solid #DCC5C0;
}

.btn-secondary:hover {
    background-color: var(--coffee);
    border-color: var(--coffee);
    color: var(--white);
}

.section {
    padding: 4rem 0; /* MOBILE: Reduzido para melhor densidade vertical */
}
@media(min-width: 768px) { .section { padding: 6rem 0; } }

.pt-0 { padding-top: 0 !important; }

.bg-white { background-color: var(--white); }
.bg-soft { background-color: var(--pink-bg-soft); }
.bg-warm { background-color: var(--pink-bg-warm); }
.bg-coffee { background-color: var(--coffee); }
.bg-coffee-dark { background-color: var(--coffee-dark); }

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem; /* MOBILE: Margem reduzida */
}
@media(min-width: 768px) { .section-header { margin: 0 auto 5rem; } }

.section-tag {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-text);
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.section-tag.pink { color: var(--pink); }
.section-tag.gold { color: var(--gold); }

.section-title {
    font-size: 2rem; /* MOBILE: Tamanho ajustado */
    color: var(--coffee);
    margin-bottom: 1.5rem;
}
@media(min-width: 768px) { .section-title { font-size: 2.5rem; } }

.section-desc {
    color: var(--coffee-light);
    font-weight: 300;
    font-size: 1rem;
    margin-top: 1.5rem;
}
@media(min-width: 768px) { .section-desc { font-size: 1.125rem; margin-top: 2rem; } }

.separator-pink, .separator-gold {
    width: 4rem;
    height: 1px;
    margin: 0 auto;
    opacity: 0.6;
}
.separator-pink { background-color: var(--pink); }
.separator-gold { background-color: var(--gold); }

/* -------------------------------------------------------------------------- */
/*                                   HEADER                                   */
/* -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(62, 44, 38, 0.05); /* Borda sutil */
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Necessário para o posicionamento do menu tablet */
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--coffee);
}
.logo span { color: var(--pink); font-style: italic; }

/* Navegação Mobile & Tablet (Padrão: Oculto) */
.main-nav {
    display: none; 
    width: 100%;
}

/* Desktop Nav (> 1024px) */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        width: auto;
        /* Aumentado o gap para 2.35rem: Luxo precisa de espaço (respiro) */
        gap: 2.35rem; 
        align-items: center;
        height: 100%;
    }
    .main-nav a {
        /* Reduzido levemente para 0.7rem: Fontes menores com tracking largo são mais "fashion/editorial" */
        font-size: 0.7rem; 
        text-transform: uppercase;
        /* Aumentado para 0.25em: Máxima sofisticação no espaçamento */
        letter-spacing: 0.25em; 
        color: var(--gray-text);
        font-weight: 500;
        border-bottom: none;
        padding: 0;
        width: auto;
        margin: 0;
        display: inline-block;
        /* Transição mais lenta para suavidade (0.4s) */
        transition: all 0.4s ease;
    }
    .main-nav a:after { display: none; } /* Remove setas mobile no desktop */
    .main-nav a:hover { color: var(--pink); background: none; box-shadow: none; }
    
    /* Esconde o CTA duplicado dentro do nav no Desktop */
    .mobile-cta { display: none !important; }
}

/* Container do Botão CTA Desktop */
.header-cta { display: none; }
@media (min-width: 1024px) {
    .header-cta { display: block; margin-left: 1rem; }
    .header-cta .btn { 
        display: inline-block; 
        /* Botão mais largo e elegante (Pill Shape alongado) */
        padding: 0.8rem 2.3rem;
        /* Texto alinhado com o menu (0.7rem e tracking largo) */
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }
}

/* Mobile Menu Checkbox Hack */
.menu-checkbox { display: none; }

.menu-icon {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
    margin-right: -0.75rem; 
}

@media (min-width: 1024px) { .menu-icon { display: none; } }

.nav-icon, .nav-icon:before, .nav-icon:after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--coffee);
    position: absolute;
    transition: 0.3s;
}
.nav-icon { top: 50%; transform: translateY(-50%); }
.nav-icon:before { content: ''; top: -8px; }
.nav-icon:after { content: ''; top: 8px; }

/* 
   =============================================
   MOBILE & TABLET MENU (< 1024px)
   Estilo: Lista Compacta (Height Auto)
   =============================================
*/
@media (max-width: 1023px) {
    #menu-toggle:checked ~ .main-nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        position: fixed;
        top: 73px; /* Altura aprox do header */
        left: 0;
        width: 100%;
        height: auto; /* ALTURA AUTOMÁTICA (Não ocupa a tela toda) */
        max-height: 85vh; /* Limite de segurança */
        background-color: #FDFBFB;
        padding: 0;
        z-index: 999;
        overflow-y: auto;
        
        /* Estilo Premium: Sombra e Cantos Arredondados embaixo */
        border-bottom: 1px solid rgba(62, 44, 38, 0.05);
        border-radius: 0 0 24px 24px;
        box-shadow: 0 20px 40px rgba(62, 44, 38, 0.15);
    }

    .main-nav a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        text-align: left;
        padding: 1.1rem 1.5rem;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--coffee);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 500;
        border-bottom: 1px solid rgba(62, 44, 38, 0.04);
        background-color: transparent;
        transition: background-color 0.2s;
    }

    .main-nav a:not(.mobile-cta)::after {
        content: '›';
        font-size: 1.5rem;
        color: var(--pink);
        opacity: 0.4;
        font-weight: 300;
        line-height: 0;
        margin-top: -4px; 
    }

    .main-nav a:hover {
        background-color: rgba(255, 255, 255, 1);
        color: var(--pink);
    }

    /* CTA AGENDAR */
    .main-nav a.mobile-cta {
        display: flex;
        justify-content: center;
        margin-top: 1.5rem; 
        margin-bottom: 2rem;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        width: calc(100% - 3rem);
        background-color: var(--pink);
        color: var(--white);
        border: none;
        padding: 1rem;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(200, 101, 119, 0.3);
        text-align: center;
    }
    
    .main-nav a.mobile-cta::after { display: none; }
}

/* Animação do Ícone Hamburguer */
#menu-toggle:checked ~ .menu-icon .nav-icon { background: transparent; }
#menu-toggle:checked ~ .menu-icon .nav-icon:before { top: 0; transform: rotate(45deg); }
#menu-toggle:checked ~ .menu-icon .nav-icon:after { top: 0; transform: rotate(-45deg); }

/* -------------------------------------------------------------------------- */
/*                                    HERO                                    */
/* -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background-color: var(--pink-bg-soft);
    /* MOBILE OPTIMIZATION: Ajuste de padding para equilibrar com o Header fixo */
    padding-top: 8rem; 
    padding-bottom: 3.5rem;
    overflow: hidden;
    min-height: auto; /* Altura automática para evitar espaços vazios no mobile */
    display: flex;
    align-items: center;
}

/* TABLET HERO OPTIMIZATION (768px - 991px) */
@media(min-width: 768px) {
    .hero {
        padding-top: 10rem; 
        padding-bottom: 5rem;
        min-height: 60vh; 
    }
}

/* DESKTOP HERO OPTIMIZATION (> 992px) */
@media(min-width: 992px) {
    .hero {
        padding-top: 10rem;
        padding-bottom: 5rem;
        min-height: 90vh;
    }
}

.hero-bg-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* Gradiente suave mantido para fundo elegante */
    background: linear-gradient(to bottom, rgba(251, 220, 224, 0.4) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 0;
}
@media(min-width: 768px) {
    .hero-bg-decor {
        width: 66%;
        background: linear-gradient(to left, rgba(251, 220, 224, 0.3), transparent);
    }
}

.hero-container-flex {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Gap ajustado para mobile: menos espaço entre elementos */
    gap: 2rem;
    width: 100%;
}

/* TABLET FLEX */
@media(min-width: 768px) {
    .hero-container-flex {
        gap: 3rem;
        max-width: 800px;
    }
}

@media(min-width: 992px) {
    .hero-container-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4rem;
        max-width: 1200px;
    }
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    position: relative;
    z-index: 2;
}
@media(min-width: 768px) {
    .hero-text { max-width: 650px; }
}

@media(min-width: 992px) {
    .hero-text {
        align-items: flex-start;
        text-align: left;
        max-width: 600px;
    }
}

/* 
   VISUAL COLUMN (LOGO)
   Mobile (< 768px): Oculto. 
   Motivo: O logo já está presente no Header Fixo. 
   Removê-lo da primeira dobra limpa o layout (Higiene visual) 
   e traz os botões de ação (CTA) para o foco do usuário (Profissionalismo).
*/
.hero-visual {
    display: none; 
}

/* Tablet: Exibe o logo, mas com comportamento controlado */
@media(min-width: 768px) {
    .hero-visual {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
        position: relative;
        min-height: auto;
        margin-top: 1rem; 
        z-index: 1;
    }
}

/* Desktop: Layout padrão */
@media(min-width: 992px) {
    .hero-visual {
        min-height: 350px;
        margin-top: 0;
    }
}

.logo-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.hero-logo-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    /* Tablet: Tamanho reduzido para não empurrar o conteúdo muito para baixo */
    width: 260px; 
    filter: drop-shadow(0 10px 20px rgba(200, 101, 119, 0.12));
}

@media(min-width: 768px) {
    .hero-logo-img { 
        width: 380px; 
        filter: drop-shadow(0 20px 40px rgba(200, 101, 119, 0.15)); 
    }
}
@media(min-width: 992px) {
    .hero-logo-img { width: 480px; }
}


.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(235, 194, 198, 0.6);
    /* Mobile: Badge levemente maior para melhor leitura */
    padding: 0.5rem 1rem; 
    border-radius: 999px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
}
@media(min-width: 992px) {
    .badge { padding: 0.5rem 1rem; margin-bottom: 2rem; }
}

.badge span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--gray-text);
}

.icon-star {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--gold);
}
@media(min-width: 768px) {
    .icon-star { width: 1rem; height: 1rem; }
}

.hero h1 {
    font-family: var(--font-serif);
    /* MOBILE: Tamanho grande, mas confortável */
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--coffee);
    letter-spacing: -0.02em;
    padding: 0 0.5rem; /* Margem de segurança lateral */
}
@media(min-width: 768px) { 
    .hero h1 { 
        font-size: 3.5rem; 
        margin-bottom: 1.5rem;
    } 
}
@media(min-width: 992px) { .hero h1 { font-size: 3.5rem; margin-bottom: 2rem; padding: 0; } }


.highlight {
    position: relative;
    display: inline-block;
    padding: 0 0.25rem;
    color: var(--pink);
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.05rem; 
    color: var(--coffee-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 100%;
    padding: 0 1rem; /* Margem de segurança */
}
@media(min-width: 768px) { 
    .hero-subtitle { 
        font-size: 1.125rem; 
        max-width: 80%;
        margin-bottom: 2.5rem; 
        padding: 0;
    }
}
@media(min-width: 992px) { 
    .hero-subtitle { 
        max-width: 100%;
    } 
}

.hero-buttons {
    display: flex;
    /* MOBILE: Botões em coluna (full width) para facilitar o clique (Luxo Acessível) */
    flex-direction: column; 
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px; /* Limite de largura no mobile */
    margin-bottom: 0.5rem;
}
@media(min-width: 640px) {
    .hero-buttons { 
        flex-direction: row; 
        justify-content: center;
        max-width: 100%;
    }
}
@media(min-width: 768px) {
    .hero-buttons {
        gap: 1.5rem; 
        margin-bottom: 1rem;
    }
}
@media(min-width: 992px) { 
    .hero-buttons { 
        justify-content: flex-start;
        margin-bottom: 3rem; 
    } 
}

.hero-buttons .btn {
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    /* MOBILE: Botão ocupa largura disponível dentro do container */
    width: 100%; 
    box-shadow: 0 8px 15px -3px rgba(200, 101, 119, 0.15);
}
@media(min-width: 640px) {
    .hero-buttons .btn { width: auto; flex: 0 1 auto; }
}
@media(min-width: 768px) {
    .hero-buttons .btn {
        padding: 1rem 2.5rem;
        font-size: 0.75rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                    ABOUT                                   */
/* -------------------------------------------------------------------------- */
.about-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}
@media(min-width: 1024px) {
    .about-layout {
        flex-direction: row;
        gap: 6rem;
    }
}

.about-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}
@media(min-width: 1024px) {
    .about-image-wrapper { width: 41.66%; justify-content: flex-end; }
    .about-text { width: 58.33%; }
}

.image-frame {
    position: relative;
    max-width: 28rem;
    width: 100%;
}

.frame-border {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.4); /* Gold */
    border-radius: 1rem;
    z-index: 0;
}

.image-frame img {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    z-index: 1;
    filter: grayscale(10%);
    transition: filter 0.7s;
}
.image-frame img:hover { filter: grayscale(0%); }

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--coffee-light);
    font-weight: 300;
}
.text-content strong { font-weight: 700; color: var(--coffee); }

.credibility-grid {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media(min-width: 640px) { .credibility-grid { grid-template-columns: repeat(3, 1fr); } }

.credibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}
.icon-gold { width: 2rem; height: 2rem; color: var(--gold); }
.credibility-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--coffee-light);
}

/* Ajuste Mobile - Tamanho da Foto */
@media (max-width: 1023px) {
    .image-frame img {
    width: 100%;
    height: 475px;
}
    }

/* -------------------------------------------------------------------------- */
/*                                  SERVICES                                  */
/* -------------------------------------------------------------------------- */
.grid-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Gap menor no mobile */
}
/* TABLET: 3 colunas para aumentar densidade */
@media(min-width: 768px) { .grid-services { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media(min-width: 1024px) { .grid-services { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.service-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    border: 1px solid rgba(235, 194, 198, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: rgba(200, 101, 119, 0.5);
    transform: translateY(-5px);
}

.service-img {
    height: 12rem; /* MOBILE: Altura reduzida para não ocupar muito espaço */
    overflow: hidden;
    position: relative;
}
@media(min-width: 768px) { .service-img { height: 16rem; } }

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem; /* MOBILE: Padding reduzido */
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media(min-width: 768px) { .service-content { padding: 2rem; } }

.service-line {
    width: 3rem;
    height: 1px;
    background-color: var(--pink);
    margin-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.5s;
}
.service-card:hover .service-line { opacity: 1; }

.service-cat {
    color: var(--pink);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.service-content h3 {
    font-size: 1.25rem;
    color: var(--coffee);
    transition: color 0.3s;
}
.service-card:hover h3 { color: var(--pink); }

/* -------------------------------------------------------------------------- */
/*                                BEFORE AFTER (Editorial Premium Update)     */
/* -------------------------------------------------------------------------- */
.grid-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media(min-width: 768px) { .grid-results { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .grid-results { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }

/* Instrução de passar o mouse para ver o antes e depois */
.hover-instruction {
    display: none; /* Padrão: Invisível no mobile/tablet */
}

/* O Cartão em si: Estilo "Editorial" / Moldura Limpa */
.result-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05); 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(235, 194, 198, 0.1);
}

.result-card:hover {
    /* Borda Rosa e Sombra Elevada */
    border-color: rgba(200, 101, 119, 0.5); /* #C86577 50% */
    transform: translateY(-5px); 
    box-shadow: 0 20px 50px -10px rgba(62, 44, 38, 0.1);
}

/* 
   SINGLE FRAME OVERLAY (Sobreposição) & MOBILE SWIPE CONTAINER
*/
.result-images {
    position: relative;
    height: 28rem; 
    width: 100%;
    overflow: hidden;
}
@media(min-width: 768px) { .result-images { height: 28rem; } }

/* 
   ESTRUTURA HÍBRIDA (Wrappers de Estado) 
*/
.result-state {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Estilo da Imagem dentro do Estado */
.result-state img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease; 
}

.result-card:hover .result-state img {
    transform: scale(1.03);
}

/* 
   ETIQUETAS PREMIUM (Minimalist Editorial) 
*/
.clinical-tag {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 1);
    color: var(--coffee);
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 0.35rem 1rem;
    border-radius: 5px; 
    box-shadow: 0 4px 15px rgba(62, 44, 38, 0.08);
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 10;
}

.tag-after {
    color: var(--white);
    border-color: rgba(212, 175, 55, 0.2);
}

.tag-before {
    color: var(--pink); 
    background: rgba(255, 255, 255, 0.98);
}

/* 
   ETIQUETAS PREMIUM (Minimalist Editorial) 
   Posicionamento: Canto Superior Direito
*/
.clinical-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    bottom: auto;
    transform: none; /* Garante que não centralize */
    
    background: var(--pink);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 1);
    color: var(--coffee);
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 0.35rem 1rem;
    border-radius: 5px; 
    box-shadow: 0 4px 15px rgba(62, 44, 38, 0.08);
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 10;
}

.tag-after {
    color: var(--white);
    border-color: rgba(212, 175, 55, 0.2);
}

.tag-before {
    color: var(--pink); 
    background: rgba(255, 255, 255, 0.98);
}

/* ==========================================================================
   COMPORTAMENTO DESKTOP (Mouse/Hover)
   ========================================================================== */
@media (min-width: 1024px) {
    .hover-instruction {
        display: block;
        margin-top: 3rem; /* Espaçamento para separar do grid */
        
        /* Estilo Sofisticado e Discreto */
        font-family: var(--font-sans, sans-serif);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-weight: 500;
        color: var(--gray-text, #888);
        
        /* Centralização e Opacidade */
        text-align: center;
        opacity: 0.8;
    }

    /* Destaque sutil na palavra-chave */
    .hover-instruction .text-pink {
        font-weight: 700;
        color: var(--pink-color, #d48a8a); /* Fallback caso a variável não exista */
    }

    /* Destaque sutil na palavra-chave */
    .hover-instruction .text-pink {
        font-weight: 700;
    }
    
    .result-state {
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Estado Inicial: Depois (After) visível, Antes (Before) invisível mas no topo */
    .state-after {
        z-index: 1;
    }

    .state-before {
        z-index: 2;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    /* Hover Desktop */
    .result-card:hover .state-before {
        opacity: 1;
    }

    /* Badge Transition Desktop */
    .result-card:hover .tag-after {
        opacity: 0;
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   COMPORTAMENTO MOBILE (Touch/Swipe)
   ========================================================================== */
@media (max-width: 1023px) {
    .result-images {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* Esconde scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .result-images::-webkit-scrollbar {
        display: none;
    }

    .result-state {
        position: relative;
        flex: 0 0 100%; /* Cada slide ocupa 100% */
        scroll-snap-align: center;
        opacity: 1 !important; /* Garante visibilidade */
    }

    /* Ajuste tags para mobile: fixas dentro de cada slide */
    .clinical-tag {
        opacity: 1 !important;
        transform: none !important;
    }

    /* 
       SETA DE SCROLL DIREITA (Chevron Right)
       Visível apenas no primeiro slide (.state-after)
    */
    .state-after::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 20px; /* Margem direita elegante */
        width: 12px;
        height: 12px;
        
        /* Construção da Seta Minimalista */
        border-right: 2px solid rgba(255, 255, 255, 0.85);
        border-top: 2px solid rgba(255, 255, 255, 0.85);
        
        transform: translateY(-50%) rotate(45deg);
        z-index: 15;
        pointer-events: none;
        
        /* Filtro para garantir contraste sutil */
        filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
        
        /* Animação: Convite suave para o lado */
        animation: scrollArrowPulse 2.5s ease-in-out infinite;
    }

    @keyframes scrollArrowPulse {
        0%, 100% {
            opacity: 0.4;
            transform: translateY(-50%) rotate(45deg) translateX(0);
        }
        50% {
            opacity: 1;
            transform: translateY(-50%) rotate(45deg) translateX(5px);
        }
    }

    /* 
       SETA DE SCROLL ESQUERDA (Chevron Left)
       Visível apenas no segundo slide (.state-before)
    */

    .state-before::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 20px; /* Margem esquerda elegante */
        width: 12px;
        height: 12px;
        
        /* Mesmas propriedades de borda para consistência */
        border-right: 2px solid rgba(255, 255, 255, 0.85);
        border-top: 2px solid rgba(255, 255, 255, 0.85);
        
        /* Rotacionar para apontar para esquerda (225deg) */
        transform: translateY(-50%) rotate(225deg);
        z-index: 15;
        pointer-events: none;
        
        filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
        
        animation: scrollArrowPulseLeft 2.5s ease-in-out infinite;
    }

    @keyframes scrollArrowPulse {
        0%, 100% {
            opacity: 0.4;
            transform: translateY(-50%) rotate(45deg) translateX(0);
        }
        50% {
            opacity: 1;
            transform: translateY(-50%) rotate(45deg) translateX(4px);
        }
    }

    @keyframes scrollArrowPulseLeft {
        0%, 100% {
            opacity: 0.4;
            transform: translateY(-50%) rotate(225deg) translateX(0);
        }
        50% {
            opacity: 1;
            /* Move na direção da seta (esquerda/baixo no eixo local) */
            transform: translateY(-50%) rotate(225deg) translateX(4px);
        }
    }
}



/* Título e Texto abaixo da imagem */
.result-info {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    background-color: var(--white);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.result-title h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--coffee);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

/* Título fica Rosa no Hover do Card */
.result-card:hover .result-title h3 {
    color: var(--pink);
}

/* Linha decorativa muito sutil */
.result-info .line-gold {
    width: 2.5rem;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.3;
    transition: opacity 0.5s;
    margin: 0 auto;
}

/* Linha fica Rosa no Hover do Card */
.result-card:hover .line-gold {
    opacity: 1;
    background-color: var(--pink);
}


/* -------------------------------------------------------------------------- */
/*                                 BENEFITS                                   */
/* -------------------------------------------------------------------------- */
.grid-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
/* TABLET: 2 colunas para evitar cards muito altos/estreitos */
@media(min-width: 768px) { .grid-benefits { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
/* DESKTOP: 3 colunas */
@media(min-width: 1024px) { .grid-benefits { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
    background: var(--white);
    padding: 1.5rem; /* MOBILE: Compacto */
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(251, 220, 224, 0.5);
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* Garante altura igual na linha */
}
/* TABLET: Padding intermediário */
@media(min-width: 768px) { .benefit-card { padding: 2rem; } }
/* DESKTOP: Padding maior */
@media(min-width: 1024px) { .benefit-card { padding: 2.5rem; } }

.benefit-card:hover {
    border-color: var(--pink);
    box-shadow: 0 10px 15px -3px rgba(200, 101, 119, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 3.5rem; /* MOBILE: Ícone menor */
    height: 3.5rem;
    border-radius: 50%;
    background: var(--pink-bg-soft);
    color: var(--coffee);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200, 101, 119, 0.2);
    transition: all 0.5s;
}
@media(min-width: 768px) { .benefit-icon { width: 4.5rem; height: 4.5rem; } }
@media(min-width: 1024px) { .benefit-icon { width: 5rem; height: 5rem; } }

.benefit-icon svg { width: 1.75rem; height: 1.75rem; }
@media(min-width: 768px) { .benefit-icon svg { width: 2rem; height: 2rem; } }

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    border-color: var(--pink);
    color: var(--pink);
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--coffee);
    transition: color 0.3s;
}

@media(min-width: 768px) { .benefit-card h3 { font-size: 1.25rem; } }
.benefit-card:hover h3 { color: var(--pink); }

.benefit-card p {
    color: var(--coffee-light);
    font-weight: 300;
    font-size: 0.95rem;
}
/*.benefit-card:hover p { color: var(--pink); }*/

@media(min-width: 768px) { .benefit-card p { font-size: 1rem; } }

/* -------------------------------------------------------------------------- */
/*                               TESTIMONIALS                                 */
/* -------------------------------------------------------------------------- */
.grid-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
/* TABLET: 2 colunas para melhor leitura */
@media(min-width: 768px) { .grid-testimonials { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
/* DESKTOP: 3 colunas */
@media(min-width: 1024px) { .grid-testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
    background: var(--white);
    padding: 1.5rem; /* MOBILE: Compacto */
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    border: 1px solid rgba(235, 194, 198, 0.3);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
/* TABLET: Padding intermediário */
@media(min-width: 768px) { .testimonial-card { padding: 2rem; } }
/* DESKTOP: Padding maior */
@media(min-width: 1024px) { .testimonial-card { padding: 2.5rem; } }

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: rgba(212, 175, 55, 0.5); /* Gold hover */
}

.testimonial-header { text-align: center; }
@media(min-width: 768px) { .testimonial-header { text-align: left; } }

.stars {
    color: var(--gold);
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}
@media(min-width: 768px) { .stars { justify-content: flex-start; } }

.stars svg { width: 1.25rem; height: 1.25rem; }

.quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--coffee);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}
@media(min-width: 768px) { .quote { font-size: 1.125rem; } }

.author-line {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}
@media(min-width: 768px) { .author-line { justify-content: flex-start; } }

.gold-bar { width: 2rem; height: 1px; background: var(--gold); }

.author-name {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coffee);
}
@media(min-width: 768px) { .author-name { font-size: 0.875rem; } }


/* -------------------------------------------------------------------------- */
/*                                    CTA                                     */
/* -------------------------------------------------------------------------- */
/* NEW: Class for CTA container alignment */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title-large {
    font-size: 2rem;
    color: var(--white);
    line-height: 1.2;
}
@media(min-width: 768px) { .cta-title-large { font-size: 3rem; } }

.cta-subtitle {
    margin-top: 1.5rem;
    color: #EBC2C6;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
@media(min-width: 768px) { .cta-subtitle { font-size: 1.25rem; margin-top: 2rem; } }

.cta-btn-wrapper { margin-top: 2rem; }
@media(min-width: 768px) { .cta-btn-wrapper { margin-top: 3rem; } }

.btn.large { padding: 1.25rem 3rem; font-size: 0.875rem; }

/* Ajuste do botão CTA Grande no Mobile - Estética Minimalista/Editorial */
@media (max-width: 768px) {
    .btn.large {
        /* Padding vertical mais sutil, horizontal generoso para formato de pílula elegante */
        padding: 0.875rem 1.5rem !important; /* py-3.5 px-6 */
        
        /* Fonte menor e mais delicada, mas legível */
        font-size: 0.6875rem !important; /* 11px */
        
        /* Espaçamento largo entre letras para sofisticação */
        letter-spacing: 0.2em !important;
        
        /* Largura controlada, não total */
        width: 100%;
        max-width: 260px; /* Evita que pareça um bloco maciço */
        margin: 0 auto;
    }
}

/* -------------------------------------------------------------------------- */
/*                                    FAQ                                     */
/* -------------------------------------------------------------------------- */
.faq-wrapper {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid transparent;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.faq-item[open] {
    border-color: rgba(200, 101, 119, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.faq-item summary {
    list-style: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-question {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--coffee);
    transition: color 0.3s;
}
@media(min-width: 768px) { .faq-question { font-size: 1.125rem; } }

.faq-item[open] .faq-question { color: var(--pink); }

.icon-chevron {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--pink-light);
    color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.icon-chevron svg { width: 1.25rem; height: 1.25rem; }

.faq-item[open] .icon-chevron {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 2rem 1.5rem 2rem;
    animation: slideDown 0.3s ease-out;
}

.faq-line {
    width: 100%;
    height: 1px;
    background: rgba(200, 101, 119, 0.1);
    margin-bottom: 1rem;
}

.faq-content p {
    color: var(--coffee-light);
    font-weight: 300;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------------------- */
/*                                   FORM                                     */
/* -------------------------------------------------------------------------- */
.relative-overflow { position: relative; overflow: hidden; }

.form-bg-grad {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom left, rgba(200, 101, 119, 0.1), transparent);
    pointer-events: none;
}
.relative-z { position: relative; z-index: 10; }

.form-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}
@media(min-width: 1024px) {
    .form-layout {
        flex-direction: row;
        gap: 6rem;
    }
}

.form-text { width: 100%; }
@media(min-width: 1024px) { .form-text { width: 50%; } }

.form-title {
    font-size: 2rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
@media(min-width: 768px) { .form-title { font-size: 3rem; margin-bottom: 2rem; } }

.form-sep {
    width: 4rem;
    height: 1px;
    background-color: var(--pink);
    opacity: 0.6;
    margin-bottom: 2rem;
}

.form-desc {
    color: #EBC2C6;
    max-width: 32rem;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2rem;
}
@media(min-width: 768px) { .form-desc { font-size: 1.125rem; } }

.form-badges p {
    color: var(--gray-text);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: var(--pink);
    border-radius: 50%;
}

.form-box {
    width: 100%;
    background: var(--white);
    padding: 1.5rem; /* MOBILE */
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(200, 101, 119, 0.2);
    position: relative;
}
@media(min-width: 768px) { .form-box { padding: 2.5rem; } }
@media(min-width: 1024px) { .form-box { width: 50%; padding: 3rem; } }

.form-gold-detail {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 33%;
    height: 4px;
    background-color: var(--gold);
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
}

.form-box h3 {
    text-align: center;
    color: var(--coffee);
    font-size: 1.25rem;
    font-family: var(--font-serif);
    margin-bottom: 2rem;
}

.form-box input {
    width: 100%;
    padding: 1rem;
    background-color: var(--pink-bg-soft);
    border: 1px solid #EBC2C6;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    color: var(--coffee);
    outline: none;
    transition: border-color 0.3s;
}

.form-box input:focus {
    border-color: var(--pink);
}

.form-box button {
    width: 100%;
    background-color: var(--pink);
    color: var(--white);
    padding: 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.form-box button:hover {
    opacity: 0.9;
}

.privacy-text {
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-text);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

/* -------------------------------------------------------------------------- */
/*                                 LOCATION                                   */
/* -------------------------------------------------------------------------- */
.border-top { border-top: 1px solid rgba(235, 194, 198, 0.3); }

/* NEW: Class for Location container alignment */
.location-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-loc {
    display: inline-block;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transform: scale(1.25);
}
.icon-loc svg { width: 2rem; height: 2rem; }

.address-text {
    color: var(--coffee-light);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}
@media(min-width: 768px) { .address-text { font-size: 1.125rem; } }
.bold { font-weight: 500; color: var(--coffee); }

/* -------------------------------------------------------------------------- */
/*                                  FOOTER                                    */
/* -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--coffee);
    color: var(--white);
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--coffee);
}
@media(min-width: 768px) { .main-footer { padding-top: 5rem; } }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media(min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 5rem; } }

.footer-brand {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.footer-brand span { color: var(--pink); font-style: italic; }

.footer-sub {
    color: #AFA6A1;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.115rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: #AFA6A1;
    font-size: 0.875rem;
    font-weight: 300;
    max-width: 20rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #AFA6A1;
    border-radius: 50%;
    color: #AFA6A1;
}
.social-icons a svg { width: 1.25rem; height: 1.25rem; }
.social-icons a:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #AFA6A1;
    font-size: 0.875rem;
    font-weight: 300;
}
.footer-links a:hover { color: var(--pink); }

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-contact {
    color: var(--pink);
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.icon-contact svg { width: 1.25rem; height: 1.25rem; }

.contact-text a.phone {
    font-size: 1.125rem;
    color: #AFA6A1;
    font-weight: 300;
    display: block;
    line-height: 1.2;
}
.contact-text a:hover { color: var(--white); }

.contact-text .hours {
    color: var(--gray-text);
    font-size: 0.75rem;
}

.contact-item p, .contact-item a {
    color: #AFA6A1;
    font-size: 0.875rem;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid #544039;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.75rem;
    color: var(--coffee-light);
    font-weight: 300;
}
@media(min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-links { display: flex; gap: 1.5rem; }
.legal-links a { color: #AFA6A1; }
.legal-links a:hover { color: var(--pink); }

/* ==========================================================================
   NOVOS ESTILOS PARA PÁGINAS DE TEXTO/LEGAL
   ========================================================================== */

/* Espaçamento para Header Fixo em páginas sem Hero de imagem */
.page-header-spacing {
    padding-top: 8rem;
}
@media(min-width: 768px) { .page-header-spacing { padding-top: 10rem; } }

/* Container específico para leitura de documentos legais */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--coffee-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Tipografia do documento */
.legal-content h3 {
    font-family: var(--font-serif);
    color: var(--coffee);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.legal-content p {
    margin-bottom: 1.5rem;
    text-align: justify; /* Aparência mais formal */
}

.legal-content a {
    color: var(--pink);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.legal-content a:hover {
    border-color: var(--pink);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: none; /* Remove bullets padrão para usar custom se quiser, mas aqui vamos manter simples */
}

.legal-content li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    text-align: left;
}

.legal-footer-note {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(235, 194, 198, 0.5);
    font-size: 0.875rem;
    color: var(--gray-text);
    font-style: italic;
    text-align: center !important;
}

/* -------------------------------------------------------------------------- */
/*                       ESTILOS ESPECÍFICOS DA CAPTURA                       */
/* -------------------------------------------------------------------------- */

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: linear-gradient(to bottom right, #FFF5F7, #FFF);
}

.capture-main {
    flex: 1;
    display: flex;
    align-items: center; /* Centraliza verticalmente no desktop */
    padding: 3rem 0; /* Aumentado para compensar a falta de header e manter o respiro */
}

.capture-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media(min-width: 992px) {
    .capture-layout {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 5rem;
    }
}

/* --- Coluna de Texto --- */
.capture-text {
    text-align: center;
    max-width: 500px;
}

@media(min-width: 992px) {
    .capture-text {
        text-align: left;
        width: 50%;
    }
}

/* Badge específico da Captura (renomeado para evitar conflito com .badge global) */
.badge-capture {
    display: inline-block;
    background: var(--white);
    border: 1px solid rgba(235, 194, 198, 0.6);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
}

.capture-text h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--coffee);
}

@media(min-width: 768px) {
    .capture-text h1 { font-size: 3rem; }
}

.subtitle {
    font-size: 1.1rem;
    color: var(--coffee-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left; /* Lista sempre alinhada à esquerda para leitura */
}

@media(max-width: 991px) {
    .benefits-list {
        align-items: center; /* Centraliza o bloco no mobile, mas mantém itens alinhados */
        display: inline-flex; 
    }
    .benefit-item {
        width: 100%;
        justify-content: flex-start;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--pink);
    border-radius: 50%;
    color: var(--white);
    flex-shrink: 0;
}

.check-icon svg {
    width: 0.9rem;
    height: 0.9rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--coffee);
    font-weight: 500;
}

/* --- Coluna do Formulário --- */
.capture-form-wrapper {
    width: 100%;
    max-width: 450px;
}

@media(min-width: 992px) {
    .capture-form-wrapper {
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }
}

/* Form Box específico da Captura (renomeado para preservar visual exato) */
.form-box-capture {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(62, 44, 38, 0.1);
    border: 1px solid rgba(235, 194, 198, 0.4);
    position: relative;
    width: 100%;
}

@media(min-width: 768px) {
    .form-box-capture { padding: 3rem; }
}

.form-box-capture .form-gold-detail {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* Largura específica do cadastro.css */
    height: 4px;
    background-color: var(--gold);
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
}

.form-box-capture h3 {
    text-align: center;
    color: var(--coffee);
    font-size: 1.5rem;
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
}

.form-instruction {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Inputs da Captura */
.form-box-capture input {
    width: 100%;
    padding: 1rem;
    background-color: #FAFAFA; /* Diferente do global */
    border: 1px solid #EBC2C6;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    color: var(--coffee);
    outline: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-box-capture input:focus {
    background-color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(200, 101, 119, 0.1);
}

.form-box-capture input::placeholder {
    color: #C0B0AA;
}

/* Botão da Captura */
.form-box-capture button {
    width: 100%;
    background-color: var(--pink);
    color: var(--white);
    padding: 1.1rem; /* Padding específico */
    border: none;
    border-radius: 999px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px -5px rgba(200, 101, 119, 0.3);
    margin-top: 0.5rem;
}

.form-box-capture button:hover {
    opacity: 0.9;
}

.form-box-capture .privacy-text {
    text-align: center;
    font-size: 0.7rem;
    color: #AFA6A1;
    margin-top: 1.25rem;
    line-height: 1.4;
}

.form-box-capture .privacy-text a {
    color: var(--pink);
    text-decoration: underline;
}

.form-box-capture .privacy-text a:hover {
    color: var(--coffee);
}

/* --- Footer da Captura --- */
.capture-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(62, 44, 38, 0.05);
    background-color: var(--white);
    text-align: center;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 2rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 1;
}

.footer-logo-img {
    height: 3.5rem;
    width: auto;
    margin: 0 auto;
}

.location-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--coffee-light);
}

.loc-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
}

.location-info p {
    font-size: 0.85rem;
    font-weight: 500;
}

.copyright p {
    font-size: 0.75rem;
    color: #BDB3AF;
}

/* Mobile Adjustments for Capture Footer */
@media(max-width: 600px) {
    .location-info {
        flex-direction: column;
        gap: 0.25rem;
    }
    .location-info p {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .footer-logo-img {
        height: 2.8rem;
    }
}
/* AJUSTE — página cadastro efetuado */

/* Centraliza o card na página, substituindo layouts de colunas */
.centered-wrapper {
    width: 100%;
    max-width: 500px; /* Card levemente mais largo para elegância */
    margin: 0 auto;
}

/* Estilização do Card de Sucesso */
.success-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px -15px rgba(62, 44, 38, 0.15); /* Sombra mais difusa */
    border: 1px solid rgba(235, 194, 198, 0.4);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(min-width: 768px) {
    .success-card { padding: 4rem 3rem; }
}

/* Ícone de Sucesso */
.success-icon-wrapper {
    width: 5rem;
    height: 5rem;
    background-color: var(--pink-bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(200, 101, 119, 0.2);
    color: var(--gold); /* Ícone Dourado */
}
.success-icon-wrapper svg {
    width: 2.5rem;
    height: 2.5rem;
}

/* Tipografia Específica do Card */
.success-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--coffee);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--coffee-light);
    margin-bottom: 1rem;
    font-weight: 400;
}

.btn-full-mobile {
    width: 100%;
}
@media(min-width: 480px) {
    .btn-full-mobile { width: auto; min-width: 200px; }
}