/* ============================================================
   INVISIA · Funil de Quiz v2 — visual cinematográfico
   Paleta: roxo INVISIA · Efeitos: estilo Claude Rubim V2
   ============================================================ */

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

html, body { height: 100%; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #060810;
  color: var(--inv-off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- NOISE TEXTURE (inspirado Rubim V2) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ---------- GRID LINES (sutil) ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ---------- AMBIENT PARTICLES (canvas underlay) ---------- */
.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

/* ---------- LAYOUT ---------- */
.stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 8vh, 96px) 20px;
  position: relative;
  z-index: 2;
}

.scene {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}
.scene.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HEADER ---------- */
.header-mini {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(6, 8, 16, 0.78);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s var(--ease-out),
              transform 0.4s var(--ease-out);
  pointer-events: none;
}
.header-mini.is-quiz {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-mini .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-mini img { height: 22px; }
.header-mini .progress-wrap {
  flex: 1;
  max-width: 360px;
  margin-inline: 24px;
}
.progress-meta {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.progress {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  overflow: hidden;
}
.progress-bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--inv-violet-light), var(--inv-violet));
  border-radius: inherit;
  width: 0;
  transition: width 0.6s var(--ease-out);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.7);
}

/* ============================================================
   HERO
   ============================================================ */
.scene-hero {
  text-align: center;
  max-width: 880px;
  padding: 60px 0;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: clamp(400px, 90vw, 900px);
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(168, 85, 247, 0.22) 0%,
    rgba(126, 34, 206, 0.10) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -55%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -55%) scale(1.08); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(168, 85, 247, 0.10);
  border: 1px solid rgba(168, 85, 247, 0.32);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--inv-violet-light);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--inv-violet);
  box-shadow: 0 0 10px var(--inv-violet);
  animation: blinkDot 1.5s ease-in-out infinite;
}
@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 auto 1.4rem;
  max-width: 14ch;
  animation: fadeInDown 0.8s ease 0.1s both;
}
.hero-title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--inv-glow) 50%, var(--inv-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.4));
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--inv-cloud);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-subtitle strong {
  color: var(--inv-violet-light);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--inv-violet-dark), var(--inv-violet));
  color: #fff;
  text-decoration: none;
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              background 0.25s var(--ease-out);
  box-shadow:
    0 0 40px rgba(168, 85, 247, 0.3),
    0 10px 30px rgba(126, 34, 206, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--inv-violet), var(--inv-violet-light));
  box-shadow:
    0 0 80px rgba(168, 85, 247, 0.55),
    0 18px 40px rgba(126, 34, 206, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-primary .arrow { transition: transform 0.25s var(--ease-out); }
.btn-primary:hover .arrow { transform: translateX(5px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: var(--inv-off-white);
  text-decoration: none;
  padding: 1.1rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: var(--font-body);
  backdrop-filter: blur(10px);
  transition: all 0.25s var(--ease-out);
}
.btn-secondary:hover {
  border-color: rgba(168, 85, 247, 0.55);
  background: rgba(168, 85, 247, 0.08);
}

.hero-micro {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  animation: fadeInDown 0.8s ease 0.4s both;
}
.hero-micro .dot-on {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  margin-right: 6px;
  vertical-align: middle;
}

/* Hero stats (números Rubim V2) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(168, 85, 247, 0.12);
  animation: fadeInDown 0.8s ease 0.5s both;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero-stats .stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 6px;
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

.hero-scroll {
  position: relative;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: fadeInDown 1s ease 0.8s both;
}
.scroll-arrow {
  width: 14px; height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(3px, 3px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   QUIZ
   ============================================================ */
.transition-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--inv-cloud);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeInUp 0.5s var(--ease-out) 0.1s forwards;
}

.question-card {
  position: relative;
  padding: 40px 36px;
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.18);
  background: linear-gradient(rgba(45, 27, 105, 0.18), rgba(14, 14, 21, 0.55));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(168, 85, 247, 0.1);
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) 0.15s forwards;
}
/* topo do card: faixa de luz */
.question-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.6), transparent);
}

@media (max-width: 600px) {
  .question-card { padding: 28px 22px; }
}

.question-card .q-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--inv-violet-light);
  background: rgba(168, 85, 247, 0.10);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
}

.question-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 16px 0 10px;
  color: var(--inv-off-white);
}

.question-card .subtext {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 26px;
  line-height: 1.5;
}

