/* IMPORTAÇÃO DE FONTES */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* VARIÁVEIS DE DESIGN SYSTEM */
:root {
    --olive-dark: #2d3d2e;
    --olive-medium: #3c4f3d;
    --olive-light: #526653;
    --olive-extra-light: #eef2ee;
    --beige-bg: #faf7f2;
    --beige-card: #f1e7da;
    --beige-card-hover: #e8dccb;
    --gold-accent: #bda37e;
    --gold-hover: #a88d67;
    --text-dark: #233024;
    --text-muted: #647565;
    --white: #ffffff;
    
    /* Fontes */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* RESET E ESTILOS BÁSICOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px; /* Aumentado globalmente de 16px para 18px */
}

body {
    font-family: var(--font-sans);
    background-color: var(--beige-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* TIPOGRAFIA UTILITÁRIA */
.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

.gold {
    color: var(--gold-accent);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--olive-light);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.gold-tag {
    color: var(--gold-accent);
}

/* ANIMAÇÕES NO SCROLL */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* BOTÕES ESTILO FRAMER */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-color: #fcfcfc;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--olive-dark);
    color: var(--white);
    transition: var(--transition-smooth);
}

.btn-primary:hover .arrow-circle {
    transform: rotate(45deg);
    background-color: var(--gold-accent);
}

.arrow-circle svg, .arrow-circle-small svg {
    width: 14px;
    height: 14px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background-color: var(--olive-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    gap: 16px;
    transition: var(--transition-smooth);
    border: none;
    width: fit-content;
}

.btn-secondary:hover {
    background-color: var(--olive-medium);
    transform: translateY(-2px);
}

.arrow-circle-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--olive-dark);
    transition: var(--transition-smooth);
}

.btn-secondary:hover .arrow-circle-small {
    transform: rotate(45deg);
    background-color: var(--gold-accent);
    color: var(--white);
}

/* HEADER / CABEÇALHO */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 247, 242, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 61, 46, 0.06);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-container {
    width: 38px;
    height: 38px;
    color: var(--gold-accent);
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--olive-dark);
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.logo-crp {
    font-size: 0.6rem;
    font-weight: 500;
    opacity: 0.8;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--olive-dark);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--gold-accent);
    transition: var(--transition-smooth);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--olive-dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-btn:hover {
    background-color: var(--gold-accent);
    transform: translateY(-1px);
}

/* FLOATING WHATSAPP */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #20ba59;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.wa-icon {
    width: 32px;
    height: 32px;
}

/* SECTION 1: HERO */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--olive-dark);
    color: var(--white);
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center; /* Ajusta o enquadramento da psicóloga no desktop */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--olive-dark) 0%, 
        rgba(45, 61, 46, 0.95) 35%, 
        rgba(45, 61, 46, 0.8) 55%, 
        rgba(45, 61, 46, 0.3) 75%, 
        rgba(45, 61, 46, 0.1) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-cta-box {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-detail {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold-accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s ease infinite;
}

.scroll-arrow {
    width: 16px;
    height: 16px;
    animation: bounce 1.6s ease infinite;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* TICKER BAR (TRANSITION) */
.ticker-bar {
    background-color: #3b4e3c;
    color: var(--white);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ticker-track {
    display: flex;
    width: max-content;
}

.ticker-content {
    display: flex;
    animation: marquee 35s linear infinite;
}

.ticker-item {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    padding-right: 48px;
}

.ticker-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M 50,80 C 35,80 20,70 20,50 C 20,32 35,32 50,42 M 50,80 C 65,80 80,70 80,50 C 80,32 65,32 50,42 M 30,45 C 30,68 50,70 50,70 C 50,70 70,68 70,45 M 50,30 L 50,85" stroke="%23bda37e" stroke-width="3" stroke-linecap="round" fill="none" /></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* SECTION 2: INTRODUÇÃO */
.intro-section {
    padding: 100px 0;
    position: relative;
}

.intro-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px; /* Reduzido o espaço para aproximar conteúdo e imagem */
}

.intro-title {
    font-family: var(--font-serif);
    font-size: 3.4rem; /* Aumentado tamanho do título */
    font-weight: 400;
    line-height: 1.15;
    color: var(--olive-dark);
    margin-bottom: 32px;
}

.intro-text {
    font-size: 1.15rem; /* Aumentado tamanho do texto */
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 300;
    max-width: 540px;
}

.intro-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.intro-image {
    width: 100%;
    max-width: 520px; /* Aumentado tamanho da imagem */
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    z-index: 2;
}

.watermark-logo-container {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    z-index: 1;
    pointer-events: none;
}

.watermark-svg {
    width: 100%;
    height: 100%;
}

/* SECTION 3: CENÁRIOS COMUNS */
.scenarios-section {
    padding: 100px 0;
    background-color: var(--beige-bg);
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.scenarios-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--olive-dark);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    z-index: 2;
    position: relative;
}

.scenario-card {
    background-color: var(--beige-card);
    padding: 32px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.scenario-card:hover {
    background-color: var(--beige-card-hover);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    color: var(--olive-dark);
    padding: 10px;
    opacity: 0.9;
}

.card-icon-box svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--olive-dark);
    line-height: 1.3;
    margin-bottom: 0;
}

.card-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Linha de Ícones Decorativos */
.decorative-icons-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    opacity: 0.2;
    pointer-events: none;
    position: absolute;
    left: 0;
}

.decorative-icons-row.top {
    top: 30px;
}

.decorative-icons-row.bottom {
    bottom: 30px;
}

