/* ============================================================
   CLÍNICA CASULO — TEMA COMPARTILHADO DO SITE PÚBLICO
   Paleta sage/bege/dourado · Playfair Display + Inter
   Usado por: index, sobre, contato, psicoterapia, avaliacao,
   idosos, funcionalidades
   ============================================================ */

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

:root {
    --sage-dark: #3d5a4a;
    --sage: #5a7d6a;
    --sage-light: #a8c5b5;
    --beige: #f5f1ea;
    --beige-dark: #e8e0d2;
    --gold: #c9a961;
    --dark: #1f2e26;
    --text: #2d3b33;
    --text-light: #6b7a72;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--beige);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Textura de linho sutil em toda a página */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--dark); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.icon-svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; fill: currentColor; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(245, 241, 234, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.4s;
}
.logo span { color: var(--gold); }
.navbar.scrolled .logo { color: var(--dark); }

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}
.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}
.navbar.scrolled .nav-menu a { color: var(--text); }
.nav-menu a.active { color: var(--gold); }
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--gold); }
.nav-menu a.btn-nav::after, .nav-menu a.btn-nav-outline::after { display: none; }

.btn-nav {
    background: var(--gold);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(201,169,97,0.4); }
.btn-nav-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.navbar.scrolled .btn-nav-outline { border-color: var(--gold); color: var(--sage-dark) !important; }
.btn-nav-outline:hover { background: rgba(201,169,97,0.15); transform: translateY(-2px); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 6px;
}
.navbar.scrolled .menu-toggle { color: var(--dark); }

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        right: 20px;
        left: 20px;
        background: rgba(245,241,234,0.98);
        padding: 24px;
        border-radius: 16px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        gap: 18px;
        align-items: stretch;
        text-align: center;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { color: var(--text) !important; }
    .nav-menu .btn-nav, .nav-menu .btn-nav-outline { color: var(--white) !important; }
    .nav-menu .btn-nav-outline { background: var(--sage); border-color: var(--sage); }
}

/* ========== BOTÕES ========== */
.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(201,169,97,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201,169,97,0.55); }
.btn-secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
/* Botão sólido sobre fundo claro (CTAs de conteúdo) */
.btn-solid {
    background: var(--sage-dark);
    color: var(--white);
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(61,90,74,0.25);
}
.btn-solid:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201,169,97,0.45); }
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #20ba5a; transform: translateY(-3px); }

/* ========== HERO (PÁGINA INTERNA, ESCURO) ========== */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 180px 0 140px;
    color: var(--white);
}
.page-hero--tall { min-height: 100vh; padding-bottom: 160px; }
.page-hero-bg {
    position: absolute;
    inset: -10% 0;
    background-size: cover;
    background-position: center 30%;
    will-change: transform;
    z-index: -3;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31,46,38,0.82) 0%, rgba(61,90,74,0.66) 60%, rgba(31,46,38,0.9) 100%);
    z-index: -2;
}
.page-hero .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--beige);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 500;
    max-width: 760px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.page-hero .lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Variante centralizada (home) */
.page-hero--center .container { max-width: 760px; text-align: center; }
.page-hero--center h1, .page-hero--center .lead { margin-left: auto; margin-right: auto; }
.page-hero--center .hero-buttons { justify-content: center; }
.hero-clinic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    margin: 4px 0 36px;
    display: inline-block;
    text-align: left;
}

/* Bokeh e curvas (compartilhados com o hero da home) */
.bokeh {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,241,234,0.45) 0%, rgba(245,241,234,0.15) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
    will-change: transform, opacity;
}
.bokeh-1 { width: 300px; height: 300px; top: 10%; left: 5%; }
.bokeh-2 { width: 200px; height: 200px; top: 60%; right: 10%; animation-delay: 2s; }
.bokeh-3 { width: 250px; height: 250px; bottom: 10%; left: 40%; animation-delay: 4s; }
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-40px) scale(1.1); opacity: 0.8; }
}
.section-curve { position: absolute; bottom: 0; left: 0; width: 100%; z-index: 1; pointer-events: none; display: block; }

