/* ================================================================
   PREMIUM.CSS — IA na Psicofarmacologia · Edição N.º 02
   Editorial Quiet Luxury · Ink + Bone Paper + Muted Gold + Terracotta
   Type: Instrument Serif + Geist + JetBrains Mono
================================================================ */

/* ─────────────────────────────────────────────
   1. TOKENS
───────────────────────────────────────────── */
:root {
  /* ── Symposium Dark ──
     Base #091A2F · Profundo #0E3252 · Tecnologia #06B6D4
     CTA/Urgência #F59E0B · Texto #F8FAFC                 */

  /* Tinta & papel */
  --ink:           #091A2F;   /* Base · azul noturno */
  --ink-2:         rgba(14, 50, 82, 0.55);
  --paper:         #F8FAFC;   /* Texto · branco frio */
  --paper-2:       #E2E8F0;
  --paper-soft:    #F1F5F9;

  /* Profundo (seção oferta) */
  --sienna-deep:   #0E3252;
  --sienna-2:      #091A2F;

  /* Texto */
  --text-on-ink:    #F8FAFC;
  --text-on-ink-2:  #94A3B8;
  --text-on-ink-3:  #64748B;
  --text-on-paper:  #091A2F;
  --text-on-paper-2:#475569;

  /* Acentos — Tecnologia (teal/ciano) substitui o ouro/esmeralda */
  --gold:          #06B6D4;
  --gold-soft:     #22D3EE;
  --gold-deep:     #0891B2;
  --emerald:       #06B6D4;

  /* Acento de URGÊNCIA — âmbar */
  --rust:          #F59E0B;
  --rust-deep:     #D97706;
  --rust-soft:     #FBBF24;
  --rust-glow:     rgba(245, 158, 11, 0.45);

  /* Filetes */
  --hairline-ink:    rgba(248, 250, 252, 0.14);
  --hairline-paper:  rgba(9, 26, 47, 0.18);
  --hairline-gold:   rgba(6, 182, 212, 0.36);
  --hairline-rust:   rgba(245, 158, 11, 0.35);

  /* Tipografia */
  --serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --max:        1280px;
  --max-narrow: 880px;
  --pad-x:      clamp(20px, 4vw, 64px);

  /* Movimento */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --dur-rev: 720ms;
}

/* ─────────────────────────────────────────────
   2. RESET + base
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-on-ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern", "liga";
  overflow-x: hidden;
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
em, i { font-style: italic; }

::selection { background: var(--rust); color: var(--paper); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js-reveal, .reveal-line { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .marquee-track { animation: none !important; }
}

/* ─────────────────────────────────────────────
   3. PRIMITIVAS
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow { max-width: var(--max-narrow); }

.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-ink-2);
}
.overline::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.overline--gold { color: var(--gold); }
.overline--ink  { color: var(--text-on-paper-2); }
.overline--rust { color: var(--rust); }

.section-head {
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 880px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center .overline { justify-content: center; }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--text-on-ink);
  margin-top: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title--ink  { color: var(--text-on-paper); }
.section-title--ink em { color: var(--emerald); }
.section-title--center { text-align: center; }

.instrument-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

.js-reveal { opacity: 1; transform: none; }
.js-reveal.is-visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────
   4. BOTÕES — CTA principal em terracota
───────────────────────────────────────────── */
.btn-ink {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 340px;
  padding: 20px 28px;
  background: var(--rust);
  color: var(--paper);
  border: 1px solid var(--rust-deep);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 14px 40px -10px var(--rust-glow),
    0 0 0 1px rgba(245, 158, 11, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  transition:
    transform 320ms var(--ease),
    background 320ms var(--ease),
    box-shadow 320ms var(--ease);
}
.btn-ink__label {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.btn-ink__price {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.85);
  border-left: 1px solid rgba(248, 250, 252, 0.28);
  padding-left: 18px;
}
.btn-ink:hover {
  background: var(--rust-deep);
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px -12px var(--rust-glow),
    0 0 0 1px rgba(245, 158, 11, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}
.btn-ink:active {
  transform: translateY(0);
  box-shadow:
    0 6px 16px -6px var(--rust-glow),
    inset 0 2px 0 rgba(0, 0, 0, 0.18);
}
.btn-ink > * { position: relative; z-index: 1; }
.btn-ink--full {
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
}
.btn-ink--full .btn-ink__label {
  font-size: 17px;
  white-space: normal;
}
.btn-ink--full .btn-ink__price {
  flex-shrink: 0;
}

/* Variante para fundo claro (Manifesto) — também filled, garante destaque */
.btn-paper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--paper);
  background: var(--rust);
  padding: 18px 30px;
  border: 1px solid var(--rust-deep);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 16px 42px -10px var(--rust-glow),
    0 0 0 1px rgba(245, 158, 11, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.14);
  transition:
    transform 320ms var(--ease),
    background 320ms var(--ease),
    box-shadow 320ms var(--ease);
}
.btn-paper::after {
  content: "→";
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  transition: transform 320ms var(--ease);
  position: relative;
  z-index: 1;
}
.btn-paper > * { position: relative; z-index: 1; }
.btn-paper:hover {
  background: var(--rust-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow:
    0 22px 52px -12px var(--rust-glow),
    0 0 0 1px rgba(245, 158, 11, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}
.btn-paper:hover::after { transform: translateX(8px); }
.btn-paper:active {
  transform: translateY(0);
  box-shadow:
    0 6px 16px -6px var(--rust-glow),
    inset 0 2px 0 rgba(0, 0, 0, 0.18);
}

/* ─────────────────────────────────────────────
   5. ISSUE BAR (sticky) — centralizada
───────────────────────────────────────────── */
.issue-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #D97706 0%, #F59E0B 50%, #D97706 100%);
  border-bottom: 1px solid rgba(180, 90, 0, 0.4);
}
.issue-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Chip do lote */
.issue-bar__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 2px;
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.issue-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

/* Texto de urgência centralizado */
.issue-bar__urgency {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.005em;
}
.issue-bar__urgency strong {
  font-family: var(--mono);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-left: 2px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA da barra fixa */
.issue-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D97706;
  background: #fff;
  padding: 10px 20px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.25);
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}
.issue-bar__cta:hover {
  background: #FEF3C7;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .issue-bar__inner { gap: 10px; padding: 10px var(--pad-x); }
  .issue-bar__urgency { font-size: 12px; flex-basis: 100%; text-align: center; order: 2; }
  .issue-bar__chip { order: 1; font-size: 10px; padding: 5px 10px; }
  .issue-bar__cta { order: 3; padding: 8px 14px; font-size: 12px; }
}

