/* ========================================
   INTERIM — Cinematic Design System v2
   Deep Green + Gold + Cream
   Cormorant Garamond + Inter
   ======================================== */

@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&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Dark palette — clareada discretamente para mais luminosidade */
    --deep: #0a130d;
    --dark: #0f1f16;
    --mid: #14271c;
    --surface: #1a2e23;
    /* Dourado #C6A46A conforme guia de identidade */
    --gold: #c6a46a;
    --gold-light: #ddc189;
    --gold-muted: #a88650;
    --gold-rgb: 198, 164, 106;
    --cream: #efe9dd;
    --cream-muted: #d3cbb7;
    --text: #ddd7cb;
    --text-dim: #9a9384;
    /* Tema claro — off-white quente (guia: nao usar branco puro) */
    --light-bg: #f4efe5;
    --light-bg-alt: #ece5d6;
    --light-surface: #f8f4ec;
    --light-heading: #1f2a23;
    --light-text: #333333;
    --light-text-dim: #6b6557;
    --light-line: rgba(31, 42, 35, 0.12);
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --sans: 'Helvetica Neue', 'Inter', Helvetica, Arial, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    background: var(--deep);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* === GRAIN OVERLAY (cinematic texture) === */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === CURSOR GLOW === */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
}
@media (hover: hover) { .cursor-glow { opacity: 1; } }

/* === LAYOUT === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 0;
    transition: all 0.6s var(--ease);
}
.nav.scrolled {
    background: rgba(8, 15, 11, 0.92);
    backdrop-filter: blur(24px) saturate(1.2);
    padding: 14px 0;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.06);
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; align-items: baseline; gap: 10px; }
.logo-mark {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: -1px;
}
.logo-text {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.5;
}
.nav-links { display: flex; gap: 36px; }
.nav-link {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
    opacity: 0.6;
    transition: all 0.5s var(--ease);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all 0.5s var(--ease);
    transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active { opacity: 1; color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--cream); transition: all 0.4s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.mobile-menu {
    position: fixed; inset: 0;
    background: rgba(8, 15, 11, 0.98);
    backdrop-filter: blur(40px);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: all 0.7s var(--ease);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-inner { text-align: center; }
.mobile-link {
    display: block;
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--cream);
    padding: 14px 0;
    opacity: 0.5;
    transition: all 0.4s var(--ease);
    letter-spacing: 1px;
}
.mobile-link:hover { opacity: 1; color: var(--gold); letter-spacing: 3px; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
}

/* ========================================
   HERO — Full Cinematic
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img,
.hero-bg-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    /* vídeo do oceano mais perceptível, mantendo identidade escura */
    filter: brightness(0.62) saturate(0.92);
}
.hero-bg-img {
    transform: scale(1.08);
    transition: transform 12s var(--ease-out);
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(10,19,13,0.32) 55%, rgba(10,19,13,0.78) 100%),
        linear-gradient(to bottom, rgba(10,19,13,0.32) 0%, transparent 35%, rgba(10,19,13,0.88) 100%);
}
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(var(--gold-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(21, 37, 28, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, var(--deep) 0%, var(--dark) 50%, var(--deep) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-content {
    position: relative; z-index: 1;
    text-align: center;
    padding: 0 32px;
    max-width: 800px;
}
.hero-line {
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(var(--gold-rgb), 0.5));
    margin: 0 auto 48px;
}
.hero-title { font-family: var(--serif); font-weight: 300; margin-bottom: 12px; }
.hero-title-main {
    display: block;
    font-size: clamp(64px, 12vw, 140px);
    color: var(--cream);
    line-height: 0.9;
    letter-spacing: -2px;
}
.hero-tagline {
    font-family: var(--serif);
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.9;
}
.hero-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--cream-muted);
    letter-spacing: 1px;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.7;
}
.hero-title-accent {
    color: var(--gold);
}
.hero-divider {
    width: 48px; height: 1px;
    background: rgba(var(--gold-rgb), 0.4);
    margin: 0 auto 36px;
    transform-origin: center;
}
.hero-credit {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 56px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 48px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 1;
}
.hero-scroll span { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-dim); }
.hero-scroll svg { color: var(--text-dim); animation: scrollBounce 2.5s ease-in-out infinite; }
@keyframes scrollBounce {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(8px); }
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(var(--gold-rgb), 0.6), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 36px;
    font-size: 11px; font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.5s var(--ease);
    position: relative;
}
.btn-gold { background: var(--gold); color: var(--deep); }
.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 12px 40px rgba(var(--gold-rgb), 0.25);
    transform: translateY(-2px);
}
.btn-outline-light { border: 1px solid rgba(255,255,255,0.15); color: var(--cream-muted); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold { border: 1px solid rgba(var(--gold-rgb), 0.4); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--deep); }
.btn-sm { padding: 10px 20px; font-size: 10px; }
.btn-full { width: 100%; justify-content: center; }
.btn-text-arrow {
    font-size: 13px; color: var(--gold);
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.5s var(--ease);
    letter-spacing: 1px;
}
.btn-text-arrow:hover { gap: 16px; }

/* ========================================
   TYPOGRAPHY & SECTIONS
   ======================================== */
