/* ═══════════════════════════════════════════════
   CÓDIGO DO DESTINO — Numerologia Cósmica
   Design: Dark Mode Premium com Dourado/Âmbar
   Sem Bootstrap. Mobile-First.
═══════════════════════════════════════════════ */

:root {
  --gold:      #c9a84c;
  --gold-light:#f0d080;
  --gold-glow: rgba(201,168,76,0.25);
  --dark-bg:   #080c14;
  --dark-card: rgba(12,16,30,0.92);
  --dark-border:rgba(201,168,76,0.2);
  --text-main: #e8e2d5;
  --text-muted: #8a8278;
  --danger:    #e05252;
  --success:   #52c78a;
  --font-title: 'Cinzel', serif;
  --font-body:  'Lato', sans-serif;
  --radius:     16px;
  --max-w:      680px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ── Fundo de Estrelas ── */
#starsCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ── Barra de Urgência ── */
#urgencyBar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #7a1a1a, #a82828, #7a1a1a);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#urgencyBar strong { color: #ffd580; }

/* ── App Wrapper ── */
#appWrapper {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 60px;
}

/* ── Header/Logo ── */
#siteHeader {
  width: 100%;
  max-width: var(--max-w);
  padding: 8px 0 10px;
  display: flex;
  justify-content: center;
}
.logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
#logoImg {
  max-width: min(100px, 40vw);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(201,168,76,0.35));
}
.logo-subheadline {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 2.2vw, 0.95rem);
  color: rgba(201,168,76,0.72);
  letter-spacing: 0.5px;
  font-style: italic;
  font-weight: 300;
  margin: 0;
}
/* legado — mantido caso ainda seja referenciado */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ── Barra de Progresso ── */
#progressWrap {
  width: 100%;
  max-width: var(--max-w);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#progressBar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
#progressBar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--prog, 8%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 10px var(--gold-glow);
}
#progressLabel {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-family: var(--font-body);
}

/* ── Panels (Etapas) ── */
.quiz-panel {
  display: none;
  width: 100%;
  max-width: var(--max-w);
  /* animação controlada por JS via requestAnimationFrame */
}
.quiz-panel.active { display: block; }

.panel-inner {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.07),
    0 24px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(201,168,76,0.04);
}

/* ── Eyebrow ── */
.eyebrow {
  text-align: center;
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.85;
}

/* ── Títulos ── */
.panel-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 14px;
}
.panel-title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

.panel-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── Inputs ── */
.input-group-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.input-label {
  font-size: 0.82rem;
  color: var(--gold);
  font-family: var(--font-title);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}
.quiz-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.quiz-input::placeholder { color: var(--text-muted); }
.quiz-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15), 0 0 20px rgba(201,168,76,0.1);
}
/* iOS fix */
@supports (-webkit-touch-callout: none) {
  .quiz-input { font-size: 16px !important; }
}
@media (max-width: 576px) {
  .quiz-input { font-size: 16px; }
}

/* ── Botão Principal ── */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #b8860b, var(--gold), #c9a84c, #f0c040);
  background-size: 200% 200%;
  animation: goldShimmer 3s ease infinite;
  border: none;
  border-radius: 12px;
  color: #0a0700;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35), 0 2px 8px rgba(0,0,0,0.4);
  text-decoration: none;
  margin-top: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5), 0 4px 12px rgba(0,0,0,0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.hidden { display: none; }

@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-primary svg { flex-shrink: 0; }

.disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── Status Steps (Etapa 2) ── */
.status-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px dashed rgba(255,255,255,0.07);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s, transform 0.35s, border-color 0.35s, color 0.35s;
}
.status-item.show {
  opacity: 1;
  transform: translateX(0);
}
.status-item.done {
  color: var(--text-main);
  border-color: rgba(82,199,138,0.3);
}
.status-item.active {
  color: var(--gold);
  border-color: rgba(201,168,76,0.3);
}

.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: background 0.35s, box-shadow 0.35s;
}
.status-item.active .status-dot {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}
.status-item.done .status-dot {
  background: var(--success);
  box-shadow: 0 0 6px rgba(82,199,138,0.4);
}
.status-item.done .status-dot.dot-warning {
  background: var(--danger);
  box-shadow: 0 0 8px rgba(224,82,82,0.4);
}

/* ── Reveal Card ── */
.reveal-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
}
.reveal-card strong { color: var(--gold-light); }
.reveal-card .tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--dark-border);
  color: var(--gold);
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-family: var(--font-title);
  letter-spacing: 1px;
}

/* ── Número Dourado ── */
.gold-num {
  font-style: normal;
  color: var(--gold);
  font-size: 1.3em;
  text-shadow: 0 0 20px var(--gold-glow);
  font-family: var(--font-title);
}

