/* =====================================================================
   Cristian Magalhães · Ecossistema 2026 · Página de Patrocínio
   Padrão visual Lapidatio externo (marrons/dourados/creme premium)
   ===================================================================== */

:root {
  /* Literais (não mudam) */
  --cream: #FFFCF2;
  --gold-deep: #BF8A49;
  --gold-mid: #E8B16E;
  --gold-pale: #FFC783;
  --gold-glow: #F0D9A8;
  --coral-soft: #FF5E5E;
  --red-strong: #EE0303;

  /* Tema dark com toque avermelhado/quente (semântico) */
  --bg: #1A1310;
  --bg-card: #261C18;
  --bg-elev: #33231D;
  --bg-warm: #4A2D22;

  --text: #FFFCF2;
  --text-soft: rgba(255, 252, 242, 0.78);
  --text-muted: rgba(255, 252, 242, 0.52);

  --line-soft: rgba(232, 177, 110, 0.1);
  --line-mid: rgba(232, 177, 110, 0.24);
  --line-strong: rgba(232, 177, 110, 0.5);

  /* Aliases (compatibilidade) */
  --cream-warm: var(--bg-elev);
  --ink: var(--text);
  --ink-soft: var(--text-soft);
  --ink-muted: var(--text-muted);

  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-deep: 0 12px 48px rgba(0, 0, 0, 0.6);

  --easing-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --easing-elastic: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text-soft);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-mid); text-decoration: none; }
[data-lucide] {
  stroke-width: 1.7; width: 1em; height: 1em;
  display: inline-block; vertical-align: -0.15em;
}

/* Texturas e backgrounds globais */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url('assets/texture-noise.webp');
  background-size: 220px 220px;
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(220, 110, 60, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(191, 138, 73, 0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* =====================================================================
   TOPBAR
   ===================================================================== */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 17, 14, 0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(232, 177, 110, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 18px;
  font-style: italic;
  box-shadow: 0 0 0 1px rgba(255, 199, 131, 0.25);
}
.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--gold-pale);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 2px;
  font-weight: 600;
}

.progress-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.progress-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 252, 242, 0.28);
  transition: all 0.4s var(--easing-smooth);
  cursor: pointer;
  border: none;
  padding: 0;
}
.progress-dot:hover { transform: scale(1.3); background: var(--gold-pale); }
.progress-dot.atual {
  background: var(--gold-pale);
  width: 28px;
  border-radius: 4px;
}
.progress-dot.passou { background: var(--gold-mid); }

.indice-btn {
  background: rgba(255, 252, 242, 0.08);
  border: 1px solid rgba(232, 177, 110, 0.4);
  color: var(--cream);
  padding: 7px 12px;
  border-radius: 99px;
  font-size: 12px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s var(--easing-smooth);
}
.indice-btn:hover {
  background: rgba(232, 177, 110, 0.15);
  border-color: var(--gold-mid);
  color: var(--gold-pale);
}

/* =====================================================================
   STEPS
   ===================================================================== */

.steps {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 2;
}

.step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: safe center;
  justify-content: safe center;
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.55s var(--easing-smooth),
    transform 0.7s var(--easing-elastic);
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 100px 32px 110px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-mid) transparent;
}
.step::-webkit-scrollbar { width: 6px; }
.step::-webkit-scrollbar-thumb { background: rgba(191, 138, 73, 0.4); border-radius: 3px; }
.step::-webkit-scrollbar-track { background: transparent; }
.step.ativo {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.step.passou {
  transform: translateX(-60px);
}

.step-conteudo {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Eyebrow comum dos steps */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold-mid);
}

h1.titulo-hero, h2.titulo-step {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
h1.titulo-hero {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 24px;
}
h2.titulo-step {
  font-size: clamp(36px, 5.5vw, 60px);
  margin-bottom: 18px;
}
.titulo-step em, .titulo-hero em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 700px;
  line-height: 1.65;
}

.aspas {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--ink);
  line-height: 1.4;
  border-left: 2px solid var(--gold-mid);
  padding-left: 22px;
  margin: 24px 0;
}