.options-stack {
  display: grid;
  gap: 12px;
}

/* Stagger animation: cada opção entra com 80ms de delay */
.options-stack .option {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.5s var(--ease-out) forwards;
}
.options-stack .option:nth-child(1) { animation-delay: 0.10s; }
.options-stack .option:nth-child(2) { animation-delay: 0.18s; }
.options-stack .option:nth-child(3) { animation-delay: 0.26s; }
.options-stack .option:nth-child(4) { animation-delay: 0.34s; }
.options-stack .option:nth-child(5) { animation-delay: 0.42s; }
.options-stack .option:nth-child(6) { animation-delay: 0.50s; }

.option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: var(--inv-off-white);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  transition: all 0.28s var(--ease-out);
  overflow: hidden;
}
.option::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.08), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.option:hover::before { left: 100%; }

.option .opt-radio {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(196, 168, 255, 0.32);
  position: relative;
  margin-top: 1px;
  transition: all 0.25s var(--ease-out);
}
.option .opt-text { flex: 1; }
.option .opt-label {
  display: block;
  font-weight: 600;
  color: var(--inv-off-white);
}
.option .opt-desc {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.45;
}
.option:hover {
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(168, 85, 247, 0.06);
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(168, 85, 247, 0.15);
}
.option:hover .opt-radio { border-color: var(--inv-violet); }
.option.is-selected {
  border-color: var(--inv-violet);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(45, 27, 105, 0.32));
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.45);
}
.option.is-selected .opt-radio {
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  border-color: var(--inv-violet-light);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.7);
}
.option.is-selected .opt-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: white;
}

.q-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}
.btn-back {
  background: transparent;
  border: 0;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.25s var(--ease-out);
}
.btn-back:hover {
  color: var(--inv-violet-light);
  background: rgba(168, 85, 247, 0.08);
}
.btn-back[disabled] { opacity: 0.32; cursor: not-allowed; }

.q-counter {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   LÂMINAS EDUCATIVAS (insight slides)
   ============================================================ */
.insight-card {
  position: relative;
  padding: 44px 38px;
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: linear-gradient(135deg, rgba(45, 27, 105, 0.32), rgba(14, 14, 21, 0.7));
  backdrop-filter: blur(20px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(168, 85, 247, 0.15),
    inset 0 1px 0 rgba(168, 85, 247, 0.2);
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) 0.1s forwards;
}
/* Scan-line effect */
.insight-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--inv-violet), transparent);
  animation: scanline 2.5s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes scanline {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(100%); opacity: 0.7; }
}
/* Glow corner */
.insight-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 60%);
  pointer-events: none;
}

@media (max-width: 600px) {
  .insight-card { padding: 30px 24px; }
}

.insight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--inv-violet-light);
  margin-bottom: 18px;
}
.insight-eyebrow .pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--inv-violet);
  box-shadow: 0 0 12px var(--inv-violet);
  animation: blinkDot 1.5s ease-in-out infinite;
}

.insight-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.insight-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.4));
}

.insight-body {
  color: var(--inv-cloud);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.insight-body strong {
  color: var(--inv-violet-light);
  font-weight: 600;
}

/* Big stat dentro da lâmina */
.insight-bigstat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  margin: 24px 0;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 16px;
  position: relative;
}
.insight-bigstat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.5));
}
.insight-bigstat .desc {
  font-size: 14px;
  color: var(--inv-cloud);
  line-height: 1.5;
}
.insight-bigstat .desc strong {
  display: block;
  color: var(--inv-off-white);
  font-weight: 600;
  margin-bottom: 4px;
}

/* Lista de manchetes */
.headlines {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.headline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--inv-violet);
  border-radius: 10px;
  font-size: 14px;
  align-items: start;
  transition: border-color 0.25s var(--ease-out);
}
.headline:hover { border-left-color: var(--inv-violet-light); }
.headline .source {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--inv-violet-light);
  background: rgba(168, 85, 247, 0.12);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  align-self: start;
  margin-top: 1px;
}
.headline .quote {
  color: var(--inv-cloud);
  line-height: 1.45;
}
.headline .quote em { color: var(--inv-violet-light); font-style: normal; font-weight: 600; }

/* Logos brasileiras */
.brazilian-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.brazilian-logos .logo-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 100px;
  color: var(--inv-cloud);
  letter-spacing: 0.02em;
}

