/* ============================================================
   W2G SPORTS | Landing Page Oficial de Placement nos EUA
   Direto, Minimalista e Objetivo (Alinhado à Apresentação Oficial)
   Identidade: Preto Nobre (#050708) + Dourado W2G (#d4af37) + Branco
   ============================================================ */

:root {
  --black: #050708;
  --ink-950: #080b0e;
  --ink-900: #0e1217;
  --card-dark: #10151c;
  --card-dark-hover: #151c26;
  --line-dark: rgba(212, 175, 55, 0.25);
  --line-dark-soft: rgba(255, 255, 255, 0.08);

  /* Gold Palette */
  --gold: #d4af37;
  --gold-light: #f3e08c;
  --gold-bright: #e8c858;
  --gold-deep: #b89028;
  --gold-glow: rgba(212, 175, 55, 0.2);
  --gold-gradient: linear-gradient(135deg, #f7e69c 0%, #d4af37 50%, #b89028 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fff2b8 0%, #e2c04e 50%, #c99f32 100%);

  /* Light Sections */
  --paper: #ffffff;
  --paper-2: #f8fafc;
  --line-light: #e2e8f0;
  --tx-light-strong: #0f172a;
  --tx-light: #334155;
  --tx-light-dim: #64748b;

  /* Dark Text */
  --tx-dark-strong: #ffffff;
  --tx-dark: rgba(241, 245, 249, 0.9);
  --tx-dark-dim: rgba(203, 213, 225, 0.65);

  --danger: #ef4444;
  --success: #10b981;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --btn-radius: 10px;
  --pad: clamp(20px, 5vw, 36px);
  --sect: clamp(56px, 7vw, 96px);

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--black);
  color: var(--tx-dark);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

::selection {
  background: rgba(212, 175, 55, 0.35);
  color: #fff;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

/* ---------- Bandas & Seções ---------- */
.band-dark {
  background: linear-gradient(180deg, #050708 0%, #0c1015 50%, #06080b 100%);
  color: var(--tx-dark);
}

.band-gold-tint {
  background: radial-gradient(80% 50% at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 80%),
              linear-gradient(180deg, #070a0d 0%, #0e131a 50%, #070a0d 100%);
  color: var(--tx-dark);
}

.band-light {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 50%, #eef2f6 100%);
  color: var(--tx-light);
}

.band-light2 {
  background: linear-gradient(180deg, #edf2f7 0%, #e2e8f0 60%, #edf2f7 100%);
  color: var(--tx-light);
}

.section {
  position: relative;
  padding-top: var(--sect);
  padding-bottom: var(--sect);
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  position: relative;
  z-index: 1;
}

/* ---------- Tipografia Limpa & Direta ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  font-size: clamp(25px, 3.8vw, 36px);
  margin-top: 10px;
}

.band-dark h2, .band-gold-tint h2 {
  color: #ffffff;
}

.band-light h2, .band-light2 h2 {
  color: var(--tx-light-strong);
}

.hl {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.kicker {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kicker::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--gold);
  flex: none;
}

.band-light .kicker {
  color: var(--gold-deep);
}

.band-light .kicker::before {
  background: var(--gold-deep);
}

.desc {
  margin-top: 12px;
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 58ch;
  line-height: 1.55;
}

.band-dark .desc, .band-gold-tint .desc {
  color: var(--tx-dark);
}

.band-light .desc, .band-light2 .desc {
  color: var(--tx-light);
}

/* ---------- Ícones ---------- */
.ic {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icbox {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  flex: none;
}

/* ---------- Topbar Fina & Simples (Fundo Dourado / Letras Pretas) ---------- */
.topbar {
  position: relative;
  z-index: 10;
  background: var(--gold-gradient);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 7px var(--pad);
  padding-top: max(7px, env(safe-area-inset-top));
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: #06080a;
}

.topbar strong,
.topbar b {
  color: #000;
  font-weight: 800;
}

.topbar .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06080a;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero {
  position: relative;
  padding-top: max(clamp(28px, 4vw, 44px), env(safe-area-inset-top));
  padding-bottom: clamp(48px, 6vw, 76px);
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 8, 0.72) 0%, rgba(5, 7, 8, 0.85) 55%, #050708 100%);
}

.hero .wrap {
  z-index: 2;
}

/* ============================================================
   HERO VSL MASTER LAYOUT (CENTRALIZADO & SEQUENCIAL)
   ============================================================ */
.hero-vsl-layout {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brandbar-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(18px, 2.8vw, 28px);
  width: 100%;
}

.brandbar-center img {
  width: clamp(110px, 15vw, 135px);
  height: auto;
}

.hero-vsl-header {
  max-width: 800px;
  margin-bottom: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-vsl-header h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-top: 10px;
  line-height: 1.18;
}

.hero-vsl-header .sub-scope {
  margin-top: 12px;
}

.vsl-main-player {
  width: 100%;
  max-width: 840px;
  margin: 0 auto clamp(24px, 3.5vw, 36px);
  padding: 8px;
  border-radius: var(--radius);
  background: linear-gradient(170deg, #121824 0%, #06090c 100%);
  border: 1px solid var(--line-dark);
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.hero-vsl-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  user-select: none;
}

.hero-vsl-container iframe,
.hero-vsl-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

/* Overlay VSL de Ativação de Áudio */
.vsl-unmute-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 5;
}

.vsl-unmute-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.vsl-unmute-btn {
  position: relative;
  background: var(--gold-gradient);
  color: #06080a;
  padding: 12px 22px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.6);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  transform: scale(1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-vsl-container:hover .vsl-unmute-btn {
  transform: scale(1.04);
}

.vsl-sound-ic {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.vsl-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 99px;
  border: 2px solid var(--gold);
  animation: vslPulse 1.8s infinite;
  pointer-events: none;
}

@keyframes vslPulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.9; }
}

/* Barra de Progresso da VSL */
.vsl-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 6;
}

.vsl-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  transition: width 0.1s linear;
}

/* Indicador de Play/Pause ao clicar */
.vsl-play-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 4;
}

.vsl-play-indicator.show {
  opacity: 1;
}

.vsl-indicator-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsl-indicator-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-vsl-subheading {
  max-width: 680px;
  margin: 0 auto clamp(20px, 3vw, 30px);
  text-align: center;
}

.hero-vsl-subheading p {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
}

.wizard-hero-centered {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.hero h1 {
  font-size: clamp(28px, 4.8vw, 42px);
  margin-top: 10px;
  color: #fff;
}

.hero .sub-scope {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 6px;
}

.hero .frameline {
  margin-top: 18px;
  display: block;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17.5px);
  color: #ffffff;
  max-width: 44ch;
  line-height: 1.4;
}

.hero .frameline span {
  color: var(--gold-light);
}

/* ---------- Botões CTA ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #06080a;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--btn-radius);
  box-shadow: 0 8px 24px -6px rgba(212, 175, 55, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-2px);
  background: var(--gold-gradient-hover);
  box-shadow: 0 12px 30px -4px rgba(212, 175, 55, 0.6);
}

.cta .ic {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.cta.ghost {
  background: transparent;
  color: var(--tx-light-strong);
  border: 2px solid rgba(15, 23, 42, 0.25);
  box-shadow: none;
}

.cta.ghost:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: rgba(212, 175, 55, 0.06);
}

/* ============================================================
   WIZARD FORM (COMPACTO, DIRETO E 100% ENCAIXADO)
   ============================================================ */
.wizard-box {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -25px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(212, 175, 55, 0.3);
  padding: clamp(18px, 3.5vw, 26px);
  overflow: hidden;
}

.wizard-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(110% 50% at 50% -10%, rgba(212, 175, 55, 0.12), transparent 65%);
}