.ornamento {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  margin: 16px 0 24px;
  font-size: 12px;
}
.ornamento::before, .ornamento::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-mid);
}
.ornamento-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
}

/* =====================================================================
   STEP 1 · CAPA
   ===================================================================== */

.step-capa {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(15, 10, 8, 0.7) 0%, rgba(15, 10, 8, 0.55) 40%, rgba(15, 10, 8, 0.92) 100%),
    radial-gradient(ellipse at center, rgba(15, 10, 8, 0.35) 0%, rgba(15, 10, 8, 0.82) 100%),
    url('assets/capa-nova.jpg') center/cover no-repeat;
}
.step-capa .step-conteudo {
  padding: 120px 32px 60px;
  width: 100%;
  max-width: 900px;
  text-align: center;
  color: var(--cream);
}
.step-capa .eyebrow { color: var(--gold-pale); }
.step-capa .eyebrow::after { background: var(--gold-pale); }
.step-capa h1.titulo-hero {
  color: var(--cream);
}
.step-capa h1.titulo-hero em { color: var(--gold-pale); }
.step-capa .lead {
  color: rgba(255, 252, 242, 0.85);
  margin: 0 auto 36px;
}
.capa-tagline {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid var(--gold-mid);
  border-radius: 99px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
}
.capa-cta {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gold-pale);
  letter-spacing: 0.04em;
  animation: bouncedown 2.4s ease-in-out infinite;
}
@keyframes bouncedown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =====================================================================
   STEP · QUEM É CRISTIAN (BIO)
   ===================================================================== */

.step-bio .step-conteudo {
  max-width: 1180px;
  width: 100%;
}
.bio-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.bio-foto-col {
  position: relative;
  width: 100%;
}
.bio-foto-principal {
  width: 100%;
  aspect-ratio: 24/10;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 14px;
  border: 1px solid var(--line-mid);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  filter: saturate(1.05) brightness(0.92);
}
.bio-foto-col::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 17, 14, 0.4) 100%);
  pointer-events: none;
}
.bio-texto-col { color: var(--text); }
.bio-nome {
  margin-top: 8px;
  margin-bottom: 14px;
}
.bio-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--gold-pale);
  margin-bottom: 28px;
  line-height: 1.45;
  font-weight: 400;
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 28px;
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.bio-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bio-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--gold-pale);
  line-height: 1;
  letter-spacing: -0.01em;
}
.bio-stat-num small {
  font-size: 0.5em;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
  font-style: italic;
}
.bio-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.bio-palcos { margin: 24px 0; }
.bio-palcos-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.bio-palcos-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bio-palcos-lista span {
  background: var(--bg-elev);
  border: 1px solid var(--line-mid);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.bio-fechamento {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
  border-left: 2px solid var(--gold-mid);
  padding-left: 18px;
  margin-top: 8px;
}
.bio-fechamento em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 500;
}

/* =====================================================================
   STEP 2 · TESE
   ===================================================================== */

.step-tese .step-conteudo { text-align: center; }
.tese-grande {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.15;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}
.tese-grande strong {
  color: var(--gold-deep);
  font-weight: 500;
  font-style: italic;
}
.tese-pequena {
  margin-top: 30px;
  font-size: 16px;
  color: var(--ink-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================================
   STEP 3 · PROBLEMA
   ===================================================================== */

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.problema-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s var(--easing-smooth);
}
.problema-card:hover {
  border-color: var(--gold-mid);
  background: var(--bg-elev);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.problema-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--gold-deep);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.problema-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.problema-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* =====================================================================
   STEP 4 · SOLUÇÃO
   ===================================================================== */

.solucao-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.solucao-card {
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line-mid);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s var(--easing-smooth);
}
.solucao-card:hover {
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-elev) 100%);
  border-color: var(--gold-mid);
  transform: translateY(-3px);
}
.solucao-icone {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 6px;
}
.solucao-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  font-style: italic;
}
.solucao-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* =====================================================================
   STEP 5 · PROTAGONISTAS
   ===================================================================== */

