/* ============================================================
   IMERSÃO REENCONTRO · LILIAN MESQUITA
   Refino editorial · v2026.05.19
   ============================================================ */

:root {
  /* Cor */
  --cream:        #F1ECDF;
  --cream-soft:   #F6F2E8;
  --cream-deep:   #E5DDC9;
  --ink:          #1A1814;
  --ink-soft:     #3A352E;
  --ink-mute:     #6B6256;
  --verde:        #0F2820;
  --verde-deep:   #0A1B14;
  --verde-soft:   #1B3329;
  --gold:         #C9A961;   /* accent default — pode ser sobrescrito via Tweaks */
  --gold-pale:    #E8D5A0;
  --gold-deep:    #8E6E2A;
  --rule:         rgba(168, 131, 52, 0.28);
  --rule-strong:  rgba(168, 131, 52, 0.55);

  /* Tipografia */
  --ff-display:   'Cormorant Garamond', 'Times New Roman', serif;
  --ff-eyebrow:   'Cinzel', 'Cormorant Garamond', serif;
  --ff-body:      'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --gutter:       clamp(22px, 5vw, 80px);
  --max-w:        1280px;
  --max-w-narrow: 760px;
}

/* ============================================================ */
/* RESET + BASE                                                  */
/* ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--verde); }

/* ============================================================ */
/* TIPOGRAFIA · escalas                                          */
/* ============================================================ */
.eyebrow {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.36em;       /* compensa tracking */
  display: inline-block;
}

.eyebrow.on-dark { color: var(--gold-pale); }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 400; line-height: 1.08; }

.display {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.012em;
}

.display.italic { font-style: italic; font-weight: 400; }

.h-section {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.008em;
  color: var(--verde);
  max-width: 22ch;
}

.h-section em { font-style: italic; color: var(--ink-soft); font-weight: 400; }
.h-section .quiet { display: block; font-style: italic; color: var(--ink-soft); font-weight: 300; }

.lede {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 60ch;
}

.body-serif {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.65;
  color: var(--ink);
}

.body-sans {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.body-sans.on-dark { color: rgba(241, 236, 223, 0.88); }

.micro {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.micro.on-dark { color: rgba(241, 236, 223, 0.78); }

/* ============================================================ */
/* COMPONENTES · regras editoriais e CTAs                        */
/* ============================================================ */
.rule {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 0;
}

.rule.gold-strong { background: var(--gold); opacity: 0.75; }
.rule.short { width: 56px; height: 1px; }

.center { text-align: center; }
.center-x { margin-inline: auto; }

/* CTA primário — botão dourado, cantos retos editoriais */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--verde);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 30px 17px;
  border: 1px solid var(--gold);
  border-radius: 0;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  cursor: pointer;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 248, 220, 0) 20%,
    rgba(255, 248, 220, 0.55) 50%,
    rgba(255, 248, 220, 0) 80%,
    transparent 100%
  );
  animation: cta-shine 4.6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.cta > * { position: relative; z-index: 2; }
.cta:hover { background: var(--verde); color: var(--gold-pale); }
.cta:hover .arrow { transform: translateX(4px); }

.cta .arrow {
  display: inline-block;
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.35s ease;
}
.cta .arrow::after {
  content: '';
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

@keyframes cta-shine {
  0% { left: -100%; }
  55% { left: 140%; }
  100% { left: 140%; }
}

/* Versão ghost (linha fina, transparente) — usar em fundo dourado/claro */
.cta-ghost {
  background: transparent;
  color: var(--verde);
  border-color: var(--verde);
}
.cta-ghost::after { display: none; }
.cta-ghost:hover { background: var(--verde); color: var(--gold-pale); }

.cta-microcopy {
  margin-top: 16px;
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
}
.cta-microcopy.on-dark { color: rgba(232, 213, 160, 0.82); }

/* ============================================================ */
/* HEADER · barra fina fixa                                      */
/* ============================================================ */
.topo {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px var(--gutter);
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
  pointer-events: none;
}
.topo > * { pointer-events: auto; }

.topo.solid {
  background: rgba(15, 40, 32, 0.92);
  backdrop-filter: blur(10px);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 rgba(201, 169, 97, 0.16);
}

.topo .marca {
  display: flex; align-items: center; gap: 14px;
  color: var(--cream);
}
.topo .marca svg { width: 22px; height: 22px; flex-shrink: 0; }
.topo .marca .nome-evento {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-pale);
  padding-left: 0.34em;
}