.section-label {
    display: inline-block;
    font-size: 10px; font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 20px;
}
.section-label-link:hover { color: var(--gold); }
.section-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}
.section-text {
    font-size: 14px; line-height: 1.9;
    color: var(--text); margin-bottom: 16px;
    opacity: 0.75;
}
.section-desc {
    font-size: 14px; color: var(--text-dim);
    max-width: 520px; margin: 0 auto;
    line-height: 1.8;
}
.section-header-center { text-align: center; margin-bottom: 72px; }
.section-cta { text-align: center; margin-top: 56px; }
.lead-text {
    font-family: var(--serif);
    font-size: clamp(19px, 2.5vw, 24px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--cream);
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

/* === QUOTE === */
.section-quote { padding: 160px 0; background: var(--deep); }
.cinematic-quote {
    font-family: var(--serif);
    font-size: clamp(26px, 4.5vw, 44px);
    font-weight: 300;
    font-style: italic;
    text-align: center;
    color: var(--cream);
    line-height: 1.4;
    letter-spacing: -0.3px;
}
.quote-mark { color: var(--gold-muted); font-size: 1.2em; }

/* === ABOUT PREVIEW === */
.section-dark { padding: 140px 0; background: var(--dark); }
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.image-frame { position: relative; overflow: hidden; }
.image-frame img {
    width: 100%; height: 620px;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.9);
    transition: all 1.2s var(--ease);
}
.image-frame:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.02); }
.image-frame-border {
    position: absolute; inset: 20px;
    border: 1px solid rgba(var(--gold-rgb), 0.15);
    pointer-events: none;
    transition: all 0.8s var(--ease);
}
.image-frame:hover .image-frame-border { inset: 24px; border-color: rgba(var(--gold-rgb), 0.3); }

/* === SERVICES === */
.section-services { padding: 140px 0; background: var(--deep); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.service-card {
    padding: 56px 40px;
    background: var(--dark);
    transition: all 0.6s var(--ease);
    display: block;
    position: relative;
}
.service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 40px; right: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(var(--gold-rgb), 0.2), transparent);
}
.service-card:hover { background: var(--surface); }
.service-icon { width: 36px; height: 36px; color: var(--gold-muted); margin-bottom: 28px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
    font-family: var(--serif);
    font-size: 24px; font-weight: 300;
    color: var(--cream); margin-bottom: 14px;
}
.service-card p { font-size: 13px; color: var(--text-dim); line-height: 1.8; }

/* === BLOG / CADERNO === */
.section-caderno { padding: 140px 0; background: var(--dark); }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.blog-card {
    display: block; overflow: hidden;
    position: relative;
    background: var(--deep);
    transition: all 0.6s var(--ease);
}
.blog-card:hover { background: var(--mid); }
.blog-card-image { height: 260px; overflow: hidden; position: relative; }
.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.8);
    transition: all 1s var(--ease);
}
.blog-card:hover .blog-card-image img { filter: grayscale(0%) brightness(0.9); transform: scale(1.05); }
.blog-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--deep) 0%, transparent 70%);
}
.blog-card-content { padding: 28px 32px; }
.blog-card-cat {
    font-size: 9px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold-muted); margin-bottom: 10px; display: block;
}
.blog-card-content h3 {
    font-family: var(--serif);
    font-size: 22px; font-weight: 300;
    color: var(--cream); margin-bottom: 10px; line-height: 1.3;
}
.blog-card-content p { font-size: 13px; color: var(--text-dim); line-height: 1.7; }

/* === CATEGORIES === */
.section-categories { padding: 140px 0; background: var(--deep); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.category-card { position: relative; overflow: hidden; display: block; height: 320px; }
.category-image { position: absolute; inset: 0; }
.category-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(0.6);
    transition: all 1.2s var(--ease);
}
.category-card:hover .category-image img { filter: grayscale(0%) brightness(0.5); transform: scale(1.06); }
.category-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,15,11,0.95) 0%, rgba(8,15,11,0.2) 100%);
}
.category-card h3 {
    position: absolute; bottom: 28px; left: 28px; right: 28px;
    font-family: var(--serif); font-size: 22px; font-weight: 300;
    color: var(--cream); z-index: 1;
    transition: all 0.5s var(--ease);
}
.category-card:hover h3 { color: var(--gold); transform: translateY(-4px); }

/* === FINAL QUOTE === */
.section-final-quote { padding: 160px 0; background: var(--dark); text-align: center; }
.final-cta { margin-top: 56px; }

/* ========================================
   PAGE HEROES
   ======================================== */
.page-hero {
    position: relative; height: 70vh; min-height: 500px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.page-hero-small { height: 50vh; min-height: 380px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.6);
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(8,15,11,0.5) 60%, rgba(8,15,11,0.9) 100%),
        linear-gradient(to bottom, rgba(8,15,11,0.4) 0%, rgba(8,15,11,0.85) 100%);
}
.page-hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(var(--gold-rgb), 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--deep) 0%, var(--dark) 50%, var(--deep) 100%);
}
.page-hero-content {
    position: relative; z-index: 1;
    text-align: center; padding: 80px 32px 0;
}
.page-title {
    font-family: var(--serif);
    font-size: clamp(38px, 7vw, 72px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.page-subtitle { font-size: 14px; color: var(--text-dim); max-width: 480px; margin: 0 auto; line-height: 1.8; }

/* ========================================
   ABOUT PAGE
   ======================================== */
.section-about-full { padding: 120px 0; background: var(--deep); }
.about-content-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 100px; }
.text-block { margin-bottom: 36px; }
.text-block p { font-size: 14px; line-height: 2; color: var(--text); opacity: 0.75; }
.about-highlight {
    padding: 36px 0 36px 36px;
    border-left: 1px solid rgba(var(--gold-rgb), 0.3);
    margin: 48px 0;
}
.about-highlight p { font-size: 14px; line-height: 2; color: var(--text); opacity: 0.8; }
.about-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-image img {
    width: 100%; height: 380px;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.85);
    transition: all 1s var(--ease);
}
.sidebar-image:hover img { filter: grayscale(0%) brightness(1); }

.section-philosophy { padding: 120px 0; background: var(--dark); }
.philosophy-content { text-align: center; }
.philosophy-content p { font-size: 14px; line-height: 2; color: var(--text); opacity: 0.75; margin-bottom: 16px; }

.section-about-interim { padding: 120px 0; background: var(--deep); }
.interim-origin { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.origin-text p { font-size: 14px; line-height: 2; color: var(--text); opacity: 0.75; margin-bottom: 16px; }
.side-quote {
    padding: 48px;
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    position: relative;
    background: rgba(var(--gold-rgb), 0.02);
}
.side-quote::before {
    content: '\201C';
    font-family: var(--serif);
    font-size: 100px; color: var(--gold-muted);
    opacity: 0.2;
    position: absolute; top: -16px; left: 24px; line-height: 1;
}
.side-quote p {
    font-family: var(--serif);
    font-size: 21px; font-style: italic; font-weight: 300;
    line-height: 1.6; color: var(--cream);
}

.section-gallery { padding: 0; background: var(--dark); }
.gallery-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.gallery-item { overflow: hidden; }
.gallery-item img {
    width: 100%; height: 340px;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.7);
    transition: all 1.2s var(--ease);
}
.gallery-item:hover img { filter: grayscale(0%) brightness(0.9); transform: scale(1.04); }