.wizard-top {
  position: relative;
  margin-bottom: 14px;
}

.wizard-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #06080a;
  background: var(--gold-gradient);
  border-radius: 99px;
  padding: 4px 12px;
  margin-bottom: 8px;
}

.wizard-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 3.2vw, 21px);
  color: var(--tx-light-strong);
}

.wizard-title .hl {
  background: linear-gradient(135deg, #c5a059, #8c6d1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wizard-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.progress-track {
  flex: 1;
  height: 5px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--gold-gradient);
  border-radius: 99px;
  transition: width 0.35s ease;
}

.progress-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: var(--gold-deep);
  white-space: nowrap;
}

.wizard-step {
  display: none;
  animation: fadeInStep 0.25s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--tx-light-strong);
  margin-bottom: 10px;
}

.options-grid {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.option-card:hover {
  background: #ffffff;
  border-color: rgba(212, 175, 55, 0.5);
}

.option-card input[type="radio"] {
  display: none;
}

.option-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.option-circle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-deep);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.option-card.selected {
  background: #ffffff;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.option-card.selected .option-circle {
  border-color: var(--gold-deep);
}

.option-card.selected .option-circle::after {
  transform: scale(1);
}

.option-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx-light-strong);
  line-height: 1.25;
}

.option-sub {
  display: block;
  font-size: 11px;
  color: var(--tx-light-dim);
}

.fields-stack {
  display: grid;
  gap: 9px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 3px;
  line-height: 1.2;
}

.field input, .field select {
  width: 100%;
  height: 42px;
  appearance: none;
  -webkit-appearance: none;
  background: #f8fafc;
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-sm);
  color: var(--tx-light-strong);
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 0 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder {
  color: #94a3b8;
  font-size: 13px;
}