/* ========== SEÇÕES ========== */
.section { position: relative; padding: 120px 0; z-index: 2; }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.section-label {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }

.bg-beige { background: var(--beige); }
.bg-white { background: var(--white); }
.bg-gradient { background: linear-gradient(180deg, var(--beige) 0%, var(--beige-dark) 100%); }

.dotted::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(61,90,74,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
}

.moment-link {
    color: var(--sage-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s, color 0.3s;
}
.moment-link:hover { gap: 12px; color: var(--gold); }

/* Cards claros */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}
.card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(61,90,74,0.08);
    box-shadow: 0 4px 20px rgba(31,46,38,0.04);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--sage));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(31,46,38,0.12); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { color: var(--text-light); margin-bottom: 20px; }

/* ========== SEÇÃO GLASS (FUNDO ESCURO) ========== */
.glass-section { position: relative; padding: 140px 0; overflow: hidden; }
.glass-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: -2;
}
.glass-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(31,46,38,0.9) 0%, rgba(61,90,74,0.93) 100%);
    z-index: -1;
}
.glass-section .section-label { color: var(--gold); }
.glass-section .section-header h2 { color: var(--white); }
.glass-section .section-header p { color: rgba(255,255,255,0.75); }
.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
    animation: float 12s ease-in-out infinite;
    will-change: transform, opacity;
}
.orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, var(--gold) 0%, rgba(201,169,97,0.3) 45%, transparent 70%); top: -100px; left: -100px; }
.orb-2 { width: 350px; height: 350px; background: radial-gradient(circle, var(--sage-light) 0%, rgba(168,197,181,0.3) 45%, transparent 70%); bottom: -80px; right: -80px; animation-delay: 3s; }
.orb-3 { width: 280px; height: 280px; background: radial-gradient(circle, #8fb09a 0%, rgba(143,176,154,0.3) 45%, transparent 70%); top: 40%; left: 50%; animation-delay: 6s; }

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}
.glass-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 40px 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s;
}
.glass-card:hover::before { left: 100%; }
.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.glass-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.glass-card p { color: rgba(255,255,255,0.82); margin-bottom: 24px; font-size: 0.98rem; flex-grow: 1; }
.glass-card .moment-link { color: var(--gold); margin-top: auto; }
.glass-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--gold), #e0c886);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(201,169,97,0.4);
}

/* ========== SOBRE (FOTO + BOKEH + FORMAS) ========== */
.about-section { position: relative; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; z-index: 0; opacity: 0.4; }
.shape-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--sage-light), transparent 70%);
    top: 10%; right: -100px;
    animation: pulse 8s ease-in-out infinite;
}
.shape-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    bottom: 5%; left: -80px;
    animation: pulse 10s ease-in-out infinite 2s;
    opacity: 0.25;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.5; }
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-grid.reverse { grid-template-columns: 1.2fr 1fr; }
.about-image-wrap { position: relative; max-width: 460px; margin: 0 auto; }
.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: -20px -20px 20px 20px;
    border: 2px solid var(--gold);
    border-radius: 24px;
    z-index: -1;
}
.about-image-wrap::after {
    content: '';
    position: absolute;
    top: 30px; left: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, var(--gold) 0%, rgba(201,169,97,0.3) 40%, transparent 70%);
    opacity: 0.5;
}
.about-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(31,46,38,0.25);
    display: block;
}
.about-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.about-role {
    color: var(--gold);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 24px;
}
.about-content p { color: var(--text-light); margin-bottom: 24px; font-size: 1.02rem; }
.about-credentials { list-style: none; margin-top: 24px; }
.about-credentials li {
    padding: 12px 0 12px 36px;
    position: relative;
    color: var(--text);
    border-bottom: 1px solid rgba(61,90,74,0.1);
}
.about-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* ========== TIMELINE (PROCESSO) ========== */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}
.timeline-step {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(61,90,74,0.08);
    box-shadow: 0 4px 20px rgba(31,46,38,0.04);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    height: 100%;
}
.timeline-step:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(31,46,38,0.12); }
.timeline-num {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(61,90,74,0.3);
}
.timeline-step.gold .timeline-num { background: linear-gradient(135deg, var(--gold), #e0c886); box-shadow: 0 10px 25px rgba(201,169,97,0.4); }
.timeline-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.timeline-step p { color: var(--text-light); font-size: 0.95rem; }

/* ========== LISTA DE SINAIS / DESTAQUE ========== */
.highlight-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 24px 60px rgba(31,46,38,0.1);
    border: 1px solid rgba(61,90,74,0.08);
}
.signal-list { list-style: none; }
.signal-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(61,90,74,0.08);
    color: var(--text);
    font-weight: 500;
}
.signal-list li:last-child { border-bottom: none; }
.signal-list li::before {
    content: '';
    width: 10px; height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.pull-quote {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    padding: 28px 32px;
    margin-top: 28px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(31,46,38,0.06);
}
.pull-quote cite { display: block; margin-top: 12px; font-size: 0.85rem; font-style: normal; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }

/* ========== CONTATO ========== */
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(61,90,74,0.1);
    transition: all 0.3s;
}
.contact-method:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(31,46,38,0.08); transform: translateX(4px); }
.contact-method .cm-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.contact-method strong { display: block; color: var(--dark); font-size: 0.95rem; }
.contact-method span { color: var(--text-light); font-size: 0.85rem; }
.map-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(31,46,38,0.2);
    border: 1px solid rgba(61,90,74,0.1);
    height: 100%;
    min-height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ========== GRID DE LOGOS / INTEGRAÇÕES ========== */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}