/* ========================================
   CONSULTAS PAGE
   ======================================== */
.section-consultas { padding: 120px 0; background: var(--deep); }
.consultas-intro { max-width: 700px; margin: 0 auto 80px; text-align: center; }
.consultas-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.step-card {
    padding: 48px 32px;
    background: var(--dark);
    transition: all 0.6s var(--ease);
}
.step-card:hover { background: var(--surface); }
.step-number {
    font-family: var(--serif);
    font-size: 42px; font-weight: 300;
    color: rgba(var(--gold-rgb), 0.3);
    margin-bottom: 20px;
}
.step-card h3 {
    font-family: var(--serif);
    font-size: 20px; font-weight: 300;
    color: var(--cream); margin-bottom: 14px;
}
.step-card p { font-size: 12px; color: var(--text-dim); line-height: 1.8; }

/* Timeline */
.consultas-timeline {
    max-width: 640px;
    margin: 0 auto;
    padding-left: 40px;
}
.timeline-step {
    display: flex;
    gap: 32px;
    padding-bottom: 56px;
    position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}
.timeline-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 2px solid var(--gold-muted);
    background: var(--deep);
    z-index: 1;
    transition: all 0.4s var(--ease);
}
.timeline-step:hover .timeline-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.3);
}
.timeline-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, rgba(var(--gold-rgb), 0.3), rgba(var(--gold-rgb), 0.05));
    margin-top: 8px;
}
.timeline-content { padding-top: 0; }
.timeline-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 8px;
    display: block;
}
.timeline-content h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 12px;
}
.timeline-content p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.9;
}

.section-teleconsulta { padding: 120px 0; background: var(--dark); }
.tele-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.tele-item { margin-bottom: 36px; }
.tele-item h4 {
    font-family: var(--serif);
    font-size: 19px; font-weight: 300;
    color: var(--cream); margin-bottom: 8px;
}
.tele-item p { font-size: 13px; color: var(--text-dim); line-height: 1.8; }
.tele-image img {
    width: 100%; height: 520px;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.8);
}

/* === FAQ === */
.section-faq { padding: 120px 0; background: var(--deep); }
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(var(--gold-rgb), 0.08); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 0;
    font-size: 17px; font-family: var(--serif); font-weight: 300;
    color: var(--cream);
    text-align: left;
    transition: all 0.4s var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold-muted); transition: all 0.4s var(--ease); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-answer p { padding: 0 0 28px; font-size: 13px; color: var(--text-dim); line-height: 1.9; }

/* === CTA === */
.section-cta-final { padding: 120px 0; background: var(--dark); }
.cta-box {
    text-align: center;
    padding: 40px 0;
}
.cta-box h2 {
    font-family: var(--serif);
    font-size: 36px; font-weight: 300;
    color: var(--cream); margin-bottom: 16px;
}
.cta-box p { font-size: 13px; color: var(--text-dim); margin-bottom: 36px; line-height: 1.8; }
.cta-values {
    font-size: 10px; letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 36px !important;
}

/* ========================================
   NEUROMODULACAO PAGE
   ======================================== */
.section-neuro-intro { padding: 120px 0; background: var(--deep); text-align: center; }
.section-neuro-methods { padding: 100px 0; background: var(--dark); }
.neuro-card {
    max-width: 840px;
    margin: 0 auto 2px;
    padding: 48px;
    background: var(--deep);
    transition: all 0.6s var(--ease);
}
.neuro-card:hover { background: var(--mid); }
.neuro-card-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.neuro-icon { width: 32px; height: 32px; color: var(--gold-muted); flex-shrink: 0; }
.neuro-icon svg { width: 100%; height: 100%; }
.neuro-card h3 {
    font-family: var(--serif);
    font-size: 23px; font-weight: 300;
    color: var(--cream);
}
.neuro-tag { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-muted); }
.neuro-card p { font-size: 13px; color: var(--text-dim); line-height: 1.9; }

.neuro-card p { margin-bottom: 14px; }
.neuro-card p:last-child { margin-bottom: 0; }
.neuro-card-featured { border-left: 2px solid rgba(var(--gold-rgb), 0.3); }
.neuro-image-block { max-width: 840px; margin: 2px auto; }
.neuro-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.neuro-image-single { max-width: 520px; margin: 0 auto; }
.neuro-img-item img,
.neuro-image-single img {
    width: 100%; height: 380px;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
    transition: all 1s var(--ease);
}
.neuro-img-item:hover img,
.neuro-image-single:hover img { filter: grayscale(0%) brightness(0.9); }
.neuro-img-item .image-caption,
.neuro-image-single .image-caption {
    padding: 14px 16px;
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.7;
    border-left: none;
    margin-top: 0;
    background: var(--deep);
}
/* Neuro Duo Images (cinematic full-width) */
.section-neuro-image-full { padding: 0; background: var(--deep); }
.neuro-duo-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.neuro-duo-item { overflow: hidden; }
.neuro-duo-img {
    position: relative;
    height: 480px;
    overflow: hidden;
}
.neuro-duo-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(25%) brightness(0.7) saturate(0.85);
    transition: all 1.2s var(--ease);
}
.neuro-duo-item:hover .neuro-duo-img img {
    filter: grayscale(0%) brightness(0.8) saturate(1);
    transform: scale(1.03);
}
.neuro-duo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,15,11,0.85) 0%, transparent 50%);
    pointer-events: none;
}
.neuro-duo-caption {
    padding: 20px 28px;
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.7;
    background: var(--dark);
}
.neuro-duo-caption em { opacity: 0.6; }