.protagonistas {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 28px;
}
.protag-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.protag-foto {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--bg-elev);
}
.protag-info {
  padding: 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.protag-cargo {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.protag-nome {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
}
.protag-bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.protag-bio strong { color: var(--ink); font-weight: 600; }
.protag-bio em { color: var(--gold-deep); font-style: italic; }

/* =====================================================================
   STEP 6 · 5 CAMADAS
   ===================================================================== */

.camadas-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border-left: 2px solid var(--gold-mid);
}
.camada {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 18px 0 22px 22px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.camada:last-child { border-bottom: none; padding-bottom: 0; }
.camada::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 24px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-mid);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(232, 177, 110, 0.3);
}
.camada-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: var(--gold-deep);
  line-height: 1;
}
.camada-conteudo h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.camada-conteudo p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 640px;
}

/* =====================================================================
   STEP 7 · CALENDÁRIO
   ===================================================================== */

.calendario-timeline {
  position: relative;
  margin-top: 36px;
  padding-left: 0;
}
.calendario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.evento-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s var(--easing-smooth);
}
.evento-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.evento-badge i { width: 10px; height: 10px; }
.badge-online {
  background: rgba(80, 200, 120, 0.14);
  color: #7DD49D;
  border: 1px solid rgba(80, 200, 120, 0.35);
}
.badge-online i {
  fill: #7DD49D;
  color: #7DD49D;
  animation: pulse-online 1.8s ease-in-out infinite;
}
@keyframes pulse-online {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.badge-presencial {
  background: rgba(232, 177, 110, 0.14);
  color: var(--gold-pale);
  border: 1px solid rgba(232, 177, 110, 0.35);
}
.evento-card:hover {
  border-color: var(--gold-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.evento-data {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--gold-deep);
  line-height: 1;
}
.evento-mes {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}
.evento-nome {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin-top: 4px;
}
.evento-meta {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-top: 6px;
}
.evento-tag {
  display: inline-block;
  background: rgba(191, 138, 73, 0.18);
  color: var(--gold-pale);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 99px;
  margin-top: 8px;
  border: 1px solid rgba(232, 177, 110, 0.25);
}

.recorrencia {
  margin-top: 28px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--gold-deep) 0%, #8E6432 100%);
  border-radius: 12px;
  color: var(--cream);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.recorrencia h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
}
.recorrencia p {
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.5;
}
.recorrencia-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--gold-pale);
}

.varandas-video-wrap,
.cbci-video-wrap {
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.varandas-video-wrap video,
.cbci-video-wrap iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  border: none;
}
.cbci-video-placeholder {
  aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px dashed var(--line-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.cbci-video-placeholder i {
  width: 48px; height: 48px;
  color: var(--gold-mid);
  opacity: 0.7;
}

.evento-card-instagram .evento-data {
  display: flex;
  align-items: center;
  height: 28px;
  font-size: 26px;
  color: var(--gold-mid);
}
.evento-card-instagram .evento-data i {
  width: 28px; height: 28px;
}

.evento-card-imersao {
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-elev) 100%);
  border-color: rgba(232, 177, 110, 0.4);
}
.evento-card-imersao .evento-data {
  color: var(--gold-pale);
  font-size: 36px;
}
.evento-card-imersao .evento-nome {
  color: var(--cream);
}
.evento-card-imersao .evento-tag {
  background: rgba(232, 177, 110, 0.25);
  color: var(--cream);
  border-color: rgba(232, 177, 110, 0.45);
}

/* Botão social nos speaker-cards */
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 14px;
  border: 1px solid var(--line-mid);
  border-radius: 8px;
  background: rgba(232, 177, 110, 0.08);
  color: var(--gold-pale);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--easing-smooth);
  text-decoration: none;
  width: fit-content;
}
.btn-social:hover {
  background: var(--gold-deep);
  color: var(--cream);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}
.btn-social i,
.btn-social svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
}

.lineup-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lineup-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lineup-grid-4 .speaker-foto {
  aspect-ratio: 4/5;
}
.lineup-grid-4 .speaker-info {
  padding: 14px 16px 16px;
}
.lineup-grid-4 .speaker-nome {
  font-size: 19px;
}
.lineup-grid-4 .speaker-meta {
  font-size: 12px;
  line-height: 1.45;
}