.topo .meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 236, 223, 0.78);
}
.topo .meta .sep { color: var(--gold); opacity: 0.55; }

.topo .topo-cta {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  padding: 10px 18px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  transition: background 0.3s ease, color 0.3s ease;
}
.topo .topo-cta:hover { background: var(--gold); color: var(--verde); }

@media (max-width: 880px) {
  .topo .meta { display: none; }
  .topo .topo-cta { display: none; }
}

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  background: var(--verde-deep);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

/* Painel de conteúdo (esquerda) */
.hero-painel {
  position: relative;
  padding: clamp(88px, 11vh, 124px) clamp(36px, 5vw, 88px) clamp(40px, 5vh, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2.4vh, 28px);
  z-index: 2;
}

.hero-painel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(201, 169, 97, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(15, 40, 32, 0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Logo grande no hero (substitui a antiga eyebrow-row) */
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  text-decoration: none;
  align-self: flex-start;
  padding-bottom: 4px;
}
.hero-logo-mark {
  width: 72px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold);
}
.hero-logo-name {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-pale);
  padding-left: 0.42em;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-logo-mark { width: 56px; height: 28px; }
  .hero-logo-name { font-size: 12px; letter-spacing: 0.34em; }
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
}
.hero-eyebrow-row .rule { background: var(--gold); opacity: 0.65; flex: 1; max-width: 64px; }
.hero-eyebrow-row .text {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  padding-left: 0.42em;
}

.hero-headline {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--cream);
  max-width: 18ch;
}
.hero-headline .ital { font-style: italic; color: var(--gold-pale); }
.hero-headline .quebra { display: block; }
.hero-headline.long { font-size: clamp(34px, 4.4vw, 60px); max-width: 24ch; }
.hero-headline.medium { font-size: clamp(36px, 4.8vw, 64px); max-width: 22ch; }

.hero-sub {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.55;
  color: rgba(241, 236, 223, 0.92);
  max-width: 48ch;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 236, 223, 0.85);
  flex-wrap: wrap;
}
.hero-meta .item { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta .sep { color: var(--gold); opacity: 0.55; }
.hero-meta svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-actions .cta { background: var(--gold); color: var(--verde); border-color: var(--gold); }
.hero-actions .cta:hover { background: var(--cream); color: var(--verde); border-color: var(--cream); }

.hero-vagas {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 13.5px;
  color: rgba(232, 213, 160, 0.85);
}
.hero-vagas .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
  animation: pulse-soft 2.6s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(201, 169, 97, 0.05); }
}

/* Painel de retrato (direita) */
.hero-retrato {
  position: relative;
  overflow: hidden;
  background: var(--verde);
  z-index: 1;
}

.hero-retrato::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 40, 32, 0.0) 60%, rgba(10, 27, 20, 0.55) 100%),
              linear-gradient(90deg, rgba(15, 40, 32, 0.55) 0%, transparent 30%);
  z-index: 2;
  pointer-events: none;
}

.hero-retrato img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.92) brightness(0.96);
}

/* Modo cutout — quando heroPhoto for lilian-palestrando (PNG sem fundo) */
.hero-retrato.is-cutout {
  background:
    radial-gradient(ellipse at 50% 65%, rgba(201, 169, 97, 0.14) 0%, transparent 70%),
    var(--verde-deep);
}
.hero-retrato.is-cutout img {
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 0 80px rgba(201, 169, 97, 0.3)) drop-shadow(0 20px 60px rgba(0,0,0,0.45));
}

/* Marca d'água Cinzel vertical no retrato */
.hero-watermark {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(232, 213, 160, 0.65);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding-left: 0.42em;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-painel {
    padding-top: 110px;
    padding-bottom: 56px;
    order: 2;
  }
  .hero-retrato {
    order: 1;
    aspect-ratio: 4 / 5;
    max-height: 78vh;
  }
  .hero-watermark { display: none; }
}

/* ============================================================ */
/* SEÇÃO genérica · respiros e larguras                          */
/* ============================================================ */
.section {
  position: relative;
  padding: clamp(80px, 14vh, 144px) var(--gutter);
}
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-inner.narrow { max-width: var(--max-w-narrow); }