.icons-track {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.dec-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Inline SVG masks para ícones decorativos */
.dec-icon.crying {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%232d3d2e" stroke-width="1.5" xmlns="http://www.w3.org/2000/svg"><path d="M18 21a6 6 0 0 0-12 0"/><circle cx="12" cy="10" r="4"/><path d="M12 2v2"/></svg>');
}
.dec-icon.head-heart {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%232d3d2e" stroke-width="1.5" xmlns="http://www.w3.org/2000/svg"><path d="M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18z"/><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"/></svg>');
}
.dec-icon.head-storm {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%232d3d2e" stroke-width="1.5" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="9"/><path d="M9 16c1.5 1.5 4.5 1.5 6 0"/></svg>');
}
.dec-icon.links {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%232d3d2e" stroke-width="1.5" xmlns="http://www.w3.org/2000/svg"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/></svg>');
}
.dec-icon.hands {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%232d3d2e" stroke-width="1.5" xmlns="http://www.w3.org/2000/svg"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><path d="M8 11h8"/></svg>');
}

/* SECTION 4: TRANSFORMAÇÃO REAL */
.transformation-section {
    background-color: var(--olive-dark);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.curve-divider {
    position: absolute;
    width: 100%;
    left: 0;
    height: 80px;
    z-index: 10;
}

.curve-divider.top {
    top: -79px;
}

.curve-divider.bottom {
    bottom: -79px;
}

.transformation-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.transformation-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 32px;
}

.transformation-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.75;
}

.highlight-underline {
    position: relative;
    font-weight: 500;
    color: var(--white);
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--gold-accent);
}

.transformation-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.transformation-image {
    width: 100%;
    border-radius: 24px;
    opacity: 0.9;
}

.transformation-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 61, 46, 0.35); /* filtro oliva escuro */
    pointer-events: none;
}

/* SECTION 5: SOBRE MIM */
.about-section {
    padding: 140px 0 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--olive-dark);
    margin-bottom: 32px;
}

.about-text-lead {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--olive-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.7;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* SECTION 6: COMO FUNCIONA / SMARTPHONE MOCKUP */
.process-section {
    padding: 100px 0;
    background-color: var(--beige-bg);
}

.process-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.process-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--olive-dark);
    margin-bottom: 32px;
}

.process-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.7;
}

/* Celular Mockup CSS */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
}

.phone-container {
    width: 320px;
    height: 640px;
    background-color: #0c1c13;
    border: 10px solid #eef2ee;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-speaker {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #333;
    border-radius: 2px;
    z-index: 20;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #e5ddd5;
}

.whatsapp-screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION 7: PRÓXIMO PASSO / AGENDAMENTO */
.booking-section {
    padding: 100px 0;
}

.booking-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--olive-dark);
}

.booking-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.booking-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(45, 61, 46, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.booking-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.booking-image-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.booking-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.booking-card:hover .booking-card-image {
    transform: scale(1.04);
}

.booking-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.booking-card-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--olive-dark);
    margin-bottom: 16px;
}

.booking-card-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.65;
    flex-grow: 1;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background-color: var(--beige-bg);
}

.faq-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--olive-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(45, 61, 46, 0.04);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--olive-dark);
    padding-right: 20px;
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--olive-extra-light);
    color: var(--olive-dark);
    font-weight: bold;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.faq-icon {
    transition: var(--transition-smooth);
    display: inline-block;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 32px;
}

.faq-content p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dark);
}

.faq-item.active {
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

/* GREEN DIVIDER BAND */
.center-logo-band {
    background-color: var(--olive-dark);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.center-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-svg-white {
    width: 54px;
    height: 54px;
    color: var(--white);
    margin-bottom: 16px;
}

.band-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.band-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
    line-height: 1.2;
}

.band-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
}

/* FOOTER */
.main-footer {
    background-color: var(--beige-bg);
    border-top: 1px solid rgba(45, 61, 46, 0.06);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 320px;
}

.footer-links-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
    width: fit-content;
}

.footer-link:hover {
    color: var(--gold-accent);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 300;
}

.footer-contact-item strong {
    font-weight: 600;
}

.footer-bottom {
    background-color: var(--white);
    padding: 30px 0;
    border-top: 1px solid rgba(45, 61, 46, 0.04);
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.legal-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--olive-light);
}

.legal-link:hover {
    color: var(--gold-accent);
}

.legal-separator {
    display: none;
}

.ethical-alert {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.4;
}

/* RESPONSIVIDADE (MOBILE-FIRST BREAKPOINTS) */

@media (max-width: 1024px) {
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-bg-image {
        object-position: 65% center;
    }
    
    .hero-bg-overlay {
        background: linear-gradient(180deg, 
            rgba(45, 61, 46, 0.92) 0%, 
            rgba(45, 61, 46, 0.88) 50%, 
            rgba(45, 61, 46, 0.92) 100%);
    }
    
    .intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .intro-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .intro-image-wrapper {
        order: 2;
    }
    
    .transformation-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .transformation-image-wrapper {
        order: 2;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-wrapper {
        order: 2;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .process-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup-wrapper {
        order: 2;
    }
    
    .booking-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-card-content {
        padding: 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Em LPs mobile de alta conversão, escondemos menu para focar na ação */
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .scenarios-title,
    .transformation-title,
    .about-title,
    .process-title,
    .booking-title,
    .faq-title {
        font-size: 2.2rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .faq-header {
        padding: 20px;
    }
    
    .faq-content {
        padding: 0 20px;
    }
    
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .wa-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero-cta-box {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* DESKTOP DE ALTA RESOLUÇÃO (1920px) */
@media (min-width: 1600px) {
    .container, .hero-container {
        max-width: 1400px;
    }
    .hero-title {
        font-size: 4.8rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 620px;
    }
}
