/* ============================================================
   2ª JORNADA DE PRÁTICAS INTEGRATIVAS DE SAÚDE — SINTER MT
   Sistema visual: AZUL DOMINANTE (tema escuro editorial)
   ============================================================ */

:root {
  /* Marca / azuis */
  --navy: #043672;          /* cor primária — fundo DOMINANTE */
  --navy-700: #0a4d8f;      /* azul mais claro (hover/painel) */
  --navy-900: #021c39;      /* azul mais profundo (bandas) */

  /* Fundo / superfícies */
  --paper: #043672;         /* fundo dominante da página */
  --paper-2: #062f5b;       /* seções alternadas (mais profundo) */
  --white: #0b3f78;         /* superfície de cartões */
  --line: rgba(255,255,255,.14);
  --line-on-navy: rgba(255,255,255,.16);

  /* Texto */
  --ink: #f4f1ea;           /* texto principal (branco quente) */
  --ink-soft: #bacce6;      /* texto secundário */
  --ink-faint: #88a1c5;

  /* Acentos (oklch harmônico) — VERDE da paleta */
  --gold: oklch(0.80 0.135 165);    /* acento principal: verde (CTA / destaque) */
  --gold-deep: oklch(0.70 0.135 162);
  --sage: oklch(0.78 0.12 168);     /* saúde / integrativo */
  --sage-deep: oklch(0.82 0.10 168);

  /* Tipografia — fonte única, alta legibilidade */
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --serif: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  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; }
::selection { background: var(--gold); color: #042319; }

/* ---------- Tipografia base ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.08; letter-spacing: -0.015em; }
.kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.kicker--center { justify-content: center; }
.eyebrow-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 9vw, 132px); }
.lede { font-size: clamp(19px, 2vw, 22px); color: var(--ink-soft); line-height: 1.5; max-width: 58ch; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(52px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .10s; }
.reveal.d2 { transition-delay: .20s; }
.reveal.d3 { transition-delay: .30s; }
.reveal.d4 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; will-change: auto; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold {
  background: var(--gold);
  color: #042319;
  box-shadow: 0 12px 30px -12px oklch(0.70 0.135 162 / .55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px oklch(0.70 0.135 162 / .75); }
.btn--navy { background: var(--navy-700); color: #fff; }
.btn--navy:hover { transform: translateY(-2px); background: #1059a0; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.btn--ghost-light { background: transparent; color: #fff; border-color: var(--line-on-navy); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--lg { font-size: 18px; padding: 20px 34px; }

/* ============================================================
   PLACEHOLDERS DE IMAGEM (tema escuro)
   ============================================================ */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px),
    rgba(255,255,255,.04);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #cfe0f5;
}
.ph--navy {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px),
    var(--navy-900);
  border-color: var(--line-on-navy);
  color: #cfe0f5;
}
.ph__label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(2,28,57,.45);
  text-align: center;
  opacity: .85;
}