.section.on-dark { background: var(--verde); color: var(--cream); }
.section.on-dark .h-section { color: var(--cream); }
.section.on-dark .h-section em { color: var(--gold-pale); }
.section.on-dark .body-serif { color: rgba(241, 236, 223, 0.92); }
.section.on-dark .lede { color: rgba(241, 236, 223, 0.92); }

.section.on-cream-soft { background: var(--cream-soft); }
.section.on-cream-deep { background: var(--cream-deep); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(40px, 6vh, 72px);
}
.section-head.center { align-items: center; text-align: center; }
.section-head.center .h-section { max-width: 26ch; }

.section-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-head.center .section-eyebrow-row { justify-content: center; }
.section-eyebrow-row .rule { background: var(--gold); opacity: 0.5; flex: 0 0 28px; height: 1px; }

/* ============================================================ */
/* BLOCO · DOR (perguntas)                                       */
/* ============================================================ */
.dor-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
  border-top: 1px solid var(--rule);
}

.dor-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: padding 0.4s ease;
}

.dor-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 36px);
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: 0.02em;
}

.dor-q {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 50ch;
}

.dor-fechamento {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
  color: var(--verde);
  max-width: 56ch;
  margin-bottom: 40px;
}
.dor-fechamento strong { font-weight: 500; font-style: normal; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* ============================================================ */
/* BLOCO · STORYTELLING                                          */
/* ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  margin-bottom: 72px;
}

.story-text { display: flex; flex-direction: column; gap: 24px; }

.story-tres {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--gold);
  padding-left: 22px;
  margin-top: 8px;
}
.story-tres li {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--verde);
  list-style: none;
}

.story-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.story-fotos .ph {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
}
.story-fotos .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.97);
  transition: transform 1s ease;
}
.story-fotos .ph:hover img { transform: scale(1.03); }
.story-fotos .ph:nth-child(1) { transform: translateY(-18px); }
.story-fotos .ph:nth-child(4) { transform: translateY(18px); }

.story-pullquote {
  position: relative;
  padding: 56px clamp(28px, 5vw, 88px);
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.story-pullquote::before,
.story-pullquote::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 1px; height: 28px;
  background: var(--gold);
}
.story-pullquote::before { top: -14px; }
.story-pullquote::after  { bottom: -14px; }

.story-pullquote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.35;
  color: var(--verde);
  max-width: 32ch;
  margin: 0 auto;
}
.story-pullquote p strong {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-fotos .ph:nth-child(1),
  .story-fotos .ph:nth-child(4) { transform: none; }
}

/* ============================================================ */
/* BLOCO · CONEXÕES (4 cards)                                    */
/* ============================================================ */
.conexoes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.conexoes-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.5s ease;
}
.conexoes-card:hover { transform: translateY(-4px); }

.conexoes-foto {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--verde);
  margin-bottom: 18px;
}
.conexoes-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
  transition: transform 1s ease;
}
.conexoes-card:hover .conexoes-foto img { transform: scale(1.05); }

.conexoes-num {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-left: 0.42em;
  margin-bottom: 10px;
}

.conexoes-texto {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
  color: var(--ink);
}

@media (max-width: 980px) { .conexoes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .conexoes-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================ */
/* BLOCO · MAPA DO REENCONTRO                                    */
/* ============================================================ */
.section.mapa {
  background: var(--verde-deep);
  color: var(--cream);
  overflow: hidden;
}

.section.mapa .h-section { color: var(--cream); }
.section.mapa .h-section em { color: var(--gold-pale); }

.mapa-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.10;
}
.mapa-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.4) contrast(1.05);
  mask-image: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
}

.section.mapa .section-inner { position: relative; z-index: 1; max-width: 960px; }

.mapa-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(40px, 8vh, 88px);
  margin-bottom: clamp(40px, 8vh, 72px);
  border-top: 1px solid rgba(201, 169, 97, 0.35);
}

.mapa-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(36px, 6vh, 56px) 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  align-items: start;
}

.mapa-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(68px, 8vw, 116px);
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.mapa-corpo { display: flex; flex-direction: column; gap: 16px; max-width: 56ch; }

/* Mapa V2 · etapa label (eyebrow acima do título) */
.mapa-etapa {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.42em;
  margin-bottom: 2px;
  display: block;
}

.mapa-titulo {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  color: var(--cream);
  letter-spacing: -0.005em;
}