/* ─────────────────────────────────────────────
   6. CAPA / HERO — 2 colunas (sem sidebar)
───────────────────────────────────────────── */
.capa {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 0;
  background:
    radial-gradient(ellipse at 80% 25%, rgba(6, 182, 212, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 55%),
    var(--ink);
  overflow: hidden;
}

.capa__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-areas: "main portrait";
  column-gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.capa__main     { grid-area: main; }
.capa__portrait { grid-area: portrait; }

@media (max-width: 1100px) {
  .capa__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "portrait";
    row-gap: 56px;
  }
}

/* Título */
.capa__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--text-on-ink);
}
.capa__title em {
  color: var(--gold);
  font-style: italic;
}
.capa__title--soft {
  color: var(--text-on-ink-2);
  font-style: italic;
  display: block;
  margin-top: 6px;
}

.reveal-line { display: block; }
.reveal-line.is-visible { }

.capa__lede {
  margin-top: 24px;
  max-width: 56ch;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--text-on-ink-2);
}
.capa__lede em {
  color: var(--text-on-ink);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.06em;
}

/* ── Hero · 3 bullets curtos com ícones ── */
.hero-bullets {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 56ch;
}
.hero-bullets__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-on-ink-2);
}
.hero-bullets__item strong {
  font-weight: 500;
  color: var(--text-on-ink);
}
.hero-bullets__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.92;
}
.hero-bullets__emoji {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Hero · Box destacado do evento ── */
.hero-event {
  margin-top: 28px;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 14px 22px;
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid var(--hairline-gold);
  border-radius: 2px;
  flex-wrap: wrap;
  position: relative;
}
.hero-event::before,
.hero-event::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--gold);
}
.hero-event::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-event::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero-event__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 18px;
}
.hero-event__item:first-child { padding-left: 4px; }
.hero-event__item:last-child  { padding-right: 4px; }
.hero-event__label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hero-event__value {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.2;
  color: var(--text-on-ink);
  white-space: nowrap;
}
.hero-event__sep {
  width: 1px;
  background: var(--hairline-ink);
  align-self: stretch;
  margin: 4px 0;
}