/* Já palestraram em edições anteriores */
.lineup-anterior {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.lineup-anterior-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 16px;
  text-align: center;
}
.lineup-anterior-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.palestrante-anterior {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.25s var(--easing-smooth);
  width: 130px;
}
.palestrante-anterior:hover { transform: translateY(-3px); }
.palestrante-anterior img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line-mid);
  background: var(--bg-elev);
  transition: border-color 0.25s var(--easing-smooth);
}
.palestrante-anterior:hover img { border-color: var(--gold-mid); }
.palestrante-anterior-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.palestrante-anterior-nome {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
}
.palestrante-anterior-handle {
  font-size: 11px;
  color: var(--gold-pale);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.palestrante-anterior-handle i { width: 11px; height: 11px; }

/* =====================================================================
   STEP 8 · LINEUP
   ===================================================================== */

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.speaker-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s var(--easing-smooth);
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-mid);
}
.speaker-foto {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--bg-elev);
}
.speaker-info {
  padding: 18px 22px 22px;
}
.speaker-cargo {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.speaker-nome {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.speaker-meta {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.speaker-card.surpresa .speaker-foto {
  background:
    linear-gradient(135deg, var(--gold-deep) 0%, #8E6432 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.speaker-card.surpresa .speaker-foto::after {
  content: '?';
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 120px;
  color: rgba(255, 199, 131, 0.5);
  font-weight: 300;
}

.bio-cristian {
  margin-top: 36px;
  padding: 26px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold-deep);
  border-radius: 0 12px 12px 0;
}
.bio-cristian p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.bio-cristian strong { color: var(--ink); font-weight: 600; }

/* =====================================================================
   STEP 9 · PÚBLICO
   ===================================================================== */

.step-publico .step-conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 220px);
}

.publico-perfis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 28px 0 24px;
}
.perfil-chip {
  background: var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: 99px;
  padding: 12px 18px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 500;
}
.perfil-chip strong { color: var(--text); }

.publico-mercados {
  margin-top: 20px;
  padding: 22px 26px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.publico-mercados h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
  font-weight: 600;
}
.publico-mercados-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mercado-tag {
  background: var(--bg-elev);
  border: 1px solid var(--line-mid);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-soft);
}

.publico-filtro {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-muted);
}

/* =====================================================================
   STEP 10 · ARQUITETURA
   ===================================================================== */

.cotas-resumo {
  text-align: center;
  margin: 24px 0 28px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  line-height: 1.4;
}
.cotas-resumo em {
  font-style: italic;
  color: var(--gold-deep);
}
.cotas-resumo strong { font-weight: 500; }

.cotas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.cota-card {
  background: var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s var(--easing-smooth);
  position: relative;
}
.cota-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-mid);
}
.cota-card.destaque {
  background: linear-gradient(160deg, var(--gold-deep) 0%, #8E6432 100%);
  border-color: var(--gold-deep);
  color: var(--cream);
}
.cota-card.destaque .cota-tipo,
.cota-card.destaque .cota-valor,
.cota-card.destaque .cota-vagas { color: inherit; }
.cota-card.destaque .cota-valor { color: var(--gold-pale); }
.cota-tipo {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}
.cota-card .cota-tipo { color: var(--gold-deep); }
.cota-card.destaque .cota-tipo { color: var(--gold-pale); }
.cota-nome {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.1;
}
.cota-card.destaque .cota-nome { color: var(--cream); }
.cota-valor {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--gold-deep);
  margin-top: 6px;
}
.cota-vagas {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line-mid);
}
.cota-card.destaque .cota-vagas { color: rgba(255, 252, 242, 0.7); border-top-color: rgba(255, 199, 131, 0.3); }

.cotas-nota {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
}