.mapa-pergunta {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--gold-pale);
  padding-left: 20px;
  border-left: 1px solid var(--gold);
}

.mapa-texto {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: rgba(241, 236, 223, 0.86);
}

.mapa-fecho {
  margin-top: clamp(40px, 8vh, 72px);
  text-align: center;
  max-width: 64ch;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mapa-fecho h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--gold-pale);
}
.mapa-fecho p {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: rgba(241, 236, 223, 0.88);
}

@media (max-width: 700px) {
  .mapa-item { grid-template-columns: 1fr; gap: 16px; }
  .mapa-num { font-size: 72px; }
}

/* ============================================================ */
/* BLOCO · INCLUSO                                               */
/* ============================================================ */
.incluso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.incluso-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 28px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.incluso-ico {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 4px;
  color: var(--gold-deep);
}
.incluso-ico svg { width: 22px; height: 22px; }

.incluso-texto {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.45;
  color: var(--ink);
}
.incluso-texto strong { font-weight: 500; color: var(--verde); }

@media (max-width: 700px) { .incluso-grid { grid-template-columns: 1fr; } }

/* ============================================================ */
/* BLOCO · LOCAL                                                 */
/* ============================================================ */
.section.local {
  background: var(--verde);
  color: var(--cream);
}
.section.local .h-section { color: var(--cream); }
.section.local .h-section em { color: var(--gold-pale); }

.local-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  color: var(--gold-pale);
}
.local-meta .item { display: inline-flex; align-items: center; gap: 10px; }
.local-meta svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.local-meta .tbd { font-style: italic; opacity: 0.65; font-size: 12.5px; color: rgba(241,236,223,0.7); }
.local-meta .sep { color: var(--gold); opacity: 0.45; }

.local-fotos {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 12px;
  margin: 48px 0 32px;
}
.local-fotos .ph {
  overflow: hidden;
  background: var(--verde-deep);
}
.local-fotos .ph:nth-child(1) { aspect-ratio: 4 / 5; }
.local-fotos .ph:nth-child(2) { aspect-ratio: 4 / 5; transform: translateY(28px); }
.local-fotos .ph:nth-child(3) { aspect-ratio: 4 / 5; }
.local-fotos .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.92);
  transition: transform 1s ease;
}
.local-fotos .ph:hover img { transform: scale(1.04); }

.local-nota {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(241, 236, 223, 0.78);
  max-width: 52ch;
  margin: 32px auto 36px;
  text-align: center;
}

@media (max-width: 800px) {
  .local-fotos { grid-template-columns: 1fr; }
  .local-fotos .ph:nth-child(2) { transform: none; }
}

/* ============================================================ */
/* BLOCO · OFERTA (ticket editorial)                             */
/* ============================================================ */
.section.oferta { background: var(--cream-soft); }

.ticket {
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--rule-strong);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(15, 40, 32, 0.28);
}

.ticket::before, .ticket::after {
  content: '';
  position: absolute;
  left: -1px; right: -1px;
  height: 14px;
  background-image: radial-gradient(circle, var(--cream-soft) 4px, transparent 4.5px);
  background-size: 16px 14px;
  background-position: 0 50%;
  background-repeat: repeat-x;
}
.ticket::before { top: 70%; transform: translateY(-50%); }
.ticket::after  { display: none; }

.ticket-topo {
  padding: 28px 32px 18px;
  text-align: center;
  border-bottom: 1px dashed var(--rule-strong);
}
.ticket-eyebrow {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-left: 0.42em;
}
.ticket-nome {
  margin-top: 8px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--verde);
}

.ticket-valor {
  padding: 36px 32px 28px;
  text-align: center;
}
.ticket-prefix {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ticket-preco {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 6vw, 76px);
  line-height: 1.0;
  color: var(--verde);
  letter-spacing: -0.02em;
  margin: 8px 0 6px;
}
.ticket-preco .moeda {
  font-size: 0.45em;
  font-style: italic;
  color: var(--gold-deep);
  vertical-align: top;
  margin-right: 4px;
  letter-spacing: 0;
}
.ticket-avista {
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.ticket-avista strong { color: var(--verde); font-weight: 600; }

.ticket-selo {
  background: var(--verde);
  color: var(--gold-pale);
  padding: 14px 24px;
  text-align: center;
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  padding-left: calc(24px + 0.42em);
}

.ticket-incluso {
  padding: 28px 32px 8px;
}
.ticket-incluso h3 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.ticket-incluso ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ticket-incluso li {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.45;
  color: var(--ink);
}
.ticket-incluso li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  transform: translateY(2px);
}