@media (max-width: 640px) {
  .hero-bullets { margin-top: 22px; gap: 10px; }
  .hero-bullets__item { font-size: 14px; gap: 12px; }
  .hero-bullets__icon { width: 20px; height: 20px; }

  .hero-event {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px;
    width: 100%;
  }
  .hero-event__item {
    padding: 6px 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
  }
  .hero-event__item:first-child,
  .hero-event__item:last-child { padding-left: 0; padding-right: 0; }
  .hero-event__sep {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .hero-event__label { font-size: 9px; }
  .hero-event__value { font-size: 15px; white-space: normal; text-align: right; }
}

.capa__action {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.capa__action-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-on-ink-3);
  text-transform: uppercase;
}
.dotmark {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

/* Retrato — sem moldura, sangrando no fundo do hero */
.capa__portrait {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.portrait-frame {
  position: relative;
  /* desmoldurado: sem borda, sem padding, sem cantos áureos */
  border: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}
.portrait-frame::before,
.portrait-frame::after { content: none; }

.portrait-placeholder,
.portrait-photo {
  width: 112%;                 /* leve sangria pra fora da coluna */
  height: auto;
  aspect-ratio: 600 / 760;
  display: block;
  margin-left: -6%;
  margin-top: -8%;
  position: relative;
  z-index: 1;
}
.portrait-photo {
  object-fit: cover;
  object-position: 50% 28%;
  filter: contrast(1.04) saturate(1.06);
  transition: filter 480ms var(--ease);

  /* Máscara que dissolve as bordas no fundo navy do hero — vinheta suave */
  -webkit-mask-image:
    radial-gradient(ellipse 78% 88% at 55% 42%,
      #000 0%,
      #000 48%,
      rgba(0,0,0,0.85) 64%,
      rgba(0,0,0,0.4)  82%,
      transparent      100%);
          mask-image:
    radial-gradient(ellipse 78% 88% at 55% 42%,
      #000 0%,
      #000 48%,
      rgba(0,0,0,0.85) 64%,
      rgba(0,0,0,0.4)  82%,
      transparent      100%);
}
.portrait-frame:hover .portrait-photo {
  filter: contrast(1.06) saturate(1.12);
}

/* Halo sutil ciano por trás — “luz de palco” na hero
   (::before pinta antes do conteúdo, então fica naturalmente atrás da foto) */
.portrait-frame {
  isolation: isolate;
}
.portrait-caption {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portrait-name {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  color: var(--text-on-ink);
  margin-top: 4px;
}
.portrait-role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-on-ink-2);
}
@media (max-width: 1100px) {
  .capa__portrait { max-width: 380px; }
}

/* Marquee */
.capa__marquee {
  border-top: 1px solid var(--hairline-ink);
  border-bottom: 1px solid var(--hairline-ink);
  background: var(--ink);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--paper);
  padding: 0 var(--pad-x);
}
.marquee-track span { display: inline-block; }
.marquee-track span[aria-hidden="true"] {
  color: var(--gold-soft);
  font-size: 22px;
  line-height: 0.9;
}

/* ─────────────────────────────────────────────
   7. PROGRAMA — com glifos de IA
───────────────────────────────────────────── */
.programa {
  padding-bottom: clamp(80px, 11vw, 160px);
  background: var(--ink);
  border-top: 1px solid var(--hairline-ink);
  position: relative;
}

/* ── Banner do expert: imagem lateral direita, sem corte, rosto visível ── */
.programa-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: clamp(560px, 52vw, 680px);
  display: flex;
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* Elemento da imagem — absoluto, canto direito, contain sem corte */
.programa-banner__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 100%;
  background-image: url('assets/jose-afonso.webp');
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: 1;

  /* Máscara: dissolve borda esquerda e topo no fundo escuro */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 32%),
    linear-gradient(to bottom, transparent 0%, black 16%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, black 32%),
    linear-gradient(to bottom, transparent 0%, black 16%);
  mask-composite: intersect;
}

/* Gradiente overlay — reforça leitura do texto à esquerda */
.programa-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9, 26, 47, 1.00)  0%,
    rgba(9, 26, 47, 0.96) 32%,
    rgba(9, 26, 47, 0.40) 62%,
    rgba(9, 26, 47, 0.00) 100%
  );
  z-index: 2;
}

/* Conteúdo textual — esquerda, respiro total */
.programa-banner__content {
  position: relative;
  z-index: 3;
  padding: clamp(48px, 6vw, 72px) var(--pad-x);
  max-width: 50%;
}

.programa-banner .overline {
  color: var(--gold-soft);
  display: block;
  margin-bottom: 12px;
}

.programa-banner .section-title {
  color: var(--paper);
}

/* Mobile: imagem absoluta ao fundo, título sobreposto na base */
@media (max-width: 640px) {
  .programa-banner {
    min-height: 480px;
    align-items: flex-end;
  }

  .programa-banner__img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 85%;
    height: 88%;
    background-position: right bottom;
    background-size: contain;
    opacity: 1;

    -webkit-mask-image:
      linear-gradient(to right,  transparent 0%, black 22%),
      linear-gradient(to bottom, transparent 0%, black 10%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right,  transparent 0%, black 22%),
      linear-gradient(to bottom, transparent 0%, black 10%);
    mask-composite: intersect;
  }

  .programa-banner__overlay {
    background: linear-gradient(
      to top,
      rgba(9, 26, 47, 1.00)  0%,
      rgba(9, 26, 47, 0.88) 22%,
      rgba(9, 26, 47, 0.28) 52%,
      rgba(9, 26, 47, 0.00) 100%
    );
  }

  .programa-banner__content {
    max-width: 100%;
    padding: 0 var(--pad-x) 36px;
  }
}