/* Tabela comparativa de cotas */
.tabela-comparativa {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}
.tabela-comparativa-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 18px;
}
.tabela-comparativa-titulo span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-left: 12px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.tabela-comparativa-scroll {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--bg-card);
}
.tabela-cotas {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
  color: var(--text-soft);
}
.tabela-cotas thead th {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--gold-pale);
  padding: 16px 14px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line-mid);
  background: var(--bg-elev);
  font-style: italic;
  letter-spacing: 0;
}
.tabela-cotas thead th:first-child {
  background: transparent;
  border-bottom-color: var(--line-soft);
}
.tabela-cotas thead .th-pontual {
  color: var(--gold-mid);
  font-size: 14px;
}
.tabela-cotas tbody th {
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 13px 18px 13px 18px;
  background: rgba(20, 17, 14, 0.4);
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
}
.tabela-cotas tbody td {
  padding: 13px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  border-left: 1px solid rgba(232, 177, 110, 0.06);
  color: var(--text-soft);
  vertical-align: middle;
}
.tabela-cotas tbody tr:last-child th,
.tabela-cotas tbody tr:last-child td { border-bottom: none; }
.tabela-cotas tbody tr:hover td,
.tabela-cotas tbody tr:hover th { background: rgba(232, 177, 110, 0.04); }
.tabela-cotas .cell-valor {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--gold-pale);
  letter-spacing: -0.005em;
}
.tabela-cotas .check {
  color: var(--gold-mid);
  font-weight: 700;
  margin-right: 4px;
}
.tabela-cotas td:nth-child(2) {
  background: rgba(191, 138, 73, 0.08);
}
.tabela-cotas thead th:nth-child(2) {
  background: linear-gradient(180deg, rgba(191, 138, 73, 0.25) 0%, var(--bg-elev) 100%);
  color: var(--cream);
}

/* =====================================================================
   STEP 11 · ATIVAÇÕES + KPIs
   ===================================================================== */

.dois-blocos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-top: 24px;
}
.bloco-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.ativacoes-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ativacao-item {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
}
.ativacao-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 3px;
  font-style: italic;
}
.ativacao-item p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.kpis-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kpi-item {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.kpi-icone {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.kpi-texto strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.kpi-texto span {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* =====================================================================
   STEP 11 · A PROVA (números do público)
   ===================================================================== */

.step-prova .step-conteudo {
  max-width: 1100px;
}
.prova-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 36px;
}
.prova-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s var(--easing-smooth);
  position: relative;
  overflow: hidden;
}
.prova-card:hover {
  border-color: var(--gold-mid);
  transform: translateY(-3px);
}
.prova-card-destaque {
  grid-row: span 2;
  background: linear-gradient(165deg, var(--bg-warm) 0%, var(--bg-elev) 100%);
  border-color: rgba(232, 177, 110, 0.4);
  justify-content: space-between;
}
.prova-card-destaque::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(232, 177, 110, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.prova-numero {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(54px, 6vw, 84px);
  color: var(--gold-pale);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.prova-card-destaque .prova-numero {
  font-size: clamp(72px, 8vw, 110px);
  color: var(--cream);
}
.prova-numero small {
  font-size: 0.42em;
  font-style: italic;
  color: var(--gold-mid);
  font-weight: 400;
  margin-left: 4px;
  letter-spacing: 0;
}
.prova-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
}
.prova-card-destaque .prova-titulo {
  font-size: 22px;
  color: var(--gold-pale);
}
.prova-texto {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}
.prova-card-destaque .prova-texto {
  font-size: 15px;
  max-width: 360px;
}

.prova-mapa-wrap {
  margin-top: 28px;
  padding: 28px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold-deep);
  border-radius: 0 14px 14px 0;
  position: relative;
}
.prova-mapa-header {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}
.prova-mapa-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 60px;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 6px;
}
.prova-mapa-num small {
  font-size: 0.3em;
  color: var(--text-muted);
  font-style: italic;
  display: block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}
.prova-mapa-texto {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-top: 8px;
}
.prova-mapa-texto strong {
  color: var(--text);
  font-weight: 500;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}
.prova-mapa-legenda {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding-top: 8px;
}
.legenda-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.legenda-cor {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid rgba(232, 177, 110, 0.25);
}