.insight-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.insight-cta .btn-primary {
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
}

/* ============================================================
   LOADING
   ============================================================ */
.loader {
  text-align: center;
  padding: 80px 20px;
  position: relative;
}
.loader-rings {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
}
.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--inv-violet);
  animation: ringSpin 1s linear infinite;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.5);
}
.ring:nth-child(2) { inset: 12px; border-top-color: var(--inv-violet-light); animation-duration: 1.4s; animation-direction: reverse; opacity: 0.7; }
.ring:nth-child(3) { inset: 24px; border-top-color: var(--inv-glow); animation-duration: 1.8s; opacity: 0.5; }
@keyframes ringSpin { to { transform: rotate(360deg); } }

.loader-text {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--inv-cloud);
  letter-spacing: -0.01em;
}

/* ============================================================
   RESULTADO
   ============================================================ */
.result-card {
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.32);
  background: linear-gradient(rgba(45, 27, 105, 0.34), rgba(14, 14, 21, 0.74));
  backdrop-filter: blur(22px);
  box-shadow:
    0 0 120px rgba(168, 85, 247, 0.22),
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(168, 85, 247, 0.25);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--inv-violet), var(--inv-violet-light), var(--inv-violet), transparent);
  animation: scanline 3s ease-in-out infinite;
}
.result-card::after {
  content: "";
  position: absolute;
  bottom: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent 60%);
  pointer-events: none;
}
@media (max-width: 600px) {
  .result-card { padding: 32px 24px; }
}

.result-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--inv-violet-light);
  background: rgba(168, 85, 247, 0.10);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 22px;
}
.result-eyebrow .pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 12px #10B981;
}

.result-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.result-card h1 .text-grad {
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.5));
}

.diag {
  font-size: 16px;
  line-height: 1.65;
  color: var(--inv-cloud);
  margin-bottom: 30px;
}
.diag strong {
  color: var(--inv-violet-light);
  font-weight: 600;
}

.pacote-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.pacote-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.pacote-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--inv-off-white);
  line-height: 1.5;
  transition: all 0.25s var(--ease-out);
}
.pacote-list li:hover {
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(168, 85, 247, 0.12);
  transform: translateX(3px);
}
.pacote-list li::before {
  content: "→";
  color: var(--inv-violet-light);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.3;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.result-actions .btn-primary {
  width: 100%;
  padding: 22px 24px;
  font-size: 1.05rem;
  justify-content: center;
}
.result-actions .micro {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

.restart-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
}
.restart-link:hover { color: var(--inv-violet-light); }

/* ---------- EMAIL CATCHER (rede de segurança no resultado) ---------- */
.email-catcher {
  margin-top: 28px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 14px;
  position: relative;
  z-index: 1;
}
.email-catcher .ec-label {
  display: block;
  font-size: 13px;
  color: var(--inv-cloud);
  margin-bottom: 12px;
  line-height: 1.5;
}
.email-catcher .ec-label strong {
  color: var(--inv-violet-light);
  font-weight: 600;
}
.ec-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.ec-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  color: var(--inv-off-white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.25s var(--ease-out);
}
.ec-input::placeholder { color: var(--text-muted); }
.ec-input:focus {
  outline: none;
  border-color: var(--inv-violet);
  background: rgba(0,0,0,0.55);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.18);
}
.ec-submit {
  padding: 12px 18px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 10px;
  color: var(--inv-violet-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.ec-submit:hover {
  background: var(--inv-violet);
  color: white;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.5);
}
.ec-submit[disabled] { opacity: 0.5; cursor: not-allowed; }
.ec-success {
  display: none;
  text-align: center;
  font-size: 14px;
  color: #10B981;
  padding: 8px 0;
}
.ec-success::before {
  content: "✓ ";
  font-weight: 700;
}
.email-catcher.is-sent .ec-row,
.email-catcher.is-sent .ec-label { display: none; }
.email-catcher.is-sent .ec-success { display: block; }

@media (max-width: 480px) {
  .ec-row { flex-direction: column; }
  .ec-submit { width: 100%; }
}

/* ============================================================
   v3.1 — OPÇÕES ILUSTRADAS (com ícone SVG)
   ============================================================ */
.has-illustrated-options { padding-top: 36px !important; }

.options-illustrated {
  gap: 14px;
}

.option-illustrated {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(168, 85, 247, 0.03));
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
}
.option-illustrated::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, var(--accent-color, var(--inv-violet)), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
  mix-blend-mode: screen;
}
.option-illustrated:hover {
  border-color: var(--accent-color, var(--inv-violet));
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.4),
    0 0 50px color-mix(in srgb, var(--accent-color, var(--inv-violet)) 18%, transparent);
}
.option-illustrated:hover::before { opacity: 0.10; }
.option-illustrated:hover .opt-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 0 30px color-mix(in srgb, var(--accent-color, var(--inv-violet)) 60%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.option-illustrated.is-selected {
  border-color: var(--accent-color, var(--inv-violet));
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent-color, var(--inv-violet)) 14%, transparent),
    color-mix(in srgb, var(--accent-color, var(--inv-violet)) 4%, transparent));
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--accent-color, var(--inv-violet)) 18%, transparent),
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 60px color-mix(in srgb, var(--accent-color, var(--inv-violet)) 25%, transparent);
}
.option-illustrated.is-selected::before { opacity: 0.18; }
.option-illustrated.is-selected .opt-icon {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent-color, var(--inv-violet)) 35%, transparent),
    color-mix(in srgb, var(--accent-color, var(--inv-violet)) 12%, transparent));
  box-shadow:
    0 0 30px color-mix(in srgb, var(--accent-color, var(--inv-violet)) 80%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.opt-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--icon-color, var(--inv-violet-light)) 18%, transparent),
    color-mix(in srgb, var(--icon-color, var(--inv-violet-light)) 6%, transparent));
  border: 1px solid color-mix(in srgb, var(--icon-color, var(--inv-violet-light)) 30%, transparent);
  color: var(--icon-color, var(--inv-violet-light));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.3s var(--ease-out);
  position: relative;
  z-index: 1;
}
.opt-icon svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--icon-color, var(--inv-violet-light)) 60%, transparent));
}