.field input:focus, .field select:focus {
  border-color: var(--gold-deep);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b89028' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}

.field .err {
  display: none;
  font-size: 10.5px;
  color: var(--danger);
  margin-top: 2px;
  font-weight: 600;
}

.field.invalid input, .field.invalid select {
  border-color: var(--danger);
}

.field.invalid .err {
  display: block;
}

.wizard-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.wizard-actions .cta {
  flex: 1;
  padding: 12px 16px;
  font-size: 13.5px;
}

.wizard-actions .btn-prev {
  padding: 12px 14px;
  background: #f1f5f9;
  border: 1px solid var(--line-light);
  border-radius: var(--btn-radius);
  color: var(--tx-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.wizard-privacy {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--tx-light-dim);
  margin-top: 8px;
}

.wizard-privacy .ic {
  width: 13px;
  height: 13px;
  color: var(--gold-deep);
}

.wizard-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.wizard-success .icbox {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto;
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.wizard-success h3 {
  font-size: 20px;
  margin-top: 12px;
  color: var(--tx-light-strong);
}

.wizard-success p {
  color: var(--tx-light);
  margin-top: 8px;
  font-size: 13.5px;
}

.wizard-box.done .wizard-top,
.wizard-box.done form {
  display: none;
}

.wizard-box.done .wizard-success {
  display: block;
}

/* ============================================================
   SLIDE 2: OS 3 ENCAIXES (DIRETO E OBJETIVO)
   ============================================================ */
.fit-grid {
  display: grid;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 44px);
}

.fit-card {
  background: linear-gradient(170deg, #10151c 0%, #06080b 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}

.fit-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 6px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.fit-card h3 {
  font-size: 18.5px;
  color: #ffffff;
  margin-bottom: 8px;
}

.fit-card p {
  color: var(--tx-dark);
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================================
   SLIDE 3: JORNADA DE PLACEMENT (4 ETAPAS)
   ============================================================ */
.roadmap-grid {
  display: grid;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
}

.roadmap-card {
  background: #ffffff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 10px 24px -16px rgba(15, 23, 42, 0.1);
}

.roadmap-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #06080a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.roadmap-card .tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 2px;
  display: block;
}

.roadmap-card h3 {
  font-size: 17px;
  color: var(--tx-light-strong);
  margin-bottom: 6px;
}

.roadmap-card p {
  color: var(--tx-light);
  font-size: 13.5px;
  line-height: 1.45;
}

/* ============================================================
   SLIDES 4 & 5: RECRUTAMENTO & ADMISSÕES COMPLETAS
   ============================================================ */
.process-grid {
  display: grid;
  gap: 24px;
  margin-top: clamp(28px, 4vw, 44px);
  align-items: center;
}

.process-items {
  display: grid;
  gap: 10px;
}

.process-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.process-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--gold-deep);
  background: rgba(212, 175, 55, 0.12);
  border-radius: 6px;
  padding: 2px 7px;
  flex: none;
  margin-top: 1px;
}

.process-item b {
  display: block;
  font-size: 14.5px;
  color: var(--tx-light-strong);
}

.process-item span {
  display: block;
  font-size: 13px;
  color: var(--tx-light);
  margin-top: 2px;
}

/* ============================================================
   SLIDE 6: SUPORTE CONTÍNUO ("COLOCADO UMA VEZ. ACOMPANHADO SEMPRE")
   ============================================================ */
.highlight-banner {
  background: linear-gradient(170deg, #111720 0%, #06090c 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  margin-top: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.9);
}

.highlight-banner h3 {
  font-size: clamp(22px, 4vw, 32px);
  color: #ffffff;
}

.highlight-banner h3 span {
  color: var(--gold-light);
}

.support-features {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.support-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.support-item .dot-gold {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex: none;
}

.support-item b {
  display: block;
  color: #ffffff;
  font-size: 14.5px;
}

.support-item span {
  display: block;
  color: var(--tx-dark-dim);
  font-size: 13px;
  margin-top: 2px;
}

.highlight-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 7px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 99px;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================================
   SLIDE 7: ALÉM DO COLLEGE - W2G PRO
   ============================================================ */
.pro-card {
  background: linear-gradient(170deg, #10151c 0%, #06080b 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 32px);
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 18px;
}

.pro-card h3 {
  font-size: clamp(20px, 3.2vw, 24px);
  color: #ffffff;
}

.pro-grid {
  display: grid;
  gap: 12px;
}

.pro-pillar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.pro-pillar .kicker-pro {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}

.pro-pillar p {
  color: var(--tx-dark);
  font-size: 13.5px;
}

.pro-note {
  font-size: 12.5px;
  color: var(--tx-dark-dim);
  margin-top: 6px;
}

/* ============================================================
   SLIDE 8: INVESTIMENTO DO PROGRAMA (US$ 3.000)
   ============================================================ */
.invest-panel {
  margin-top: clamp(28px, 4vw, 44px);
  background: linear-gradient(170deg, #10161f 0%, #06090c 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4.5vw, 36px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 80px -30px rgba(0, 0, 0, 0.95);
}

.invest-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark-soft);
}

.invest-head h3 {
  font-size: clamp(20px, 3.5vw, 26px);
  color: #ffffff;
}

.invest-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 46px);
  letter-spacing: -0.02em;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.invest-price .euro-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05em;
  height: 1.05em;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3e5ab, #d4af37 55%, #b89028);
  color: #1a1408;
  font-size: 0.62em;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  flex: none;
}

.invest-body p {
  margin-top: 16px;
  color: var(--tx-dark);
  font-size: 14.5px;
  line-height: 1.55;
}

.invest-disclaimer {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #fefce8;
  line-height: 1.45;
}

.invest-cta {
  margin-top: 22px;
}

.invest-cta .cta {
  width: 100%;
}

/* ---------- Estrutura Barra da Tijuca ---------- */
.club-grid {
  display: grid;
  gap: 24px;
  margin-top: clamp(28px, 4vw, 44px);
  align-items: center;
}

.club-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.4);
}