/* ============================================================
   HEADER / NAV — alinhado à largura das seções
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding-block: 16px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,.4);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(255,255,255,.78);
  box-shadow: 0 6px 24px -12px rgba(2,16,33,.45);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px;
  object-fit: contain;
  display: block;
}
.brand__txt { line-height: 1.05; }
.brand__txt b { font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: .02em; display: block; color: #fff; }
.brand__txt span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
/* header claro: texto escuro p/ contraste */
.site-header .brand__txt b { color: var(--navy); }
.site-header .brand__txt span { color: #5d6f83; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14.5px; color: #34465a; font-weight: 600; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(10,77,143,.55), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(2,28,57,.6), transparent 55%),
    var(--paper);
  padding-top: 132px;
  padding-bottom: clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 62px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 22px auto 0;
  text-wrap: pretty;
  color: #fff;
  width: 100%;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__sub { margin-top: 24px; max-width: 56ch; margin-inline: auto; }
.hero__sub strong { color: #fff; font-weight: 600; }
.hero__cta { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero__meta {
  margin-top: 38px;
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  justify-content: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  width: 100%; max-width: 820px;
}
.meta-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.meta-item svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.meta-item b { color: #fff; font-weight: 600; }

/* VSL */
.vsl { position: relative; width: 100%; max-width: 860px; margin: 40px auto 0; }
.vsl__frame { aspect-ratio: 16/9; width: 100%; border-radius: 14px; overflow: hidden; }
.vsl__play {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--gold); color: #042319;
  display: grid; place-items: center;
  border: none; cursor: pointer;
  box-shadow: 0 16px 40px -10px oklch(0.70 0.135 162 / .8);
  transition: transform .25s;
}
.vsl__play:hover { transform: scale(1.07); }
.vsl__play svg { width: 30px; height: 30px; margin-left: 4px; }
.vsl__cap {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(2,21,42,.7); backdrop-filter: blur(6px);
  color: #fff; padding: 10px 14px; border-radius: 10px;
  font-size: 13px;
}
.vsl__cap .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }
.vsl__cap b { font-weight: 600; }
.vsl__cap span { color: #b9cae3; }

@media (max-width: 880px) {
  .vsl { margin-top: 32px; }
}

/* ============================================================
   COUNTDOWN STRIP
   ============================================================ */
.strip {
  background: var(--navy-900);
  color: #fff;
  padding-block: 26px;
  border-block: 1px solid var(--line);
}
.strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.strip__label { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: #9db8db; }
.countdown { display: flex; gap: 12px; }
.cd-unit { text-align: center; min-width: 64px; }
.cd-unit b { font-family: var(--sans); font-size: 38px; line-height: 1; display: block; font-weight: 700; color: #fff; }
.cd-unit span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: #9db8db; }

/* ============================================================
   GENÉRICO — section heading
   ============================================================ */
.sec-head { max-width: 100%; }
.sec-head h2 { font-size: clamp(28px, 4vw, 50px); margin-top: 18px; text-wrap: pretty; color: #fff; }
.sec-head--center { margin-inline: auto; text-align: center; max-width: 32ch; }

/* ============================================================
   SEÇÃO 2 — VIVENCIAR
   ============================================================ */
.benefits {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.benefit { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 32px 30px; }
.benefit__ico {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(255,255,255,.08); color: var(--gold);
  display: grid; place-items: center; margin-bottom: 18px;
}
.benefit__ico svg { width: 22px; height: 22px; }
.benefit h3 { font-family: var(--sans); font-weight: 700; font-size: 17px; letter-spacing: 0; margin-bottom: 8px; line-height: 1.25; color: #fff; }
.benefit p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.benefits-quote {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--gold);
  max-width: 30ch;
  text-wrap: balance;
}

/* ============================================================
   SEÇÃO 3 — PALESTRANTES (banda profunda)
   ============================================================ */
.section--navy { background: var(--navy-900); }
.speakers {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.speaker__photo { aspect-ratio: 3/4; border-radius: 12px; overflow: hidden; background: var(--navy-900); }
.speaker__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (max-width: 820px) { .speakers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .speakers { grid-template-columns: 1fr; } }
.speaker__name { font-family: var(--sans); font-weight: 700; font-size: 16px; margin-top: 16px; color: #fff; }
.speaker__role { font-size: 13px; color: #9db8db; margin-top: 3px; }
.speaker__theme { font-size: 13px; color: var(--gold); margin-top: 10px; font-family: var(--mono); letter-spacing: .02em; line-height: 1.4; }
.speakers-note { margin-top: 40px; font-size: 14px; color: #9db8db; font-family: var(--mono); letter-spacing: .04em; }

/* ============================================================
   SEÇÃO 4 — PROBLEMA
   ============================================================ */
.problems { margin-top: 50px; display: grid; gap: 0; max-width: 820px; }
.problem {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.problem:first-child { border-top: 1px solid var(--line); }
.problem__n { font-family: var(--mono); font-size: 13px; color: var(--gold); padding-top: 5px; flex: none; }
.problem p { font-size: clamp(17px, 1.9vw, 21px); line-height: 1.45; color: var(--ink); }
.problem-cta { margin-top: 42px; font-family: var(--serif); font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; color: var(--gold); text-wrap: pretty; max-width: 100%; }

/* ============================================================
   SEÇÃO 5 — O QUE É (com números)
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__text p { margin-top: 18px; color: var(--ink-soft); }
.about__text p strong { color: #fff; font-weight: 600; }
.about__media { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.stats {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { padding: 30px 18px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat b { font-family: var(--sans); font-size: clamp(34px, 4vw, 52px); font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat span { font-size: 14px; color: var(--ink-soft); margin-top: 10px; display: block; }
@media (max-width: 760px) {
  .about__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
}

/* ============================================================
   SEÇÃO 6 — PARA QUEM É
   ============================================================ */
.audience__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 4vw, 56px); margin-top: 50px; }
.aud-list { display: grid; gap: 16px; }
.aud-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.aud-item__check { width: 26px; height: 26px; border-radius: 50%; background: var(--sage); color: #08231c; display: grid; place-items: center; flex: none; }
.aud-item__check svg { width: 15px; height: 15px; }
.aud-item p { font-size: 15.5px; line-height: 1.5; color: var(--ink-soft); }
.aud-item p strong { color: #fff; font-weight: 600; }
.not-for { background: var(--navy-900); color: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 32px 30px; align-self: start; }
.not-for h3 { font-family: var(--sans); font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 20px; }
.not-for__item { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; border-top: 1px solid var(--line-on-navy); font-size: 14.5px; color: #c4d3ea; }
.not-for__item:first-of-type { border-top: none; }
.not-for__x { color: var(--gold); flex: none; font-weight: 700; }
@media (max-width: 820px) { .audience__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SEÇÃO 7 — PROGRAMAÇÃO
   ============================================================ */
.agenda { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.day { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.day__head { background: var(--navy-900); color: #fff; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.day__head .eyebrow-num { color: #9db8db; }
.day__head h3 { font-family: var(--sans); font-weight: 700; font-size: 24px; color: #fff; margin-top: 6px; }
.day__body { padding: 10px 28px 24px; }
.slot { display: flex; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.slot:last-child { border-bottom: none; }
.slot__time { font-family: var(--mono); font-size: 13px; color: var(--gold); flex: none; width: 62px; padding-top: 2px; }
.slot__title { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.slot__title span { display: block; font-weight: 400; font-size: 13px; color: var(--ink-faint); margin-top: 2px; }
.slot--break .slot__title { color: var(--sage-deep); font-weight: 500; }
@media (max-width: 820px) { .agenda { grid-template-columns: 1fr; } }

/* ============================================================
   SEÇÃO 8 — DIFERENCIAIS
   ============================================================ */
.diffs { margin-top: 54px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.diff { padding: 30px; border-radius: 14px; background: var(--white); border: 1px solid var(--line); position: relative; }
.diff__mark { font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1; }
.diff h3 { font-family: var(--sans); font-weight: 700; font-size: 18px; margin: 16px 0 10px; color: #fff; }
.diff p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.diff--wide { grid-column: 1 / -1; background: var(--navy-900); display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; }
.diff--wide h3 { color: #fff; margin: 0; }
.diff--wide p { color: #c4d3ea; }
.diff--wide .diff__mark { font-size: 44px; }

/* ============================================================
   SEÇÃO 9/11 — GALERIA (carrossel com setas)
   ============================================================ */
.gallery { margin-top: 44px; display: flex; align-items: center; gap: 16px; }
.gallery__viewport { overflow: hidden; flex: 1; }
.gallery__track { display: flex; gap: 14px; transition: transform .5s cubic-bezier(.16,1,.3,1); will-change: transform; }
.gphoto { flex-shrink: 0; width: 420px; border-radius: 12px; overflow: hidden; background: var(--navy-900); display: block; }
.gphoto img { width: 100%; height: auto; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.gphoto:hover img { transform: scale(1.04); }
.gallery__arrow { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s, opacity .2s; }
.gallery__arrow svg { width: 22px; height: 22px; }
.gallery__arrow:hover:not(:disabled) { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.55); }
.gallery__arrow:disabled { opacity: .22; cursor: default; }
.venue__tiles .vtile:nth-child(2) { transition-delay: 100ms; }
@media (max-width: 900px) { .gphoto { width: 300px; } }
@media (max-width: 600px) { .gphoto { width: 240px; } .gallery__arrow { width: 36px; height: 36px; } .gallery__arrow svg { width: 18px; height: 18px; } }

/* ============================================================
   SEÇÃO 10 — LOCAL
   ============================================================ */
.venue__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); margin-top: 48px; }
.venue__main { aspect-ratio: 16/11; border-radius: var(--radius); overflow: hidden; background: var(--navy-900); }
.venue__main img { width: 100%; height: 100%; object-fit: cover; }
.venue__info { display: flex; flex-direction: column; }
.venue__tiles { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.venue__tiles .ph { aspect-ratio: 4/3; }
.vtile { margin: 0; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--navy-900); }
.vtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.vtile:hover img { transform: scale(1.04); }
.venue__tiles .map-embed { border-style: solid; padding: 0; }
.venue__tiles .map-embed iframe { width: 100%; height: calc(100% + 44px); margin-top: -44px; border: 0; display: block; filter: saturate(1.05); }
.venue__tiles .map-embed::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.venue__info h3 { font-family: var(--sans); font-weight: 700; font-size: clamp(24px, 3vw, 34px); color: #fff; }
.venue__addr { font-size: 17px; color: var(--ink-soft); margin-top: 10px; }
.venue__detail { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.venue__detail:first-of-type { border-top: 1px solid var(--line); margin-top: 24px; }
@media (max-width: 820px) {
  .venue__grid { grid-template-columns: 1fr; }
  .venue__tiles { grid-template-columns: 1fr; }
}
.venue__detail svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.venue__detail b { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.venue__detail span { font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   SEÇÃO 12 — INVESTIMENTO
   ============================================================ */
.tickets { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); margin-top: 50px; align-items: start; }
.ticket {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
  display: flex; flex-direction: column;
}
.ticket--vip { border-color: var(--gold); box-shadow: 0 30px 80px -28px oklch(0.70 0.135 162 / .5); }
.ticket__top { background: var(--navy-900); color: #fff; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.ticket--vip .ticket__top { background: linear-gradient(120deg, var(--navy-900), var(--sage-deep) 220%); }
.ticket__top b { font-family: var(--sans); font-weight: 700; font-size: 24px; color: #fff; }
.ticket__badge { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.12); color: #fff; padding: 6px 12px; border-radius: 999px; }
.ticket__badge--vip { background: var(--gold); color: #042319; }
.ticket__body { padding: 30px 32px; display: flex; flex-direction: column; flex: 1; }
.ticket__price { display: flex; flex-direction: column; gap: 2px; }
.ticket__price .from { font-size: 13px; color: var(--ink-faint); }
.ticket__price .amount { display: flex; align-items: baseline; white-space: nowrap; }
.ticket__price .val { font-family: var(--sans); font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.ticket__price .cents { font-family: var(--sans); font-size: 22px; font-weight: 700; color: var(--gold); }
.ticket__pay { font-size: 13px; color: var(--ink-faint); margin-top: 10px; }
.ticket__incl { display: grid; gap: 13px; margin: 24px 0; padding-top: 24px; border-top: 1px solid var(--line); list-style: none; }
.ticket__incl li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.ticket__incl li svg { width: 18px; height: 18px; color: var(--sage-deep); flex: none; margin-top: 2px; }
.ticket__incl li:first-child { font-weight: 600; color: #fff; }
.ticket__incl li.vip { color: #fff; }
.ticket__incl li.vip svg { color: var(--gold); }
.ticket__body .btn { width: 100%; justify-content: center; margin-top: auto; }
.secure-row { font-size: 13px; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.secure-row svg { width: 15px; height: 15px; }
@media (max-width: 820px) { .tickets { grid-template-columns: 1fr; } }

/* ============================================================
   SEÇÃO 13 — FAQ
   ============================================================ */
.faq { margin-top: 48px; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--ink);
}
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 26px; height: 26px; flex: none; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold); transition: transform .3s; }
.faq-icon::before { width: 14px; height: 2px; top: 12px; left: 6px; }
.faq-icon::after { width: 2px; height: 14px; top: 6px; left: 12px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-a__inner { padding: 0 4px 26px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; max-width: 70ch; }

/* ============================================================
   SEÇÃO 14 — CTA FINAL
   ============================================================ */
.final {
  background:
    radial-gradient(900px 500px at 20% 120%, rgba(10,77,143,.55), transparent 60%),
    var(--navy-900);
  text-align: center;
}
.final h2 { font-size: clamp(32px, 5vw, 64px); color: #fff; text-wrap: pretty; max-width: 26ch; margin: 18px auto 0; }
.final p { color: #c4d3ea; max-width: 56ch; margin: 22px auto 0; }
.final__big { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; color: var(--gold); margin: 30px auto 0; }
.final .btn { margin-top: 36px; }
.final__fine { margin-top: 26px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; color: #8aa4c8; text-transform: uppercase; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: #b9cae3; padding-block: 50px; border-top: 1px solid var(--line-on-navy); }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
.footer .brand__mark { background: transparent; }
.footer .brand__txt b { color: #fff; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #7d97bd; margin-bottom: 14px; }
.footer a, .footer p { font-size: 14px; color: #b9cae3; line-height: 1.7; }
.footer a:hover { color: #fff; }
.footer__bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line-on-navy); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #7d97bd; }
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 24px; } }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(4,29,58,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transform: translateY(120%); transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.sticky-cta.show { transform: none; }
.sticky-cta__info b { font-family: var(--sans); font-weight: 700; font-size: 16px; display: block; color: #fff; }
.sticky-cta__info span { font-size: 12px; color: var(--ink-faint); }
.sticky-cta .btn { flex: none; }
@media (min-width: 901px) { .sticky-cta { display: none; } }

/* VSL modal */
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; background: rgba(2,16,33,.82); backdrop-filter: blur(6px); }
.modal.open { display: grid; }
.modal__box { width: min(900px, 100%); aspect-ratio: 16/9; background: var(--navy-900); border-radius: 16px; position: relative; overflow: hidden; }
.modal__close { position: absolute; top: -42px; right: 0; background: none; border: none; color: #fff; cursor: pointer; font-size: 14px; font-family: var(--mono); letter-spacing: .1em; }
.modal__box .ph { width: 100%; height: 100%; border-radius: 16px; }