/* Decoração de rede neural — discreta, atrás do título */
.programa-neural {
  position: absolute;
  top: 60px;
  right: var(--pad-x);
  width: 200px;
  height: 90px;
  opacity: 0.32;
  pointer-events: none;
  color: var(--gold);
}
@media (max-width: 900px) { .programa-neural { display: none; } }

.programa-list {
  display: flex;
  flex-direction: column;
}
.programa-item {
  display: grid;
  grid-template-columns: 110px 1fr 56px 90px;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--hairline-ink);
  position: relative;
  transition: background 320ms var(--ease);
}
.programa-item:last-child { border-bottom: 1px solid var(--hairline-ink); }
.programa-item:hover { background: rgba(6, 182, 212, 0.025); }

.programa-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  color: var(--text-on-ink);
  font-feature-settings: "lnum";
  letter-spacing: -0.02em;
  align-self: start;
}
.programa-item--gold .programa-num {
  color: var(--gold);
  font-style: italic;
}

.programa-body { align-self: center; }
.programa-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--text-on-ink);
  max-width: 30ch;
}
.programa-body p {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-on-ink-2);
  max-width: 58ch;
}
.programa-body p em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-on-ink);
  font-size: 1.08em;
}

/* Glifo de IA — centro */
.programa-glyph {
  width: 56px;
  height: 56px;
  color: var(--gold);
  opacity: 0.85;
  transition: transform 380ms var(--ease), opacity 380ms var(--ease);
  align-self: center;
  justify-self: center;
}
.programa-item:hover .programa-glyph {
  transform: scale(1.08) rotate(-2deg);
  opacity: 1;
}
.programa-item--gold .programa-glyph { color: var(--gold-soft); }

/* Tag à direita */
.programa-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-ink-3);
  padding: 4px 10px;
  border: 1px solid var(--hairline-ink);
  border-radius: 1px;
  justify-self: end;
  align-self: center;
  white-space: nowrap;
}
.programa-tag--gold {
  color: var(--gold);
  border-color: var(--hairline-gold);
  background: rgba(6, 182, 212, 0.06);
}

@media (max-width: 760px) {
  .programa-item {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num glyph"
      "body body"
      "tag tag";
    gap: 14px 20px;
  }
  .programa-num   { grid-area: num; font-size: 64px; }
  .programa-glyph { grid-area: glyph; width: 44px; height: 44px; justify-self: end; }
  .programa-body  { grid-area: body; }
  .programa-tag   { grid-area: tag; justify-self: start; }
}

/* ─────────────────────────────────────────────
   8. MANIFESTO
───────────────────────────────────────────── */
.manifesto {
  padding: clamp(80px, 11vw, 160px) 0;
  background: var(--paper);
  color: var(--text-on-paper);
  position: relative;
}
.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background-image: linear-gradient(90deg, var(--hairline-paper) 50%, transparent 50%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  opacity: 0.35;
}
.manifesto::before { top: 0; }
.manifesto::after  { bottom: 0; }

.manifesto-quote {
  position: relative;
  margin-top: 28px;
  padding-left: clamp(40px, 6vw, 80px);
}
.pull-mark {
  position: absolute;
  top: -28px;
  left: -10px;
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 1;
  color: var(--rust);
  opacity: 0.32;
  font-style: italic;
  user-select: none;
}
.manifesto-quote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--text-on-paper);
  margin-bottom: 24px;
}
.manifesto-quote p em {
  font-style: italic;
  color: var(--rust-deep);
}
.manifesto-quote__kicker {
  font-size: clamp(18px, 1.8vw, 22px) !important;
  line-height: 1.45 !important;
  color: var(--text-on-paper-2) !important;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-paper);
  font-family: var(--sans) !important;
}
.manifesto-quote__kicker strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--text-on-paper);
}

.manifesto-action {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-left: clamp(40px, 6vw, 80px);
}
.manifesto-aside {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-on-paper-2);
  opacity: 0.7;
}

/* ─────────────────────────────────────────────
   9. CENÁRIO
───────────────────────────────────────────── */
.cenario {
  padding: clamp(80px, 11vw, 160px) 0;
  background: var(--ink);
  border-top: 1px solid var(--hairline-ink);
}

.cenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 72px;
}
@media (max-width: 820px) {
  .cenario-grid { grid-template-columns: 1fr; gap: 48px; }
}

.cenario-stat {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.cenario-stat__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 11vw, 156px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-on-ink);
  font-feature-settings: "lnum";
}
.cenario-stat__num--date {
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--gold);
}
.cenario-stat__rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 22px 0 18px;
}
.cenario-stat__label {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-on-ink);
  max-width: 26ch;
}
.cenario-stat__src {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-ink-3);
}

.cenario-kicker {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: var(--text-on-ink-2);
}
.cenario-kicker em {
  color: var(--gold);
  font-style: italic;
}
.cenario-final {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  color: var(--text-on-ink);
  letter-spacing: -0.01em;
}
.cenario-final em {
  font-style: italic;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   10. ACESSO — Terracota / Urgência
───────────────────────────────────────────── */
.acesso {
  padding: clamp(80px, 11vw, 160px) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--sienna-deep) 0%, var(--sienna-2) 100%);
  border-top: 2px solid var(--rust);
  position: relative;
  color: var(--paper);
}
.acesso::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--rust) 50%, transparent 100%);
  filter: blur(6px);
  opacity: 0.7;
}

.acesso-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.acesso-head .overline { justify-content: center; color: var(--rust-soft); }
.acesso-head .section-title { text-align: center; margin-top: 0; }
.acesso-head .section-title em { color: var(--rust); }

.acesso-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--rust);
  padding: 8px 16px;
  border-radius: 2px;
  box-shadow: 0 8px 28px -8px var(--rust-glow);
  align-self: center;
}
.acesso-flag::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--paper);
  animation: ledBlink 1.1s ease-in-out infinite;
}

.acesso-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 20px 36px;
  border: 1px solid var(--hairline-rust);
  background: rgba(245, 158, 11, 0.08);
  border-radius: 2px;
  position: relative;
  align-self: center;
}
.acesso-countdown::before,
.acesso-countdown::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--rust);
}
.acesso-countdown::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.acesso-countdown::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.acesso-countdown__label {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust-soft);
}
.acesso-countdown__time {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.06em;
  color: var(--rust);
  font-variant-numeric: tabular-nums;
}

/* Grid de lotes — 2 colunas */
.lotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .lotes { grid-template-columns: 1fr; gap: 16px; }
}

.lote {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(28px, 3.6vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border-radius: 2px;
}

/* Lote ATIVO — card creme sobre o terracota */
.lote--ativo {
  background: var(--paper);
  color: var(--text-on-paper);
  border: 1px solid var(--paper);
  outline: 3px solid var(--rust);
  outline-offset: -3px;
  box-shadow:
    0 30px 80px -20px rgba(245, 158, 11, 0.55),
    0 0 0 8px rgba(245, 158, 11, 0.1);
  z-index: 3;
  transform: translateY(-4px);
  padding-top: clamp(58px, 6vw, 76px);
  overflow: hidden;
  position: relative;
}

/* Faixa de alerta — absoluta no topo, encostada nas bordas */
.lote__alert {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  background: linear-gradient(90deg, var(--rust-deep) 0%, var(--rust) 50%, var(--rust-deep) 100%);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 4;
}
.lote__alert-icon {
  display: inline-flex;
  align-items: center;
  width: 14px; height: 14px;
}
.lote__alert-icon svg { width: 100%; height: 100%; }

.lote__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline-ink);
}
.lote--ativo .lote__head { border-bottom-color: var(--hairline-paper); }
.lote__roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 0.9;
  color: var(--rust);
}
.lote__roman--dim { color: var(--text-on-ink-3); }

.lote__head-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lote__state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
}
.lote__state--dim { color: var(--text-on-ink-3); }
.lote__led {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rust);
}
.lote__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-on-ink-2);
}
.lote--ativo .lote__sub { color: var(--text-on-paper-2); }

.lote__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--text-on-ink);
}
.lote--ativo .lote__title { color: var(--text-on-paper); }
.lote__title--dim { color: var(--text-on-ink-2); opacity: 0.7; }

.lote__dates {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-ink-3);
  margin-top: -10px;
}
.lote--ativo .lote__dates { color: var(--text-on-paper-2); }
.lote__dates--dim { opacity: 0.55; }

.lote__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.lote__price--dim { opacity: 0.55; }
.lote__currency {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--text-on-ink-2);
  align-self: flex-start;
  margin-top: 14px;
}
.lote--ativo .lote__currency { color: var(--rust); }
.lote__amount {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text-on-ink);
}
.lote--ativo .lote__amount { color: var(--text-on-paper); }
.lote__cents {
  font-size: 0.4em;
  letter-spacing: -0.01em;
  color: var(--text-on-ink-2);
  margin-left: 2px;
}
.lote--ativo .lote__cents { color: var(--text-on-paper-2); }
.lote__from {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-ink-3);
  text-decoration: line-through;
  margin-left: 10px;
  align-self: center;
}