.option-illustrated .opt-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.option-illustrated .opt-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--inv-off-white);
  line-height: 1.2;
}
.option-illustrated .opt-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.opt-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background: rgba(0,0,0,0.3);
  transition: all 0.25s var(--ease-out);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.opt-check svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s var(--ease-out);
}
.option-illustrated:hover .opt-check {
  border-color: var(--accent-color, var(--inv-violet));
}
.option-illustrated.is-selected .opt-check {
  background: var(--accent-color, var(--inv-violet));
  border-color: var(--accent-color, var(--inv-violet));
  color: #060810;
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent-color, var(--inv-violet)) 70%, transparent);
}
.option-illustrated.is-selected .opt-check svg {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 540px) {
  .option-illustrated {
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    padding: 16px 16px;
  }
  .opt-icon { width: 48px; height: 48px; }
  .opt-icon svg { width: 26px; height: 26px; }
  .option-illustrated .opt-label { font-size: 15px; }
  .opt-check { width: 22px; height: 22px; }
}

/* ============================================================
   v3 — AUTHORITY BAR (mini-bar "você está conversando com")
   ============================================================ */
.authority-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  margin: -14px -14px 24px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(45, 27, 105, 0.18));
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 14px;
}
.authority-photo {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--inv-violet);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.4);
  background: linear-gradient(135deg, var(--inv-violet-dark), var(--inv-violet));
  display: flex;
  align-items: center;
  justify-content: center;
}
.authority-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.authority-photo-fallback {
  display: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: white;
  letter-spacing: -0.02em;
}
.authority-photo-fallback.is-fallback { display: inline-block; }

.authority-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.authority-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.authority-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--inv-off-white);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.authority-role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}
@media (max-width: 480px) {
  .authority-photo { width: 44px; height: 44px; }
  .authority-name { font-size: 14px; }
  .authority-role { font-size: 11px; }
}

/* ============================================================
   v3 — CADASTRO FORM
   ============================================================ */
.cadastro-card { padding-top: 14px; }
.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--inv-cloud);
  letter-spacing: 0.04em;
}
.form-input {
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--inv-off-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.25s var(--ease-out);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  outline: none;
  border-color: var(--inv-violet);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2);
}
.form-input.is-error {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.08);
  animation: shake 0.4s var(--ease-out);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.form-hint {
  font-size: 11px;
  color: var(--text-muted);
}
.form-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin-top: 4px;
}
.form-disclaimer .lock-icon { font-size: 14px; }
.form-submit {
  width: 100%;
  padding: 20px 24px;
  font-size: 1rem;
  margin-top: 8px;
  justify-content: center;
}