.cinematic-quote-sm { font-size: clamp(20px, 3vw, 30px); }
.section-neuro-personal { padding: 120px 0; background: var(--deep); }
.personal-note { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 100px; align-items: center; }
.personal-note-full { display: block; max-width: 720px; margin: 0 auto; }
.personal-image img { width: 100%; height: 520px; object-fit: cover; filter: grayscale(20%) brightness(0.85); }
.personal-text p { font-size: 14px; line-height: 2; color: var(--text); opacity: 0.75; margin-bottom: 16px; }

/* ========================================
   BLOG LIST PAGE
   ======================================== */
.section-blog-filter { padding: 48px 0 0; background: var(--deep); }
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
    padding: 9px 20px;
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    border: 1px solid rgba(var(--gold-rgb), 0.08);
    transition: all 0.4s var(--ease);
    background: transparent;
}
.filter-btn:hover, .filter-btn.active { color: var(--gold); border-color: rgba(var(--gold-rgb), 0.4); }
.section-blog-list { padding: 60px 0 140px; background: var(--deep); }
.blog-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.blog-list-card {
    display: block;
    background: var(--dark);
    transition: all 0.6s var(--ease);
    overflow: hidden;
}
.blog-list-card:hover { background: var(--mid); }
.blog-list-image { height: 220px; overflow: hidden; position: relative; }
.blog-list-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(40%) brightness(0.75);
    transition: all 1s var(--ease);
}
.blog-list-card:hover .blog-list-image img { filter: grayscale(0%) brightness(0.85); transform: scale(1.05); }
.blog-list-content { padding: 28px; }
.blog-list-content h3 {
    font-family: var(--serif);
    font-size: 19px; font-weight: 300;
    color: var(--cream); margin-bottom: 10px; line-height: 1.3;
}
.blog-list-content p { font-size: 12px; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.blog-read-more { font-size: 11px; color: var(--gold-muted); display: inline-flex; align-items: center; gap: 6px; letter-spacing: 1px; text-transform: uppercase; }
.empty-state { text-align: center; padding: 80px; color: var(--text-dim); }

/* ========================================
   ARTICLE
   ======================================== */
.article-content { padding: 100px 0; background: var(--deep); }
.article-body { font-size: 15px; line-height: 2.1; color: var(--text); opacity: 0.8; }
.article-body h3 {
    font-family: var(--serif);
    font-size: 28px; font-weight: 300;
    color: var(--cream); margin: 56px 0 24px;
    letter-spacing: -0.3px;
}
.article-body p { margin-bottom: 24px; }
.article-footer { margin-top: 72px; padding-top: 36px; border-top: 1px solid rgba(var(--gold-rgb), 0.08); }
.section-related { padding: 100px 0; background: var(--dark); }

/* ========================================
   PODCAST PAGE
   ======================================== */
.section-podcast { padding: 120px 0; background: var(--deep); }
.podcast-intro { text-align: center; margin-bottom: 72px; }
.podcast-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-bottom: 72px; }
.channel-card {
    padding: 56px 40px;
    background: var(--dark);
    text-align: center;
    transition: all 0.6s var(--ease);
}
.channel-card:hover { background: var(--surface); }
.channel-icon { width: 40px; height: 40px; color: var(--gold-muted); margin: 0 auto 24px; }
.channel-icon svg { width: 100%; height: 100%; }
.channel-card h3 {
    font-family: var(--serif);
    font-size: 26px; font-weight: 300;
    color: var(--cream); margin-bottom: 14px;
}
.channel-card p { font-size: 13px; color: var(--text-dim); line-height: 1.8; margin-bottom: 24px; }
.channel-status {
    display: inline-block;
    font-size: 9px; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-muted);
    padding: 6px 18px;
    border: 1px solid rgba(var(--gold-rgb), 0.15);
}
.podcast-cta { text-align: center; color: var(--text-dim); font-size: 13px; }