.lote__included {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline-paper);
}
.lote__included li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-on-paper);
  padding-left: 22px;
  position: relative;
}
.lote__included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 700;
}

.lote__fineprint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-paper-2);
  text-align: center;
  margin-top: -8px;
}

.lote__status {
  margin-top: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--text-on-ink-3);
  padding-top: 16px;
  border-top: 1px solid var(--hairline-ink);
}

/* ─────────────────────────────────────────────
   11. DÚVIDAS / FAQ
───────────────────────────────────────────── */
.duvidas {
  padding: clamp(80px, 11vw, 160px) 0;
  background: var(--paper);
  color: var(--text-on-paper);
}
.duvidas .section-head { margin-bottom: clamp(40px, 5vw, 64px); }

.faq {
  border-top: 1px solid var(--hairline-paper);
}
.faq__item { border-bottom: 1px solid var(--hairline-paper); }

.faq__q {
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  transition: padding-left 320ms var(--ease);
}
.faq__index {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-paper-2);
}
.faq__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  color: var(--text-on-paper);
  transition: color 240ms var(--ease);
}
.faq__mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--rust-deep);
  justify-self: end;
  transition: transform 320ms var(--ease);
  line-height: 1;
}
.faq__item.is-open .faq__mark { transform: rotate(45deg); }
.faq__item.is-open .faq__text { color: var(--rust-deep); font-style: italic; }
.faq__q:hover { padding-left: 6px; }
.faq__q:hover .faq__text { color: var(--rust-deep); }

.faq__a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 380ms var(--ease), opacity 320ms var(--ease);
  padding-left: 72px;
}
.faq__item.is-open .faq__a {
  max-height: 600px;
  opacity: 1;
}
.faq__a p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-on-paper);
  padding-bottom: 14px;
  max-width: 64ch;
}
.faq__a p:first-of-type { padding-top: 4px; }

.duvidas-action {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .faq__q { grid-template-columns: 32px 1fr 24px; gap: 10px; }
  .faq__a { padding-left: 42px; }
}

/* ─────────────────────────────────────────────
   12. COLOFÃO (Rodapé)
───────────────────────────────────────────── */
.colofao {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: clamp(60px, 8vw, 110px) 0 40px;
  border-top: 1px solid var(--hairline-ink);
}
.colofao__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
@media (max-width: 760px) {
  .colofao__top { grid-template-columns: 1fr; gap: 32px; }
}
.colofao__wordmark {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  color: var(--text-on-ink);
}
.colofao__amp {
  font-style: italic;
  color: var(--gold);
  font-size: 0.8em;
  margin: 0 4px;
}
.colofao__byline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-on-ink-2);
  text-align: right;
  max-width: 28ch;
}
.colofao__byline strong {
  font-weight: 400;
  color: var(--text-on-ink);
}
@media (max-width: 760px) {
  .colofao__byline { text-align: left; }
}

.colofao__rule {
  margin: clamp(40px, 6vw, 64px) 0 28px;
  border: 0;
  height: 1px;
  background: var(--hairline-ink);
}

.colofao__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-on-ink-3);
}
.colofao__nav {
  display: inline-flex;
  gap: 22px;
  flex-wrap: wrap;
}
.colofao__nav a { transition: color 240ms var(--ease); }
.colofao__nav a:hover { color: var(--rust-soft); }
.colofao__set { font-style: italic; font-family: var(--serif); font-size: 14px; color: var(--text-on-ink-2); letter-spacing: 0; text-transform: none; }


/* ─────────────────────────────────────────────
   14. QUILL UNDERLINE — SVG underline estático
───────────────────────────────────────────── */
.section-title em.has-quill {
  position: relative;
  display: inline-block;
  padding-bottom: 0.16em;
}
.quill-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  width: 100%;
  height: 0.42em;
  overflow: visible;
  pointer-events: none;
  color: currentColor;
  opacity: 0.78;
}
.quill-underline path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* ─────────────────────────────────────────────
   15. RESPONSIVIDADE MOBILE — passada completa
   (≤640px e ≤380px · prioriza CTAs, hero, lotes)