.club-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.club-copy p {
  color: var(--tx-light);
  font-size: 14.5px;
  margin-top: 10px;
}

.club-copy b {
  color: var(--tx-light-strong);
}

/* ---------- FAQ ---------- */
.faq {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--tx-light-strong);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .ic {
  color: var(--gold-deep);
  transition: transform 0.25s ease;
}

.faq details[open] summary .ic {
  transform: rotate(45deg);
}

.faq .a {
  padding: 0 18px 18px;
  color: var(--tx-light);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- Rodapé ---------- */
footer {
  background: #000000;
  border-top: 1px solid var(--line-dark);
  padding: clamp(32px, 5vw, 48px) var(--pad);
  padding-bottom: max(clamp(32px, 5vw, 48px), calc(env(safe-area-inset-bottom) + 80px));
}

.foot-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot-brand img {
  width: 52px;
  height: auto;
}

.foot-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16.5px;
  color: #fff;
  line-height: 1.2;
}

.foot-mark small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--tx-dark-dim);
  margin-top: 2px;
}

.foot-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--gold-light);
}

.foot-contact a:hover {
  text-decoration: underline;
}

.foot-inner > p {
  font-size: 12.5px;
  color: var(--tx-dark-dim);
}

/* ---------- Sticky CTA (Mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px var(--pad);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(5, 7, 8, 0) 0%, rgba(5, 7, 8, 0.95) 35%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.sticky-cta.show {
  transform: none;
  pointer-events: auto;
}

.sticky-cta .cta {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
}

/* ============================================================
   RESPONSIVIDADE (DESKTOP)
   ============================================================ */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .fit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .roadmap-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .pro-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .support-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .club-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .faq {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }

  .foot-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  footer {
    padding-bottom: clamp(32px, 5vw, 48px);
  }

  .sticky-cta {
    display: none;
  }

  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SEÇÃO: CASOS REAIS & DEPOIMENTOS (CARROSSEL INTERATIVO)
   ============================================================ */
.depo-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(170deg, #18202c 0%, #0c1017 100%);
  border: 1px solid var(--line-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.8);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: var(--gold-gradient);
  color: #06080a;
  transform: translateY(-2px);
  border-color: var(--gold);
}

.carousel-btn:active {
  transform: translateY(0);
}

.carousel-btn .ic {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.depo-carousel-wrapper {
  position: relative;
  width: 100%;
}

.direct-videos-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 20px;
  scroll-behavior: smooth;
}

.direct-videos-carousel::-webkit-scrollbar {
  display: none;
}

.direct-videos-carousel .direct-video-card {
  flex: 0 0 clamp(260px, 78vw, 320px);
  scroll-snap-align: start;
  background: linear-gradient(170deg, #10161f 0%, #06090c 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.85);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.direct-videos-carousel .direct-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  border-radius: var(--radius-sm);
}

.video-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  padding: 3px 8px;
  align-self: flex-start;
  margin-bottom: 8px;
}

.video-info h3 {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.3;
}

.video-info p {
  font-size: 13px;
  color: var(--tx-dark);
  margin-top: 4px;
  line-height: 1.45;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 99px;
  background: var(--gold-gradient);
}

.carousel-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-light);
  opacity: 0.85;
}

.carousel-swipe-hint .ic {
  width: 14px;
  height: 14px;
  animation: nudgeRight 1.5s infinite ease-in-out;
}

@keyframes nudgeRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (min-width: 900px) {
  .carousel-swipe-hint {
    display: none;
  }
}