/* YouTube feed (auto — puxado do canal) */
.section-youtube-home { padding: 120px 0; background: var(--dark); }
.section-youtube-home .section-header-center { margin-bottom: 48px; }
.section-youtube-home .youtube-grid { grid-template-columns: repeat(3, 1fr); }
.section-youtube-home .section-cta { text-align: center; margin-top: 48px; }
.youtube-feed { margin-top: 96px; }
.youtube-feed .section-header-center { margin-bottom: 48px; }
.youtube-featured { max-width: 900px; margin: 0 auto 48px; }
.youtube-embed {
    position: relative; width: 100%;
    padding-bottom: 56.25%; height: 0; overflow: hidden;
    border: 1px solid rgba(var(--gold-rgb), 0.15);
}
.youtube-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 56px;
}
.youtube-card {
    display: block; background: var(--dark);
    transition: all 0.6s var(--ease);
}
.youtube-card:hover { background: var(--surface); }
.youtube-card-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.youtube-card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.9s var(--ease); opacity: 0.85;
}
.youtube-card:hover .youtube-card-thumb img { transform: scale(1.05); opacity: 1; }
.youtube-card-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(var(--gold-rgb), 0.5);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); transition: all 0.4s var(--ease);
}
.youtube-card:hover .youtube-card-play { background: var(--gold); color: var(--deep); }
.youtube-card-play svg { width: 18px; height: 18px; margin-left: 2px; }
.youtube-card-title {
    font-family: var(--serif); font-weight: 300;
    font-size: 16px; color: var(--cream);
    line-height: 1.5; padding: 20px 24px 28px;
}
.youtube-feed .podcast-cta { margin-top: 8px; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.section-contato { padding: 120px 0; background: var(--deep); }
.contato-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 100px; }
.contato-form-wrapper h2 {
    font-family: var(--serif);
    font-size: 30px; font-weight: 300;
    color: var(--cream); margin-bottom: 12px;
}
.contato-form-wrapper > p { font-size: 13px; color: var(--text-dim); margin-bottom: 36px; line-height: 1.8; }
.contact-form .form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label {
    display: block;
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(var(--gold-rgb), 0.02);
    border: 1px solid rgba(var(--gold-rgb), 0.08);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 14px; font-weight: 300;
    transition: all 0.4s var(--ease);
    border-radius: 0;
    -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(var(--gold-rgb), 0.4);
    background: rgba(var(--gold-rgb), 0.04);
}
.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--deep); color: var(--cream); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.alert { padding: 18px 22px; margin-bottom: 28px; font-size: 13px; }
.alert-success { border: 1px solid rgba(100,180,100,0.2); background: rgba(100,180,100,0.03); color: #8ac89a; }
.alert-error { border: 1px solid rgba(200,100,100,0.2); background: rgba(200,100,100,0.03); color: #c88a8a; }

.info-card {
    padding: 40px;
    border: 1px solid rgba(var(--gold-rgb), 0.08);
    margin-bottom: 28px;
    background: rgba(var(--gold-rgb), 0.015);
}
.info-card h3 {
    font-family: var(--serif);
    font-size: 24px; font-weight: 300;
    color: var(--cream); margin-bottom: 36px;
}
.info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.info-item svg { width: 22px; height: 22px; color: var(--gold-muted); flex-shrink: 0; margin-top: 2px; }
.info-item h4 { font-size: 13px; color: var(--cream); margin-bottom: 4px; font-weight: 400; }
.info-item p { font-size: 12px; color: var(--text-dim); margin-bottom: 10px; }
.info-note {
    padding: 22px;
    border-left: 1px solid rgba(var(--gold-rgb), 0.25);
    font-size: 12px; color: var(--text-dim); line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 100px 0 0;
    background: var(--deep);
    border-top: 1px solid rgba(var(--gold-rgb), 0.04);
}
.footer-inner {
    max-width: 1140px;
    margin: 0 auto; padding: 0 32px;
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 60px;
}
.footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    color: var(--text-dim);
    margin-top: 10px;
    font-size: 14px;
}
.footer-links { display: flex; gap: 72px; }
.footer-col h4 {
    font-size: 9px; letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    font-size: 13px; color: var(--text-dim);
    padding: 5px 0;
    transition: all 0.4s var(--ease);
}
.footer-col a:hover { color: var(--cream); }
.footer-cfm {
    max-width: 1140px;
    margin: 56px auto 0;
    padding: 28px 32px;
    border-top: 1px solid rgba(var(--gold-rgb), 0.04);
}
.footer-cfm p {
    font-size: 10px;
    color: var(--text-dim);
    opacity: 0.6;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.footer-bottom {
    max-width: 1140px;
    margin: 16px auto 0;
    padding: 28px 32px;
    border-top: 1px solid rgba(var(--gold-rgb), 0.04);
    text-align: center;
    font-size: 12px; color: var(--text-dim);
    letter-spacing: 1px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-anim] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-anim="fade-right"] { transform: translateX(-50px); }
[data-anim="fade-left"] { transform: translateX(50px); }
[data-anim="scale-x"] { transform: scaleX(0); }
[data-anim].visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scaleX(1);
}

.particle {
    position: absolute;
    width: 1px; height: 1px;
    background: rgba(var(--gold-rgb), 0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px); opacity: 0; }
}

/* ========================================
   BOOKING WIZARD
   ======================================== */
.section-booking { padding: 100px 0 80px; background: var(--deep); }

.booking-success {
    text-align: center;
    padding: 80px 0;
}
.success-icon { width: 56px; height: 56px; color: var(--gold); margin: 0 auto 28px; }
.success-icon svg { width: 56px; height: 56px; display: block; }
.booking-success h2 {
    font-family: var(--serif);
    font-size: 30px; font-weight: 300;
    color: var(--cream); margin-bottom: 16px;
}
.booking-success p { font-size: 14px; color: var(--text-dim); margin-bottom: 36px; line-height: 1.8; }

.booking-wizard { max-width: 640px; margin: 0 auto; }

/* Progress */
.wizard-progress {
    position: relative;
    margin-bottom: 56px;
    padding-bottom: 28px;
}
.wizard-progress-bar {
    position: absolute;
    top: 0; left: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.6s var(--ease);
    width: 25%;
}
.wizard-progress::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(var(--gold-rgb), 0.1);
}
.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
}
.wizard-step-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(var(--gold-rgb), 0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 500;
    color: var(--text-dim);
    transition: all 0.5s var(--ease);
}
.wizard-step-dot.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(var(--gold-rgb), 0.08);
}
.wizard-step-dot.done {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--deep);
}

/* Steps */
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: wizardFadeIn 0.5s var(--ease); opacity: 1 !important; transform: none !important; }
@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step-header { margin-bottom: 36px; }
.wizard-step-label {
    font-size: 10px; letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 12px; display: block;
}
.wizard-step-title {
    font-family: var(--serif);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
}
.wizard-step-desc {
    font-size: 13px; color: var(--text-dim);
    margin-top: 10px; line-height: 1.7;
}

/* Radio Cards */
.radio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.radio-cards-row { grid-template-columns: 1fr 1fr; }
.radio-card { cursor: pointer; }
.radio-card input { display: none; }
.radio-card-inner {
    padding: 28px 24px;
    border: 1px solid rgba(var(--gold-rgb), 0.08);
    background: rgba(var(--gold-rgb), 0.015);
    transition: all 0.5s var(--ease);
    height: 100%;
}
.radio-card input:checked + .radio-card-inner {
    border-color: var(--gold);
    background: rgba(var(--gold-rgb), 0.06);
    box-shadow: 0 8px 32px rgba(var(--gold-rgb), 0.1);
}
.radio-card:hover .radio-card-inner {
    border-color: rgba(var(--gold-rgb), 0.3);
    background: rgba(var(--gold-rgb), 0.03);
}
.radio-card-icon {
    width: 28px; height: 28px;
    color: var(--gold-muted);
    margin-bottom: 16px;
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
}
.radio-card input:checked + .radio-card-inner .radio-card-icon { color: var(--gold); }
.radio-card-icon svg { width: 28px; height: 28px; display: block; }
.radio-card-inner h3 {
    font-family: var(--serif);
    font-size: 18px; font-weight: 300;
    color: var(--cream); margin-bottom: 8px;
}
.radio-card-inner p {
    font-size: 12px; color: var(--text-dim); line-height: 1.7;
}