.brasil-mapa {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 220/194;
}
.brasil-mapa svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brasil-mapa svg path {
  fill: rgba(255, 252, 242, 0.05);
  stroke: rgba(232, 177, 110, 0.18);
  stroke-width: 200;
  transition: fill 0.2s var(--easing-smooth), stroke 0.2s var(--easing-smooth);
  cursor: default;
}
.brasil-mapa svg g.estado-sem-dado path {
  fill: rgba(255, 252, 242, 0.05);
  stroke: rgba(232, 177, 110, 0.18);
}
.brasil-mapa svg g.estado-com-dado path {
  cursor: pointer;
}
.brasil-mapa svg g.intensidade-alta path {
  fill: rgba(255, 199, 131, 0.85);
  stroke: rgba(255, 199, 131, 1);
}
.brasil-mapa svg g.intensidade-media path {
  fill: rgba(232, 177, 110, 0.65);
  stroke: rgba(232, 177, 110, 0.9);
}
.brasil-mapa svg g.intensidade-baixa path {
  fill: rgba(191, 138, 73, 0.45);
  stroke: rgba(191, 138, 73, 0.75);
}
.brasil-mapa svg g.estado-com-dado:hover path,
.brasil-mapa svg g.estado-com-dado:focus path {
  fill: var(--cream);
  stroke: var(--gold-pale);
  stroke-width: 400;
}
.brasil-mapa svg g.estado-sem-dado:hover path,
.brasil-mapa svg g.estado-sem-dado:focus path {
  fill: rgba(255, 252, 242, 0.15);
  stroke: rgba(232, 177, 110, 0.5);
}

.brasil-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(20, 17, 14, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-mid);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text);
  opacity: 0;
  transform: translate(14px, 14px);
  transition: opacity 0.12s var(--easing-smooth);
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.brasil-tooltip.visivel { opacity: 1; }
.brasil-tooltip strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-pale);
  font-weight: 500;
  margin-bottom: 2px;
}
.tooltip-pct {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.tooltip-pct-empty {
  color: var(--text-muted);
  font-style: italic;
}

/* =====================================================================
   STEP 12 · CTA
   ===================================================================== */

.step-cta {
  background:
    linear-gradient(180deg, rgba(15, 10, 8, 0.78) 0%, rgba(15, 10, 8, 0.7) 50%, rgba(15, 10, 8, 0.95) 100%),
    radial-gradient(ellipse at center, rgba(15, 10, 8, 0.45) 0%, rgba(15, 10, 8, 0.88) 100%),
    url('assets/cta-final.jpg') center/cover no-repeat;
}
.step-cta .step-conteudo { text-align: center; color: var(--cream); }
.step-cta .eyebrow { color: var(--gold-pale); }
.step-cta .eyebrow::after { background: var(--gold-pale); }
.step-cta h2.titulo-step { color: var(--cream); }
.step-cta h2.titulo-step em { color: var(--gold-pale); }
.step-cta .lead { color: rgba(255, 252, 242, 0.85); margin: 0 auto; }

.cta-botoes {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--easing-smooth);
  border: none;
  text-decoration: none;
}
.btn-cta.primario {
  background: linear-gradient(135deg, var(--gold-deep) 0%, #8E6432 100%);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(191, 138, 73, 0.25);
}
.btn-cta.primario:hover {
  background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 177, 110, 0.35);
}
.btn-cta.secundario {
  background: rgba(255, 252, 242, 0.06);
  color: var(--gold-pale);
  border: 1px solid var(--gold-mid);
}
.btn-cta.secundario:hover {
  background: rgba(232, 177, 110, 0.15);
  border-color: var(--gold-pale);
  transform: translateY(-2px);
}
.assinatura {
  margin-top: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold-pale);
  letter-spacing: 0.04em;
}

/* =====================================================================
   FOOTER (botões avançar/voltar)
   ===================================================================== */

.footer-nav {
  margin-top: 48px;
  padding: 22px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line-soft);
}