/* ============================================================
   v3 — RESULT · CTA grande
   ============================================================ */
.btn-result-cta {
  width: 100%;
  padding: 22px 24px;
  font-size: 1.05rem;
  justify-content: center;
}

/* ============================================================
   v3 — SQUADS GRID (no resultado Premium)
   ============================================================ */
.squads-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
  padding: 16px;
  background: rgba(168, 85, 247, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.14);
  border-radius: 12px;
}
.squad-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(168, 85, 247, 0.10);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--inv-cloud);
  transition: all 0.2s var(--ease-out);
}
.squad-pill:hover {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-1px);
}
.squad-icon { font-size: 14px; line-height: 1; }

/* ============================================================
   v3 — MANIFESTO (foto grande + frase de efeito)
   ============================================================ */
.manifesto-card {
  position: relative;
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.25);
  background:
    radial-gradient(ellipse at top, rgba(168, 85, 247, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(45, 27, 105, 0.32), rgba(8, 8, 16, 0.85));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(168, 85, 247, 0.18),
    inset 0 1px 0 rgba(168, 85, 247, 0.25);
  overflow: hidden;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease-out) forwards;
}
.manifesto-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--inv-violet), var(--inv-violet-light), var(--inv-violet), transparent);
  animation: scanline 3s ease-in-out infinite;
}
@media (max-width: 600px) {
  .manifesto-card { padding: 32px 22px; }
}

.manifesto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--inv-violet-light);
  background: rgba(168, 85, 247, 0.10);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 28px;
}

.manifesto-photo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 32px;
  isolation: isolate;
}
.manifesto-photo {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  border: 2px solid rgba(168, 85, 247, 0.4);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(168, 85, 247, 0.25);
  position: relative;
  z-index: 2;
}
.manifesto-photo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.4), transparent 65%);
  z-index: 1;
  pointer-events: none;
  animation: photoGlow 4s ease-in-out infinite;
}
@keyframes photoGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--inv-off-white);
  margin: 0 0 24px;
  max-width: 640px;
  margin-inline: auto;
  text-wrap: balance;
}
.manifesto-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(168, 85, 247, 0.55));
}

.manifesto-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--inv-cloud);
  max-width: 560px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.manifesto-sub strong {
  color: var(--inv-violet-light);
  font-weight: 600;
}

.manifesto-signature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  margin: 0 auto 28px;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 14px;
  text-align: left;
}
.manifesto-sig-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.manifesto-sig-line strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--inv-off-white);
  letter-spacing: -0.01em;
}
.manifesto-sig-role {
  font-size: 12px;
  color: var(--text-secondary);
}
.manifesto-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--inv-violet-light);
  white-space: nowrap;
}
.ms-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}
@media (max-width: 480px) {
  .manifesto-signature { flex-direction: column; align-items: flex-start; }
}

.manifesto-cta {
  display: flex;
  justify-content: center;
}
.manifesto-cta .btn-primary {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ============================================================
   v3 — SCHEDULE OPTIONS (4 slots)
   ============================================================ */
.schedule-options {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.schedule-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 14px;
  color: var(--inv-off-white);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.5s var(--ease-out) forwards;
}
.schedule-option:nth-child(1) { animation-delay: 0.05s; }
.schedule-option:nth-child(2) { animation-delay: 0.13s; }
.schedule-option:nth-child(3) { animation-delay: 0.21s; }
.schedule-option:nth-child(4) { animation-delay: 0.29s; }

.schedule-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.schedule-option:hover::before { opacity: 1; }
.schedule-option:hover {
  border-color: var(--inv-violet);
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(168, 85, 247, 0.18);
}
.schedule-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.schedule-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--inv-off-white);
}
.schedule-desc {
  font-size: 13px;
  color: var(--text-secondary);
}
.schedule-arrow {
  font-size: 20px;
  color: var(--inv-violet-light);
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--ease-out);
}
.schedule-option:hover .schedule-arrow { transform: translateX(5px); }

/* ============================================================
   v3 — FINAL CARD (após escolher horário)
   ============================================================ */