/* Info note */
.wizard-info-note {
    display: flex; gap: 14px;
    padding: 20px 24px;
    margin-top: 20px;
    border: 1px solid rgba(var(--gold-rgb), 0.06);
    background: rgba(var(--gold-rgb), 0.01);
    align-items: flex-start;
}
.wizard-info-note svg { width: 20px; height: 20px; min-width: 20px; color: var(--gold-muted); flex-shrink: 0; margin-top: 2px; }
.wizard-info-note p { font-size: 11px; color: var(--text-dim); line-height: 1.8; }

/* Fields */
.wizard-fields { display: flex; flex-direction: column; gap: 20px; }
.wizard-field label {
    display: block;
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.wizard-field input,
.wizard-field textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(var(--gold-rgb), 0.02);
    border: 1px solid rgba(var(--gold-rgb), 0.08);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 14px; font-weight: 300;
    transition: all 0.4s var(--ease);
    border-radius: 0;
    -webkit-appearance: none;
}
.wizard-field input:focus,
.wizard-field textarea:focus {
    outline: none;
    border-color: rgba(var(--gold-rgb), 0.4);
    background: rgba(var(--gold-rgb), 0.04);
}
.wizard-field input::placeholder,
.wizard-field textarea::placeholder { color: var(--text-dim); opacity: 0.5; }
.wizard-field textarea { resize: vertical; min-height: 120px; }
.wizard-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Checkbox */
.checkbox-elegant {
    display: flex; gap: 14px;
    cursor: pointer;
    align-items: flex-start;
    padding: 20px 0;
}
.checkbox-elegant input { display: none; }
.checkbox-mark {
    width: 20px; height: 20px;
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.4s var(--ease);
    position: relative;
}
.checkbox-elegant input:checked + .checkbox-mark {
    border-color: var(--gold);
    background: var(--gold);
}
.checkbox-elegant input:checked + .checkbox-mark::after {
    content: '';
    position: absolute;
    left: 6px; top: 2px;
    width: 5px; height: 10px;
    border: solid var(--deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-text {
    font-size: 12px; color: var(--text-dim); line-height: 1.7;
}
.checkbox-text strong { color: var(--cream); }

/* Wizard Nav */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(var(--gold-rgb), 0.06);
}
.wizard-prev { opacity: 0.7; }
.wizard-prev:hover { opacity: 1; }
.wizard-next, .wizard-submit { margin-left: auto; }

/* Booking Info */
.section-booking-info { padding: 80px 0 120px; background: var(--deep); }
.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}
.booking-info-card {
    padding: 48px 36px;
    background: var(--dark);
    text-align: center;
    transition: all 0.6s var(--ease);
}
.booking-info-card:hover { background: var(--surface); }
.booking-info-icon {
    width: 32px; height: 32px;
    color: var(--gold-muted);
    margin: 0 auto 20px;
}
.booking-info-icon svg { width: 32px; height: 32px; display: block; }
.booking-info-card h3 {
    font-family: var(--serif);
    font-size: 20px; font-weight: 300;
    color: var(--cream); margin-bottom: 10px;
}
.booking-info-card p { font-size: 12px; color: var(--text-dim); line-height: 1.8; }

/* ========================================
   HOME — NEW SECTIONS
   ======================================== */

/* Quote Alt (dark bg variation) */
.section-quote-alt { background: var(--dark); }

/* O que e o Interim */
.section-interim-about { padding: 140px 0; background: var(--dark); }
.interim-intro { max-width: 760px; margin: 0 auto; text-align: center; }
.interim-intro-text .lead-text { margin-bottom: 36px; }
.interim-intro-text .section-text { text-align: left; }
.interim-closing { margin-top: 36px; padding-top: 36px; border-top: 1px solid rgba(var(--gold-rgb), 0.1); }
.interim-closing .section-text { text-align: center; opacity: 0.85; color: var(--gold-muted); }

/* Neuromodulacao Preview */
.section-neuro-preview { padding: 140px 0; background: var(--dark); }
.neuro-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.neuro-preview-image { position: relative; }
.neuro-preview-image img {
    width: 100%; height: 560px;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.85);
    transition: all 1s var(--ease);
}
.neuro-preview-image:hover img { filter: grayscale(0%) brightness(0.95); }
.image-caption {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(var(--gold-rgb), 0.15);
}
.neuro-methods-mini {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 28px 0;
}
.neuro-tag-item {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-muted);
    padding: 8px 18px;
    border: 1px solid rgba(var(--gold-rgb), 0.15);
    transition: all 0.4s var(--ease);
}

/* Aurora Section (immersive image quote) */
.section-aurora {
    position: relative;
    padding: 200px 0;
    overflow: hidden;
}
.aurora-bg { position: absolute; inset: 0; }
.aurora-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.7);
}
.aurora-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(8,15,11,0.8) 0%, rgba(8,15,11,0.3) 40%, rgba(8,15,11,0.3) 60%, rgba(8,15,11,0.9) 100%);
}
.aurora-content { position: relative; z-index: 1; text-align: center; }

/* Gallery Home */
.section-gallery-home { padding: 140px 0; background: var(--deep); }
.gallery-strip-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.gallery-strip-home .gallery-item { overflow: hidden; }
.gallery-strip-home .gallery-item img {
    width: 100%; height: 360px;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.75);
    transition: all 1.2s var(--ease);
}
.gallery-strip-home .gallery-item:hover img {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.04);
}
.gallery-strip-home .image-caption {
    padding: 12px 16px 0;
    border-left: none;
}