.btn-nav {
  background: rgba(255, 252, 242, 0.06);
  border: 1px solid rgba(232, 177, 110, 0.35);
  color: var(--text);
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s var(--easing-smooth);
}
.btn-nav:hover {
  background: var(--gold-deep);
  color: var(--cream);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}
.btn-nav.principal {
  background: var(--gold-deep);
  color: var(--cream);
  border-color: var(--gold-deep);
}
.btn-nav.principal:hover {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
}
.btn-nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: none;
}
.contador-step {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-pale);
  font-size: 14px;
}

/* =====================================================================
   ÍNDICE (modal lateral)
   ===================================================================== */

.indice-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 24, 21, 0.5);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--easing-smooth);
}
.indice-overlay.aberto {
  opacity: 1;
  pointer-events: auto;
}
.indice {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: rgba(20, 17, 14, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-left: 1px solid var(--line-mid);
  z-index: 91;
  transform: translateX(100%);
  transition: transform 0.4s var(--easing-elastic);
  display: flex;
  flex-direction: column;
}
.indice.aberto { transform: translateX(0); }
.indice-h {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.indice-h h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
}
.indice-h button {
  background: transparent;
  border: 1px solid var(--line-mid);
  color: var(--ink-muted);
  border-radius: 6px;
  padding: 5px 8px;
}
.indice-lista {
  padding: 14px 0;
  overflow-y: auto;
  flex: 1;
}
.indice-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  cursor: pointer;
  transition: all 0.2s var(--easing-smooth);
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}
.indice-item:hover {
  background: var(--cream-warm);
}
.indice-item.atual {
  background: var(--cream-warm);
}
.indice-item.atual::before {
  content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-deep);
}
.indice-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 18px;
  width: 28px;
  flex-shrink: 0;
}
.indice-titulo {
  font-size: 14px;
  color: var(--ink-soft);
  flex: 1;
}
.indice-item.atual .indice-titulo { color: var(--ink); font-weight: 500; }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */

@media (max-width: 900px) {
  .step { padding: 100px 20px 110px; }
  .topbar { padding: 14px 20px; }
  .footer-nav { padding: 18px 0 8px; margin-top: 32px; }
  .brand-text { font-size: 14px; }
  .brand-text small { font-size: 9px; letter-spacing: 0.12em; }

  .bio-layout { gap: 24px; }
  .bio-foto-principal {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .bio-stats { grid-template-columns: 1fr; gap: 12px; padding: 18px; }

  .protag-foto {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }

  .protagonistas { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: 1fr; gap: 14px; }
  .lineup-grid-2 { grid-template-columns: 1fr; max-width: 480px; }
  .lineup-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .prova-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .prova-card-destaque { grid-column: span 2; grid-row: auto; }
  .prova-mapa-wrap { padding: 22px 20px; }
  .prova-mapa-header { grid-template-columns: 1fr; gap: 14px; }
  .prova-mapa-num { font-size: 48px; }
  .prova-mapa-legenda { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .brasil-mapa { max-width: 360px; }
  .speaker-foto { aspect-ratio: 16/10; }

  .calendario-grid { grid-template-columns: repeat(2, 1fr); margin-top: 36px; }

  .cotas-grid { grid-template-columns: repeat(2, 1fr); }
  .cota-card.destaque { grid-column: span 2; }

  .solucao-grid { grid-template-columns: 1fr; }
  .dois-blocos { grid-template-columns: 1fr; }
  .camada { grid-template-columns: 50px 1fr; gap: 14px; }
  .camada-num { font-size: 28px; }
  .progress-dots { display: none; }
}

@media (max-width: 600px) {
  .step { padding: 90px 16px 110px; }
  .prova-grid { grid-template-columns: 1fr; }
  .prova-card-destaque { grid-column: span 1; }
  .ornamento { font-size: 10px; }
  .ornamento-mark { font-size: 14px; }
  .calendario-grid { grid-template-columns: 1fr; }
  .cotas-grid { grid-template-columns: 1fr; }
  .cota-card.destaque { grid-column: span 1; }
  .problema-grid { grid-template-columns: 1fr; gap: 10px; }
  .protag-foto { aspect-ratio: 16/12; }
}

/* respeito a prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