.final-card { text-align: center; }
.final-check {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  animation: scaleIn 0.6s var(--ease-spring);
}
@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.final-card h1 {
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   v3 — SELO HEADER "+180 atendidos"
   ============================================================ */
.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--inv-cloud);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 4px 10px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 999px;
}
.header-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}
@media (max-width: 720px) {
  .header-badge { display: none; }
}

/* ============================================================
   v3.2 — DIAGNÓSTICO IRRESISTÍVEL (multi-blocos)
   ============================================================ */
.result-card-v2 {
  position: relative;
  padding: 0;
  border-radius: 28px;
  border: 1px solid rgba(168, 85, 247, 0.30);
  background: linear-gradient(180deg, rgba(45, 27, 105, 0.20), rgba(8, 8, 16, 0.80));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 0 120px rgba(168, 85, 247, 0.20),
    0 30px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.result-card-v2::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--inv-violet), var(--inv-violet-light), var(--inv-violet), transparent);
  animation: scanline 3s ease-in-out infinite;
  z-index: 1;
}

.result-block {
  padding: 28px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.result-block:last-child { border-bottom: none; }
@media (max-width: 600px) {
  .result-block { padding: 22px 22px; }
}

.block-header {
  margin-bottom: 18px;
}
.block-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--inv-violet-light);
  margin-bottom: 10px;
}
.block-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--inv-off-white);
  line-height: 1.3;
}
.block-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HEADER */
.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.result-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* PERFIL + SCORE */
.perfil-block {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.10), rgba(45, 27, 105, 0.04));
}
.perfil-id { margin-bottom: 18px; }
.perfil-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.perfil-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--inv-off-white) 0%, var(--inv-violet-light) 60%, var(--inv-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.05;
}
.perfil-score { display: flex; flex-direction: column; gap: 8px; }
.score-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.score-label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.score-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.score-num small {
  font-size: 1rem;
  color: var(--inv-violet-light);
  -webkit-text-fill-color: var(--inv-violet-light);
}
.score-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.score-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--inv-violet-dark), var(--inv-violet), var(--inv-violet-light));
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.7);
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.score-bar-fill.is-filled { width: var(--target); }
.score-bar-fill::after {
  content: "";
  position: absolute;
  top: 0; right: -3px; bottom: 0;
  width: 12px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.6), transparent 70%);
  filter: blur(2px);
}
.score-hint {
  font-size: 12px;
  color: var(--inv-cloud);
  margin-top: 4px;
}

/* H1 + DIAG (mantém estilo, refinado) */
.result-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.text-grad {
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.5));
}

/* ANTES vs DEPOIS */
.ad-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 640px) {
  .ad-grid { grid-template-columns: 1fr; }
  .ad-arrow { transform: rotate(90deg); margin: 6px auto; }
}
.ad-col {
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ad-antes {
  background: rgba(255, 100, 100, 0.04);
  border-color: rgba(255, 130, 130, 0.18);
}
.ad-depois {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.04));
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.10);
}
.ad-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ad-antes .ad-tag { color: #FF8888; }
.ad-depois .ad-tag { color: var(--inv-violet-light); }
.ad-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ad-col li {
  font-size: 13.5px;
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
  color: var(--inv-cloud);
}
.ad-antes li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #FF8888;
  font-weight: 700;
  font-size: 12px;
}
.ad-depois li {
  color: var(--inv-off-white);
}
.ad-depois li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--inv-violet-light);
  font-weight: 700;
}
.ad-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--inv-violet);
  flex-shrink: 0;
}
.ad-arrow svg { width: 32px; height: 32px; filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6)); }

/* ROI BLOCK */
.roi-block {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(168, 85, 247, 0.06));
}
.roi-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 600px) {
  .roi-grid { grid-template-columns: 1fr; }
}
.roi-num-wrap {
  text-align: center;
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  border: 1px solid rgba(168, 85, 247, 0.25);
  min-width: 200px;
}
.roi-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--inv-violet-light);
  margin-bottom: 6px;
}
.roi-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.45));
  margin-bottom: 2px;
}
.roi-sub {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.roi-detail-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--inv-violet-light);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.roi-detail-desc {
  font-size: 13px;
  color: var(--inv-cloud);
  line-height: 1.55;
}
.roi-detail-desc strong { color: var(--inv-violet-light); }

/* TIMELINE 30 DIAS */
.timeline-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 28px;
}
.timeline-grid::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 9px;
  width: 2px;
  background: linear-gradient(180deg, var(--inv-violet-dark), var(--inv-violet), var(--inv-violet-light));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}