/* Podcast Preview */
.section-podcast-preview {
    padding: 160px 0;
    background: var(--dark);
    text-align: center;
}
.podcast-preview-content .section-title {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .about-preview { grid-template-columns: 1fr; gap: 48px; }
    .image-frame img { height: 440px; }
    .services-grid { grid-template-columns: 1fr; }
    .consultas-steps { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .tele-grid { grid-template-columns: 1fr; gap: 48px; }
    .neuro-preview-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-content-grid { grid-template-columns: 1fr; gap: 48px; }
    .interim-origin { grid-template-columns: 1fr; gap: 48px; }
    .personal-note { grid-template-columns: 1fr; gap: 48px; }
    .contato-grid { grid-template-columns: 1fr; gap: 48px; }
    .blog-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero { min-height: 600px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .blog-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .consultas-steps { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: 1fr; }
    .gallery-strip-home { grid-template-columns: 1fr; }
    .gallery-item img { height: 280px; }
    .neuro-preview-image img { height: 360px; }
    .neuro-image-grid { grid-template-columns: 1fr; }
    .neuro-duo-images { grid-template-columns: 1fr; }
    .neuro-duo-img { height: 340px; }
    .neuro-img-item img { height: 300px; }
    .section-aurora { padding: 120px 0; }
    .podcast-channels { grid-template-columns: 1fr; }
    .youtube-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 40px; }
    .footer-links { flex-direction: column; gap: 36px; }
    .blog-list-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .radio-cards { grid-template-columns: 1fr; }
    .wizard-field-row { grid-template-columns: 1fr; }
    .booking-info-grid { grid-template-columns: 1fr; }
    .filter-bar { gap: 4px; }
    .filter-btn { padding: 7px 14px; font-size: 9px; }
    .page-hero { height: 60vh; min-height: 340px; }
    .page-hero-small { height: 45vh; min-height: 280px; }
    .about-sidebar { flex-direction: row; }
    .sidebar-image img { height: 260px; }
    .personal-image img { height: 360px; }
    .tele-image img { height: 360px; }
    .section-quote, .section-final-quote { padding: 100px 0; }
    .section-dark, .section-services, .section-caderno, .section-categories { padding: 100px 0; }
}

/* ========================================
   AJUSTES CLIENTE — LEGIBILIDADE TIPOGRÁFICA
   Corpo maior, mais peso, mais espaçamento (guia de identidade)
   ======================================== */
.section-text,
.text-block p,
.about-highlight p,
.philosophy-content p,
.origin-text p,
.personal-text p,
.timeline-content p,
.neuro-card p,
.tele-item p {
    font-size: 17px;
    line-height: 1.9;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.1px;
}
.lead-text { font-weight: 400; line-height: 1.75; }
.page-subtitle { font-size: 16px; line-height: 1.85; color: var(--cream-muted); opacity: 0.85; }
.section-desc { font-size: 16px; color: var(--cream-muted); opacity: 0.85; }
.hero-subtitle { font-size: 15px; opacity: 0.85; }
/* Títulos ligeiramente mais espessos p/ acessibilidade */
.section-title { font-weight: 400; }
.section-label { letter-spacing: 0.12em; font-weight: 500; }
.faq-answer p { font-size: 15px; line-height: 1.95; }
.service-card p, .blog-card-content p { font-size: 14px; line-height: 1.85; }

/* ========================================
   BOTÃO FLUTUANTE WHATSAPP
   ======================================== */
.wa-float {
    position: fixed;
    right: 24px; bottom: 24px;
    z-index: 9990;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 20px 13px 16px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.28);
    font-family: var(--sans);
    font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
    transition: all 0.4s var(--ease);
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float-label { white-space: nowrap; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(37,211,102,0.4); }
@media (max-width: 600px) {
    .wa-float { padding: 14px; right: 16px; bottom: 16px; }
    .wa-float-label { display: none; }
}

/* ========================================
   BANNER DE COOKIES (LGPD)
   ======================================== */
.cookie-banner {
    position: fixed;
    left: 50%; bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    z-index: 9995;
    max-width: 720px;
    width: calc(100% - 48px);
    display: flex; align-items: center; gap: 24px;
    padding: 20px 26px;
    background: rgba(15, 31, 22, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    opacity: 0; pointer-events: none;
    transition: all 0.6s var(--ease);
}
.cookie-banner.show { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: 13px; line-height: 1.7; color: var(--cream-muted); margin: 0; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-banner button {
    flex-shrink: 0;
    padding: 12px 26px;
    background: var(--gold);
    color: var(--deep);
    font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    transition: all 0.4s var(--ease);
}
.cookie-banner button:hover { background: var(--gold-light); }
@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; gap: 14px; align-items: stretch; text-align: center; }
}

/* ========================================
   NEUROMODULAÇÃO — ACORDEÃO VISUAL
   ======================================== */
.neuro-accordion { max-width: 920px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.neuro-acc-item {
    border: 1px solid rgba(var(--gold-rgb), 0.14);
    background: var(--deep);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}
.neuro-acc-item.open { border-color: rgba(var(--gold-rgb), 0.35); }
.neuro-acc-head {
    width: 100%;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 24px;
    text-align: left;
}
.neuro-acc-thumb {
    width: 200px; height: 140px;
    object-fit: cover;
    background: var(--mid);
    border: 1px solid rgba(var(--gold-rgb), 0.1);
}
.neuro-acc-summary h3 {
    font-family: var(--serif);
    font-size: 26px; font-weight: 400;
    color: var(--cream); margin-bottom: 8px; line-height: 1.2;
}
.neuro-acc-summary .neuro-tag { display: inline-block; margin-bottom: 10px; }
.neuro-acc-summary p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.neuro-acc-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}
.neuro-acc-toggle svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.neuro-acc-item.open .neuro-acc-toggle svg { transform: rotate(180deg); }
.neuro-acc-more { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease); }
.neuro-acc-more-inner { padding: 0 24px 32px; }
.neuro-acc-figure { margin: 8px 0 28px; text-align: center; background: var(--light-surface); padding: 16px; }
.neuro-acc-figure img { width: 100%; max-width: 760px; margin: 0 auto; height: auto; }
.neuro-acc-more p { font-size: 16px; line-height: 1.9; color: var(--text); opacity: 0.92; margin-bottom: 14px; }
@media (max-width: 760px) {
    .neuro-acc-head { grid-template-columns: 1fr; gap: 16px; }
    .neuro-acc-thumb { width: 100%; height: 200px; }
    .neuro-acc-toggle { justify-self: start; }
}