.ticket-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: var(--verde);
  color: var(--gold-pale);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 22px 28px;
  border: 0;
  margin-top: 24px;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ticket-cta::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(232, 213, 160, 0.4), transparent);
  animation: cta-shine 4.6s ease-in-out infinite;
  z-index: 1;
}
.ticket-cta > * { position: relative; z-index: 2; }
.ticket-cta:hover { background: var(--gold); color: var(--verde); }

.ticket-micro {
  text-align: center;
  padding: 16px 28px 22px;
  font-family: var(--ff-body);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================ */
/* BLOCO · BIO LILIAN                                            */
/* ============================================================ */
.section.bio { background: var(--cream); }

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.bio-foto {
  position: sticky;
  top: 96px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
}
.bio-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.92) brightness(0.97);
}

.bio-conteudo { display: flex; flex-direction: column; gap: 22px; }
.bio-conteudo .eyebrow-row { display: flex; align-items: center; gap: 14px; }
.bio-conteudo .eyebrow-row .rule { background: var(--gold); opacity: 0.55; flex: 0 0 28px; height: 1px; }

.bio-nome {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--verde);
}
.bio-nome em { font-style: italic; color: var(--ink-soft); font-weight: 400; }

.bio-conteudo .body-serif { margin-top: 4px; }
.bio-conteudo .body-serif strong { color: var(--verde); font-weight: 500; }

.bio-credenciais {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--rule);
}
.bio-credencial {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bio-credencial:nth-child(odd) { padding-right: 18px; border-right: 1px solid var(--rule); padding-left: 0; }
.bio-credencial:nth-child(even) { padding-left: 18px; }
.bio-credencial .label {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-left: 0.34em;
}
.bio-credencial .value {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.3;
  color: var(--ink);
}
.bio-credencial .value em { font-style: italic; color: var(--ink-soft); font-weight: 400; }

.bio-assinatura {
  margin-top: 18px;
  padding: 26px 28px;
  background: var(--verde);
  color: var(--gold-pale);
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
}

@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-foto { position: static; max-width: 460px; margin: 0 auto; }
}

/* ============================================================ */
/* BLOCO · FAQ + CTA FINAL                                       */
/* ============================================================ */
.section.faq { background: var(--cream); }

.faq-grid {
  max-width: 1180px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.faq-suporte { display: flex; flex-direction: column; gap: 22px; padding-top: 12px; }
.faq-suporte .h-section { font-size: clamp(28px, 3vw, 40px); }
.faq-suporte .body-serif { font-size: clamp(16px, 1.25vw, 19px); }

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  background: var(--verde);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.cta-whatsapp:hover { background: var(--gold); color: var(--verde); }
.cta-whatsapp svg { width: 18px; height: 18px; }

.faq-lista { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); }

details.faq-item { border-bottom: 1px solid var(--rule); }

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.35;
  color: var(--verde);
  transition: color 0.3s ease;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--gold-deep); }

details.faq-item .toggle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-weight: 300;
}
details.faq-item[open] .toggle { transform: rotate(45deg); }

details.faq-item .resposta {
  padding: 0 0 24px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}

.cta-final {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}
.cta-final h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.25;
  color: var(--verde);
  max-width: 24ch;
}

@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */
footer.rodape {
  background: var(--verde-deep);
  color: rgba(241, 236, 223, 0.78);
  padding: 56px var(--gutter) 36px;
  text-align: center;
}
footer.rodape .marca-fim {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--gold-pale);
}
footer.rodape .marca-fim svg { width: 24px; height: 24px; flex-shrink: 0; }
footer.rodape .marca-fim .nome {
  font-family: var(--ff-eyebrow);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  padding-left: 0.42em;
}

footer.rodape .meta {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 22px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
footer.rodape .meta .sep { color: var(--gold); opacity: 0.55; }

footer.rodape .lgpd {
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--ff-body);
  font-size: 11.5px;
  line-height: 1.65;
  opacity: 0.55;
}

/* ============================================================ */
/* SCROLL REVEAL                                                 */
/* ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