───────────────────────────────────────────── */
@media (max-width: 640px) {

  /* Padding lateral mais enxuto */
  :root { --pad-x: 18px; }

  /* — Issue bar — */
  .issue-bar__inner { padding: 9px 16px; gap: 8px; }
  .issue-bar__chip  { font-size: 10px; padding: 5px 9px; letter-spacing: 0.12em; }
  .issue-bar__urgency { font-size: 11px; line-height: 1.35; }
  .issue-bar__cta { font-size: 11px; padding: 7px 12px; letter-spacing: 0.06em; }

  /* — Botões CTA · full-width nas duas variantes — */
  .btn-ink,
  .btn-paper {
    width: 100%;
    min-width: 0;
    justify-content: center;
    box-sizing: border-box;
  }
  .btn-ink {
    gap: 14px;
    padding: 16px 18px;
  }
  .btn-ink__label { font-size: 17px; }
  .btn-ink__price {
    font-size: 10.5px;
    padding-left: 12px;
    letter-spacing: 0.06em;
  }
  .btn-paper {
    font-size: 18px;
    padding: 16px 22px;
    gap: 12px;
  }
  .btn-paper::after { font-size: 18px; }

  /* — Hero / Capa — */
  .capa { padding-top: clamp(20px, 5vw, 36px); }
  .capa__grid { row-gap: 36px; padding-bottom: 48px; }
  .capa__title { font-size: clamp(34px, 9vw, 52px); line-height: 1.02; }
  .capa__lede  { font-size: 15px; margin-top: 20px; max-width: 100%; }
  .capa__action { width: 100%; align-items: stretch; gap: 12px; margin-top: 26px; }
  .capa__action-note { font-size: 10px; justify-content: center; letter-spacing: 0.06em; }

  /* Retrato sem sangria no mobile — encaixe limpo na coluna única */
  .capa__portrait { max-width: 100%; align-self: center; gap: 14px; }
  .portrait-placeholder,
  .portrait-photo {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
  .portrait-photo {
    object-position: 50% 24%;
  }
  .portrait-name { font-size: 22px; }
  .portrait-role { font-size: 12px; }

  /* Marquee */
  .capa__marquee { padding: 14px 0; }
  .marquee-track { font-size: 18px; gap: 22px; }
  .marquee-track span[aria-hidden="true"] { font-size: 22px; }

  /* — Section heads & títulos genéricos — */
  .section-head { margin-bottom: clamp(32px, 7vw, 48px); }
  .section-title { font-size: clamp(30px, 9vw, 46px); line-height: 1.05; margin-top: 12px; }
  .section-title em.has-quill {
    /* deixa quebrar se a frase for longa (ex: “Apenas o primeiro”) */
    max-width: 100%;
    line-height: 1.1;
  }
  .overline { font-size: 10px; gap: 8px; }
  .overline::before { width: 20px; }

  /* — Programa — */
  .programa { padding: clamp(56px, 12vw, 96px) 0; }
  .programa-item {
    padding: 22px 0;
    gap: 10px 16px;
  }
  .programa-num { font-size: 52px; }
  .programa-glyph { width: 40px; height: 40px; }
  .programa-body h3 { font-size: clamp(19px, 5vw, 24px); line-height: 1.18; }
  .programa-body p { font-size: 14px; margin-top: 8px; }
  .programa-tag { font-size: 9px; padding: 3px 8px; }
  .programa-neural { display: none; }

  /* — Manifesto — */
  .manifesto { padding: clamp(56px, 12vw, 96px) 0; }
  .manifesto-quote { padding-left: 22px; margin-top: 18px; }
  .manifesto-quote p { font-size: clamp(21px, 6.4vw, 30px); line-height: 1.22; }
  .manifesto-quote__kicker {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-top: 22px;
    padding-top: 18px;
  }
  .pull-mark { font-size: 110px; top: -20px; left: -6px; }
  .manifesto-action { padding-left: 22px; margin-top: 36px; gap: 14px; }
  .manifesto-aside { font-size: 14px; align-self: center; }

  /* — Cenário — */
  .cenario { padding: clamp(56px, 12vw, 96px) 0; }
  .cenario-grid { gap: 40px; margin-bottom: 48px; }
  .cenario-stat__num { font-size: clamp(64px, 18vw, 108px); }
  .cenario-stat__label { font-size: 14px; }
  .cenario-stat__rule { margin: 18px 0 14px; }
  .cenario-kicker { font-size: 16px; line-height: 1.5; margin-bottom: 24px; }
  .cenario-final { font-size: clamp(26px, 7vw, 38px); line-height: 1.15; }

  /* — Acesso / Lotes — */
  .acesso { padding: clamp(56px, 12vw, 96px) 0; }
  .acesso-head { gap: 14px; margin-bottom: 40px; }
  .acesso-flag { font-size: 10px; letter-spacing: 0.14em; padding: 7px 14px; }
  .acesso-countdown { padding: 14px 22px; margin-top: 10px; }
  .acesso-countdown__time { font-size: clamp(28px, 8vw, 40px); }
  .acesso-countdown__label { font-size: 9px; letter-spacing: 0.16em; }

  .lotes { gap: 16px; }
  .lote { padding: 26px 22px; gap: 16px; }
  .lote--ativo {
    padding-top: 52px;
    transform: none;          /* sem deslocamento que cria gap visual */
    box-shadow:
      0 18px 50px -16px rgba(245, 158, 11, 0.5),
      0 0 0 6px rgba(245, 158, 11, 0.08);
  }
  .lote__alert {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 9px 14px;
    gap: 8px;
  }
  .lote__alert-icon { width: 12px; height: 12px; }
  .lote__roman { font-size: 46px; }
  .lote__title { font-size: 19px; }
  .lote__dates { font-size: 10px; }
  .lote__amount { font-size: clamp(64px, 18vw, 92px); }
  .lote__currency { font-size: 24px; margin-top: 10px; }
  .lote__included li { font-size: 13.5px; line-height: 1.45; padding-left: 18px; }
  .lote__fineprint { font-size: 9px; }
  .lote__status { font-size: 14px; padding-top: 12px; }
  .lote__from { font-size: 10px; }
  .lote__state { font-size: 10px; letter-spacing: 0.12em; }
  .lote__sub { font-size: 13px; }

  /* — Dúvidas / FAQ — */
  .duvidas { padding: clamp(56px, 12vw, 96px) 0; }
  .duvidas .section-head { margin-bottom: 28px; }
  .duvidas-action { margin-top: 36px; }
  .faq__q { padding: 18px 0; }
  .faq__text { font-size: 16px; line-height: 1.3; }
  .faq__a p { font-size: 14px; line-height: 1.6; }

  /* — Rodapé / Colofão — */
  .colofao { padding: 56px 0 32px; }
  .colofao__wordmark { font-size: clamp(28px, 8vw, 42px); line-height: 1.05; }
  .colofao__byline { font-size: 14px; }
  .colofao__rule { margin: 32px 0 22px; }
  .colofao__bottom { font-size: 10.5px; gap: 16px; }
  .colofao__nav { gap: 16px; }
}

/* Telas muito estreitas (320–380px) — apertos finais */
@media (max-width: 380px) {
  :root { --pad-x: 14px; }

  .issue-bar__inner { padding: 8px 14px; }
  .issue-bar__urgency { font-size: 10.5px; }

  .capa__title { font-size: 30px; }
  .btn-ink__label { font-size: 15.5px; }
  .btn-ink__price { font-size: 10px; padding-left: 10px; }
  .btn-ink { padding: 14px 16px; gap: 10px; }
  .btn-paper { font-size: 16.5px; padding: 14px 18px; }

  .section-title { font-size: 28px; }
  .lote__amount  { font-size: 56px; }
  .lote--ativo   { padding-top: 48px; }
  .lote__alert   { font-size: 9px; padding: 8px 10px; letter-spacing: 0.1em; }
  .cenario-stat__num { font-size: 60px; }
}

/* ─────────────────────────────────────────────
   NOVOS COMPONENTES — copy atualizada
───────────────────────────────────────────── */

/* Cenario — CTA abaixo do texto */
.cenario-action {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* Lote alert — sub-texto */
.lote__alert-sub {
  display: block;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 0.88;
  margin-top: 2px;
}

/* Bloco de garantia — abaixo dos lotes */
.lote-garantia {
  max-width: 680px;
  margin: 36px auto 0;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  text-align: center;
}
.lote-garantia__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 10px;
}
.lote-garantia__text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-on-ink-2);
}

@media (max-width: 640px) {
  .lote-garantia { padding: 22px 18px; margin-top: 24px; }
  .lote-garantia__text { font-size: 14px; }
  .cenario-action { margin-top: 32px; }
}

/* ─────────────────────────────────────────────
   PERFORMANCE — Zero animações · Zero transições
   Garante PageSpeed máximo em mobile
───────────────────────────────────────────── */
*, *::before, *::after {
  animation: none !important;
  transition: none !important;
  will-change: auto !important;
}

/* content-visibility: seções abaixo do fold renderizam sob demanda */
.programa, .manifesto, .cenario, .acesso, .duvidas, .colofao {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* Lazy background: oculta até JS injetar a URL */
.programa-banner__img[data-lazy-bg] {
  background-image: none;
}

/* Reduzir box-shadows pesadas a versões simples */
.lote--ativo {
  box-shadow: 0 4px 24px -4px rgba(245, 158, 11, 0.3);
}
.btn-ink {
  box-shadow: none;
}
.btn-paper {
  box-shadow: none;
}