/* ── Famosos Grid — com fotos ── */
.famous-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 520px) {
  .famous-grid { flex-direction: row; }
}
.famous-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.famous-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}
.famous-photo-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* aspect ratio 4:3 */
  position: relative;
  overflow: hidden;
  background: rgba(201,168,76,0.06);
}
.famous-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.famous-card:hover .famous-photo { transform: scale(1.04); }
.famous-info {
  padding: 12px;
  flex: 1;
}
.famous-info h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 5px;
}
.famous-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
/* fallback emoji icon (legado) */
.famous-icon { font-size: 2rem; margin-bottom: 8px; text-align: center; padding-top: 16px; }
.famous-card > h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
  padding: 0 12px;
}
.famous-card > p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0 12px 12px;
  text-align: center;
}

/* ── Callouts ── */
.callout-warning {
  background: rgba(224,82,82,0.1);
  border: 1px solid rgba(224,82,82,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #f5b5b5;
  margin-bottom: 20px;
}
.callout-ok {
  background: rgba(82,199,138,0.08);
  border: 1px solid rgba(82,199,138,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #a0dfc0;
  margin-bottom: 16px;
}

/* ── Base do Nome (Decodificação) ── */
.name-decode-wrap {
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.nome-bloco-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  margin-bottom: 12px;
}
.nome-bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
}
.nome-bloco-letters {
  display: flex;
  gap: 5px;
}
.nome-bloco-nums {
  display: flex;
  gap: 5px;
}
.letter-cell {
  min-width: 30px;
  text-align: center;
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}
.num-cell {
  min-width: 30px;
  text-align: center;
  padding: 4px 7px;
  border-radius: 7px;
  background: rgba(201,168,76,0.12);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-title);
}

/* ── KPI Row ── */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.kpi-card {
  text-align: center;
  padding: 14px 10px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 12px;
}
.kpi-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.kpi-num {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 16px var(--gold-glow);
}
.kpi-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── Pirâmide ── */
.pyramid-wrap {
  margin: 0 auto 20px;
  overflow-x: auto;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.pyramid-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 8px;
}
.pyramid-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.pyramid-cell {
  min-width: 36px;
  padding: 8px 10px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  animation: cellAppear 0.4s ease forwards;
  animation-delay: var(--d, 0ms);
  opacity: 0;
}
.pyramid-cell.letra {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.2);
  color: var(--gold-light);
}
.pyramid-cell.seq {
  background: rgba(224,82,82,0.15);
  border-color: rgba(224,82,82,0.35);
  color: #f5a5a5;
  box-shadow: 0 0 10px rgba(224,82,82,0.2);
}
.pyramid-cell.topo {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
  font-size: 1.1rem;
}
@keyframes cellAppear {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Arcanos Box ── */
.arcanos-box {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}
.arcanos-box h4 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}
.arcano-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.arcano-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.arcano-num {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.14);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--gold-glow);
}
.arcano-info .arcano-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.arcano-info .arcano-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.arcano-role {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  display: block;
  margin-bottom: 2px;
}

/* ── Sequências / Bloqueios ── */
.seq-card {
  background: rgba(224,82,82,0.07);
  border: 1px solid rgba(224,82,82,0.2);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}
.seq-card.ok {
  background: rgba(82,199,138,0.06);
  border-color: rgba(82,199,138,0.18);
}
.seq-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224,82,82,0.2);
  border: 1px solid rgba(224,82,82,0.3);
  color: #f5a0a0;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.82rem;
  margin-bottom: 8px;
  font-family: var(--font-title);
}
.seq-tag.ok {
  background: rgba(82,199,138,0.15);
  border-color: rgba(82,199,138,0.25);
  color: #a0dfc0;
}
.seq-lead {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 5px;
  font-size: 0.95rem;
}
.seq-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.seq-body strong { color: #f5c0c0; }
.seq-urgencia {
  margin-top: 8px;
  font-size: 0.87rem;
  color: var(--gold);
  font-weight: 700;
}

/* ── Síntese ── */
.sintese-card { line-height: 1.75; }
.sintese-card p { margin-bottom: 12px; color: var(--text-main); }
.sintese-card .syntese-note {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 12px;
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 8px;
}

/* ── Depoimentos ── */
.testimonials-wrap { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px;
}
.test-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }
.testimonial-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; font-style: italic; }
.test-author { font-size: 0.82rem; color: var(--gold); font-family: var(--font-title); }

/* ── Presenter ── */
.presenter-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 580px) {
  .presenter-wrap { flex-direction: row; align-items: flex-start; }
}
.presenter-photo-wrap { display: flex; justify-content: center; flex-shrink: 0; }
.presenter-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.photo-placeholder {
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 2rem; color: var(--gold);
}
.presenter-text h3 {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.subtitle-presenter {
  font-size: 0.82rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 12px;
  font-family: var(--font-title);
  letter-spacing: 0.5px;
}
.presenter-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.presenter-text p strong { color: var(--text-main); }
.presenter-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.badge-item {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
}

/* ── Vídeo Depoimento (Etapa 10) ── */
.video-testimonial-wrap {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--dark-border);
}
.video-label {
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--gold);
  font-family: var(--font-title);
  letter-spacing: 1px;
  border-bottom: 1px solid var(--dark-border);
}
.video-depo {
  width: 100%;
  max-height: 400px;
  display: block;
  background: #000;
}
.video-caption {
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* ── IBN Authority Block (Etapa 11) ── */
.ibn-authority {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 520px) {
  .ibn-authority { flex-direction: row; text-align: left; }
}
.ibn-logo-etapa11 {
  max-width: 90px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.3));
  flex-shrink: 0;
}
.ibn-desc h3 {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
}
.ibn-desc p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.ibn-desc strong { color: var(--text-main); }
.ibn-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ibn-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.ibn-num {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}
.ibn-lbl { font-size: 0.72rem; color: var(--text-muted); }
.equipe-label {
  text-align: center;
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 20px 0 16px;
  opacity: 0.8;
}