.logo-tile {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(61,90,74,0.08);
    transition: all 0.3s;
}
.logo-tile:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(31,46,38,0.08); }
.logo-tile .lt-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.logo-tile strong { display: block; color: var(--dark); font-size: 0.95rem; }
.logo-tile span { color: var(--text-light); font-size: 0.8rem; }

/* ========== FAQ ========== */
.faq-section { background: var(--white); position: relative; }
.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(61,90,74,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.faq-list { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.faq-item {
    background: var(--beige);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(61,90,74,0.08);
    transition: all 0.3s;
}
.faq-item:hover { box-shadow: 0 10px 30px rgba(31,46,38,0.08); }
.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
    user-select: none;
    gap: 16px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
}
.faq-question .icon {
    width: 32px; height: 32px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); background: var(--gold); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
    color: var(--text-light);
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 28px 22px; }

/* ========== CTA ========== */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}
.cta-section.dark {
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--dark) 100%);
    color: var(--white);
}
.cta-section.dark h2 { color: var(--white); }
.cta-section.dark h2 em { color: var(--gold); font-style: italic; }
.cta-section.dark p { color: rgba(255,255,255,0.8); }
.cta-section .container { position: relative; z-index: 2; max-width: 760px; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-section p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 36px; }

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #151f1a 100%);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,169,97,0.12), transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.footer h4 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.footer-brand p { font-size: 0.95rem; margin-top: 16px; max-width: 360px; }
.footer-info p, .footer-info a { font-size: 0.95rem; margin-bottom: 10px; display: block; transition: color 0.3s; }
.footer-info a:hover { color: var(--gold); }
.footer-info .fi { color: var(--gold); margin-right: 8px; display: inline-block; width: 18px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 24px; position: relative; z-index: 2; }
.footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 2;
}

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s;
    animation: pulseBtn 2s infinite;
}
.whatsapp-float .icon-svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 8px 25px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== MOVIMENTO REDUZIDO ========== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .bokeh, .orb, .shape, .whatsapp-float { animation: none; }
    .page-hero-bg { transform: none !important; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ========== RESPONSIVO ========== */
@media (max-width: 900px) {
    .about-grid, .about-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .section, .cta-section { padding: 80px 0; }
    .glass-section { padding: 100px 0; }
    .page-hero { padding: 150px 0 110px; }
    .contact-split { grid-template-columns: 1fr !important; }
    .map-wrap { min-height: 320px; }
}
@media (max-width: 600px) {
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { justify-content: center; }
    .about-image { height: 420px; }
}