/* ========================================
   PÁGINA SOBRE — CARTÃO DOURADO + BIO MEIA-TELA
   ======================================== */
.section-cartao {
    padding: 160px 0 100px;
    background: var(--light-bg);
    text-align: center;
}
.cartao-wrap { max-width: 720px; margin: 0 auto; }
.cartao-wrap img {
    width: 100%; max-width: 560px; margin: 0 auto 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.section-bio { padding: 0 0 120px; background: var(--light-bg); }
.bio-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
    max-width: 1240px;
    margin: 0 auto;
}
.bio-photo { position: relative; min-height: 620px; }
.bio-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bio-text {
    padding: 72px 64px;
    display: flex; flex-direction: column; justify-content: center;
}
.bio-text h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 500;
    color: var(--light-heading);
    line-height: 1.1; margin-bottom: 28px;
}
.bio-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 18px;
    text-align: justify;
}
.bio-lattes {
    margin-top: 24px;
    font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-muted);
}
@media (max-width: 900px) {
    .bio-split { grid-template-columns: 1fr; }
    .bio-photo { min-height: 420px; }
    .bio-text { padding: 48px 28px; }
    .bio-text p { font-size: 16px; }
}

/* ========================================
   TEMA CLARO — Sobre, Consultas, Agendamento, FAQ, Contato
   (guia: off-white quente, não branco puro)
   ======================================== */
body[data-theme="light"] { background: var(--light-bg); color: var(--light-text); }
body[data-theme="light"] .section-consultas,
body[data-theme="light"] .section-faq,
body[data-theme="light"] .section-about-full,
body[data-theme="light"] .section-about-interim,
body[data-theme="light"] .section-gallery,
body[data-theme="light"] .section-contato,
body[data-theme="light"] .section-booking,
body[data-theme="light"] .section-booking-info { background: var(--light-bg); }
body[data-theme="light"] .section-teleconsulta,
body[data-theme="light"] .section-philosophy,
body[data-theme="light"] .section-cta-final,
body[data-theme="light"] .section-quote { background: var(--light-bg-alt); }

/* Títulos e textos no claro */
body[data-theme="light"] .section-title,
body[data-theme="light"] .page-title,
body[data-theme="light"] .lead-text,
body[data-theme="light"] .cinematic-quote,
body[data-theme="light"] .tele-item h4,
body[data-theme="light"] .faq-question,
body[data-theme="light"] .timeline-content h3,
body[data-theme="light"] .cta-box h2,
body[data-theme="light"] .side-quote p { color: var(--light-heading); }
body[data-theme="light"] .section-text,
body[data-theme="light"] .text-block p,
body[data-theme="light"] .about-highlight p,
body[data-theme="light"] .philosophy-content p,
body[data-theme="light"] .origin-text p,
body[data-theme="light"] .timeline-content p,
body[data-theme="light"] .tele-item p,
body[data-theme="light"] .faq-answer p,
body[data-theme="light"] .cta-box p,
body[data-theme="light"] .page-subtitle,
body[data-theme="light"] .section-desc { color: var(--light-text); opacity: 1; }
body[data-theme="light"] .quote-mark { color: var(--gold); }

/* Linhas/bordas no claro */
body[data-theme="light"] .faq-item { border-bottom-color: var(--light-line); }
body[data-theme="light"] .side-quote { border-color: var(--light-line); background: var(--light-surface); }
body[data-theme="light"] .about-highlight { border-left-color: var(--gold); }
body[data-theme="light"] .timeline-line { background: linear-gradient(to bottom, rgba(var(--gold-rgb),0.5), rgba(var(--gold-rgb),0.12)); }
body[data-theme="light"] .timeline-dot { background: var(--light-bg); }

/* Imagens no claro: sem escurecimento */
body[data-theme="light"] .gallery-item img,
body[data-theme="light"] .tele-image img,
body[data-theme="light"] .sidebar-image img { filter: grayscale(0%) brightness(1); }

/* Page-hero claro (Consultas/Contato) */
body[data-theme="light"] .page-hero-gradient {
    background:
        radial-gradient(ellipse at 50% 60%, rgba(var(--gold-rgb), 0.08) 0%, transparent 55%),
        linear-gradient(180deg, var(--light-bg-alt) 0%, var(--light-bg) 100%);
}

/* Navegação clara (estilo do mockup) */
body[data-theme="light"] .nav { background: rgba(244, 239, 229, 0.82); backdrop-filter: blur(20px); }
body[data-theme="light"] .nav.scrolled { background: rgba(244, 239, 229, 0.96); border-bottom-color: var(--light-line); }
body[data-theme="light"] .nav-link { color: var(--light-text); opacity: 0.75; }
body[data-theme="light"] .nav-link:hover,
body[data-theme="light"] .nav-link.active { color: var(--gold); opacity: 1; }
body[data-theme="light"] .logo-text { color: var(--light-heading); opacity: 0.55; }
body[data-theme="light"] .nav-toggle span { background: var(--light-heading); }

/* ========================================
   CADERNO — textura de papel + legibilidade
   ======================================== */
body[data-page="caderno"] .section-blog-filter,
body[data-page="caderno"] .section-blog-list,
body[data-page="caderno"] .article-content {
    position: relative;
    background-color: var(--deep);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.5'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
}
body[data-page="caderno"] .blog-list-content { padding: 32px 30px; }
body[data-page="caderno"] .blog-list-content h3 { font-size: 21px; line-height: 1.35; margin-bottom: 14px; }
body[data-page="caderno"] .blog-list-content p { font-size: 14.5px; line-height: 1.85; margin-bottom: 20px; }
.article-body { font-size: 16.5px; line-height: 2.1; }
.article-body p { margin-bottom: 26px; }