/* ── Mockup Produto (Etapa 12) ── */
.mockup-wrap {
  text-align: center;
  margin-bottom: 20px;
}
.mockup-img {
  max-width: min(340px, 90vw);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(201,168,76,0.25));
}

/* ── FAQ Simples (Etapa 12) ── */
.faq-simples {
  margin-top: 20px;
  border-top: 1px solid var(--dark-border);
  padding-top: 16px;
}
.faq-item-s {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item-s summary {
  padding: 13px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item-s summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.faq-item-s[open] summary::after { content: '−'; }
.faq-item-s p {
  padding: 0 16px 14px;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Alerta de Sorteio ── */
.raffle-alert {
  background: rgba(201,168,76,0.1);
  border: 1px dashed rgba(201,168,76,0.45);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--gold-light);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
}
.raffle-alert strong { color: #fff; }

/* ── Oferta ── */
.offer-timer-box {
  text-align: center;
  background: rgba(224,82,82,0.12);
  border: 1px solid rgba(224,82,82,0.25);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}
.timer-label { font-size: 0.82rem; color: #f5b5b5; margin-bottom: 6px; }
.timer-display {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: #ff8080;
  letter-spacing: 3px;
  text-shadow: 0 0 14px rgba(224,82,82,0.4);
}

.offer-box {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  margin-bottom: 16px;
}
.offer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0700;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 999px;
}
.offer-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 16px;
  padding-top: 8px;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.offer-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.offer-list li::before { display: none; }
.offer-list li strong { color: var(--gold-light); }

.price-wrap {
  text-align: center;
  margin-bottom: 16px;
}
.price-old {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}
.price-new {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.price-prefix { font-size: 0.85rem; color: var(--text-muted); }
.price-amount {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  line-height: 1;
}
.price-installment {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.guarantee-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(82,199,138,0.06);
  border: 1px solid rgba(82,199,138,0.15);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
}
.garantia-img { width: 70px; height: auto; flex-shrink: 0; }
.garantia-text { font-size: 0.9rem; color: #a0dfc0; font-weight: 700; }
.guarantee-row p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.guarantee-row p strong { color: var(--text-main); }

/* ── Botão Checkout ── */
.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #b8860b, var(--gold), #f0c040);
  background-size: 200% 200%;
  animation: goldShimmer 3s ease infinite;
  border: none;
  border-radius: 14px;
  color: #050300;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 10px 40px rgba(201,168,76,0.4), 0 4px 12px rgba(0,0,0,0.5);
  text-align: center;
  margin-bottom: 8px;
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(201,168,76,0.55); }
.btn-checkout-2 { margin-top: 16px; font-size: 1rem; }

.checkout-security { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0; }

/* ── Bônus ── */
.bonus-wrap {
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 18px;
  margin-top: 16px;
}
.bonus-header {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}
.bonus-grid { display: flex; flex-direction: column; gap: 12px; }
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px;
}
.bonus-emoji { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.bonus-title { font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 2px; }
.bonus-sub { font-size: 0.82rem; color: var(--text-muted); }

/* ── Footer ── */
#siteFooter {
  position: relative;
  z-index: 1;
  background: rgba(8,12,20,0.95);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 20px 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: justify;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ── Responsivo Mobile-First ── */
@media (max-width: 480px) {
  .panel-inner { padding: 20px 14px; }
  .panel-title { font-size: 1.25rem; }
  .panel-sub { font-size: 0.88rem; }

  .price-amount { font-size: 1.85rem; }
  .offer-box { padding: 18px 14px; }
  .price-new { flex-direction: column; gap: 2px; align-items: center; }

  .kpi-row { grid-template-columns: repeat(2, 1fr); }

  .pyramid-cell { min-width: 28px; padding: 5px 7px; font-size: 0.82rem; }

  .presenter-wrap { flex-direction: column; }
  .presenter-photo { width: 110px; height: 110px; }

  .btn-primary, .btn-checkout { font-size: 0.92rem; padding: 14px 16px; }

  #appWrapper { padding: 0 10px 50px; }

  /* cards famosos empilhados em mobile */
  .famous-grid { flex-direction: column; }
  .famous-photo-wrap { padding-bottom: 56%; /* 16:9 em mobile */ }
}

@media (max-width: 380px) {
  .panel-title { font-size: 1.15rem; }
  .eyebrow { font-size: 0.68rem; letter-spacing: 2px; }
}

/* ── Utilitários ── */
.hidden { display: none !important; }