.timeline-step {
  position: relative;
  padding: 12px 0 12px 24px;
  opacity: 0;
  transform: translateX(-12px);
  animation: fadeInRight 0.5s var(--ease-out) forwards;
  animation-delay: calc(var(--idx) * 0.12s + 0.3s);
}
@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}
.timeline-dot {
  position: absolute;
  left: -27px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--inv-violet);
  border: 3px solid #060810;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.7);
  z-index: 1;
}
.timeline-info { display: flex; flex-direction: column; gap: 3px; }
.timeline-week {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--inv-violet-light);
}
.timeline-titulo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--inv-off-white);
  letter-spacing: -0.01em;
}
.timeline-desc {
  font-size: 13px;
  color: var(--inv-cloud);
  line-height: 1.5;
}

/* PACOTE V2 (com check) */
.pacote-list-v2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.pacote-list-v2 li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 12px;
  font-size: 14px;
  color: var(--inv-off-white);
  line-height: 1.5;
}
.pacote-list-v2 .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--inv-violet-light), var(--inv-violet));
  color: #060810;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}
.pacote-list-v2 .check svg { width: 14px; height: 14px; }

/* SQUADS COMO TIMES */
.squads-block {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(45, 27, 105, 0.05));
}
.squads-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.squad-team-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 12px;
  transition: all 0.25s var(--ease-out);
}
.squad-team-card:hover {
  border-color: var(--inv-violet);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 0 30px rgba(168, 85, 247, 0.15);
}
.squad-team-icon {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}
.squad-team-info { display: flex; flex-direction: column; min-width: 0; }
.squad-team-info strong {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--inv-off-white);
  letter-spacing: -0.01em;
}
.squad-team-info span {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-top: 2px;
}

/* CASO REAL */
.caso-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(168, 85, 247, 0.20);
  border-radius: 16px;
}
.caso-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--inv-violet-dark), var(--inv-violet));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: white;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}
.caso-content { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.caso-meta { display: flex; flex-direction: column; gap: 2px; }
.caso-meta strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--inv-off-white);
}
.caso-meta span {
  font-size: 12px;
  color: var(--text-secondary);
}
.caso-quote {
  font-size: 14px;
  line-height: 1.55;
  color: var(--inv-cloud);
  font-style: italic;
  border-left: 2px solid var(--inv-violet);
  padding-left: 12px;
}
.caso-quote strong { color: var(--inv-violet-light); font-style: normal; }
.caso-tempo {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.caso-tempo strong { color: var(--inv-violet-light); font-weight: 700; }

/* GARANTIA */
.garantia-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.10), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: 16px;
}
.garantia-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: #67E8C0;
  flex-shrink: 0;
}
.garantia-icon svg { width: 40px; height: 40px; filter: drop-shadow(0 0 12px rgba(103, 232, 192, 0.6)); }
.garantia-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #67E8C0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.garantia-text p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--inv-cloud);
}
.garantia-text strong:not(:first-child) { color: var(--inv-off-white); display: inline; text-transform: none; letter-spacing: normal; font-size: inherit; }

/* URGÊNCIA */
.urgencia-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(254, 188, 46, 0.10), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(254, 188, 46, 0.32);
  border-radius: 14px;
}
.urgencia-pulse {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #FEBC2E;
  box-shadow: 0 0 0 0 rgba(254, 188, 46, 0.7);
  animation: urgPulse 1.5s ease-out infinite;
  flex-shrink: 0;
}
@keyframes urgPulse {
  0% { box-shadow: 0 0 0 0 rgba(254, 188, 46, 0.7); }
  100% { box-shadow: 0 0 0 18px rgba(254, 188, 46, 0); }
}
.urgencia-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #FEBC2E;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.urgencia-text p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--inv-cloud);
}
.urgencia-text strong:not(:first-child) { color: var(--inv-off-white); display: inline; text-transform: none; letter-spacing: normal; font-size: inherit; }

/* CTA MEGA */
.btn-result-cta-mega {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--inv-violet-dark), var(--inv-violet));
  border-radius: 16px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  color: white;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  box-shadow:
    0 0 60px rgba(168, 85, 247, 0.4),
    0 16px 40px rgba(126, 34, 206, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.btn-result-cta-mega::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.7s ease;
}
.btn-result-cta-mega:hover::before { left: 100%; }
.btn-result-cta-mega:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--inv-violet), var(--inv-violet-light));
  box-shadow:
    0 0 100px rgba(168, 85, 247, 0.6),
    0 24px 60px rgba(126, 34, 206, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.28);
}
.cta-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.cta-sub {
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.result-actions { padding-top: 8px; }
.result-actions .micro {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 14px;
}
.result-actions .dot-on {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  vertical-align: middle;
  margin-right: 6px;
}

/* RESTART */
.result-card-v2 .restart-link {
  display: block;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 20px 0 28px;
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: 0;
  font-family: var(--font-body);
}

/* ============================================================
   v3.3 — VIDEO CARD + LIGHTBOX (depoimentos reais)
   ============================================================ */
.video-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
}
.video-card:hover {
  transform: translateY(-2px);
  border-color: var(--inv-violet);
  background: rgba(168, 85, 247, 0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 50px rgba(168, 85, 247, 0.18);
}
.video-card--sm { grid-template-columns: 130px 1fr; padding: 10px; gap: 14px; }
.video-card--sm .video-name { font-size: 13px; }
.video-card--sm .video-quote { font-size: 12.5px; -webkit-line-clamp: 2; line-clamp: 2; }
@media (max-width: 600px) {
  .video-card, .video-card--sm { grid-template-columns: 1fr; }
}

.video-poster {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 10px;
  background-size: cover;
  background-position: center 22%;
  background-color: #1a0c33;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,16,0.85));
  pointer-events: none;
}
.video-play {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  filter: drop-shadow(0 0 24px rgba(168, 85, 247, 0.7));
  transition: transform 0.25s var(--ease-out);
}
.video-card:hover .video-play { transform: scale(1.12); }
.video-play svg { width: 100%; height: 100%; }
.video-poster-tag {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--inv-cloud);
  z-index: 1;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.video-card--sm .video-poster-tag { display: none; }

.video-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 4px 4px 4px 0;
}
.video-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--inv-violet-light);
}
.video-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--inv-off-white);
}
.video-role {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.video-quote {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--inv-cloud);
  font-style: italic;
  margin: 8px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-handle {
  font-size: 11px;
  color: var(--inv-violet-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* VIDEO INSIGHT (lâmina mid-funnel) */
.video-insight-card { padding-bottom: 32px; }
.video-insight-card .video-card { margin: 20px 0 8px; }

/* CASO REAL no diagnóstico */
.caso-block .video-card,
.caso-block-sub .video-card { margin-top: 10px; }
.caso-block-sub { padding-top: 12px !important; padding-bottom: 22px !important; border-top: 0; }
.caso-sub-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

/* TELA FINAL — bonus */
.final-bonus {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.final-bonus-label {
  text-align: center;
  font-size: 13px;
  color: var(--inv-cloud);
  margin-bottom: 14px;
  line-height: 1.5;
}
.final-bonus-label strong { color: var(--inv-violet-light); }

/* LIGHTBOX */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-lightbox.is-open { display: flex; }
.vl-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.vl-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: linear-gradient(180deg, rgba(45, 27, 105, 0.30), rgba(8, 8, 16, 0.95));
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 100px rgba(168, 85, 247, 0.25);
  animation: vlIn 0.4s var(--ease-spring);
}
@keyframes vlIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.vl-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease-out);
}
.vl-close:hover {
  background: var(--inv-violet);
  border-color: var(--inv-violet-light);
  transform: scale(1.05);
}
.vl-close svg { width: 18px; height: 18px; }
.vl-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.vl-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.vl-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  font-size: 13px;
  color: var(--inv-cloud);
}
.vl-meta strong { font-family: var(--font-display); font-weight: 700; color: var(--inv-off-white); }
.vl-meta-hint { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }

/* Anti-fuga: cobre canto inferior direito do iframe (logo YouTube + share) */
.vl-anti-leak {
  position: absolute;
  pointer-events: auto;
  z-index: 3;
  background: transparent;
}
.vl-anti-leak--br {
  bottom: 0;
  right: 0;
  width: 90px;
  height: 38px;
}
@media (max-width: 600px) {
  .vl-anti-leak--br { width: 70px; height: 42px; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(168, 85, 247, 0.10);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}
.site-footer a { color: var(--text-secondary); text-decoration: none; }
.site-footer a:hover { color: var(--inv-violet-light); }
