/* ============================================================
   FERNANDO LEGACY · AIO USA
   FUTURIST CORPORATE — Sóbrio · Preciso · Tecnológico
   Paleta: #07060F / #f0eeff / acento #7C5CFC → #A78BFA
   ============================================================ */

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

:root {
  /* Backgrounds — índigo profundo, legível e futurista */
  --bg:          #0D0B1E;
  --bg-2:        #120F28;
  --bg-3:        #160F2F;
  --bg-card:     #161230;
  --bg-card-2:   #1E1A3E;

  /* Borders — violeta com presença */
  --border:      rgba(150,120,255,0.15);
  --border-2:    rgba(160,130,255,0.25);
  --border-3:    rgba(180,150,255,0.38);

  /* Text — mais brilhantes, legíveis */
  --white:       #EDE8FF;
  --text:        #A09CC0;
  --text-2:      #CCC8E8;
  --dim:         #6860A0;

  /* Acento principal — roxo neon vibrante */
  --accent:      #8B5CF6;
  --accent-2:    #06B6D4;
  --accent-dim:  rgba(139,92,246,0.18);
  --accent-glow: rgba(139,92,246,0.35);

  /* Funcionais */
  --danger:  #d0392b;
  --success: #2ecc71;

  /* Misc */
  --radius:    8px;
  --radius-lg: 12px;
  --transition: 0.22s ease;
  --font:      'Inter', sans-serif;
  --shadow:    0 2px 24px rgba(10,6,30,0.85);
  --shadow-lg: 0 8px 56px rgba(10,6,30,0.95);
  --glow-sm:   0 0 20px rgba(139,92,246,0.25);
  --glow-md:   0 0 40px rgba(139,92,246,0.3);
  --glow-cyan: 0 0 30px rgba(6,182,212,0.2);
}

/* ── BASE ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); }

/* ── PARTICLES ────────────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ── UTILITIES ────────────────────────────────────────────── */
del {
  color: var(--dim);
  text-decoration: line-through;
  font-size: 0.9em;
}
.accent { color: var(--accent); }
.gold   { color: var(--white); }

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-card.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #3d2d80; border-radius: 2px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13,11,30,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: padding var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  padding: 11px 0;
  border-bottom-color: var(--border-2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--white);
}
.logo-text span {
  color: var(--accent);
  font-weight: 300;
  opacity: 0.7;
}
.logo-tag {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--accent);
  border: 1px solid rgba(139,92,246,0.35);
  padding: 2px 7px;
  border-radius: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

.header-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  color: var(--dim);
  letter-spacing: 0.2px;
}
.header-social-proof strong { color: var(--text); font-weight: 500; }

.pulse-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.8;
  animation: pulse-ring 2.2s infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  70%  { box-shadow: 0 0 0 5px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* ============================================================
   HERO VSL
   ============================================================ */
.hero-vsl {
  position: relative;
  padding: 140px 0 90px;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
  z-index: 1;
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(139,92,246,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 80% 50%, rgba(6,182,212,0.06) 0%, transparent 60%);
}

/* Grade técnica */
.hero-vsl::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
}

/* Linha de luz topo */
.hero-vsl::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.8), rgba(6,182,212,0.5), transparent);
  box-shadow: 0 0 12px rgba(139,92,246,0.4);
}

/* Eyebrow */
.vsl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(139,92,246,0.4);
  background: rgba(139,92,246,0.07);
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 36px;
  box-shadow: 0 0 18px rgba(139,92,246,0.12);
}
.vsl-eyebrow i { font-size: 0.65rem; color: var(--accent-2); opacity: 0.9; }

/* Hook */
.vsl-hook {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 28px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hook-urgent {
  color: var(--white);
  position: relative;
  font-style: normal;
  display: inline-block;
  text-shadow: 0 0 40px rgba(139,92,246,0.4);
}
/* Sublinhado neon */
.hook-urgent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8B5CF6, #06B6D4);
  opacity: 1;
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(139,92,246,0.7), 0 0 16px rgba(6,182,212,0.4);
}
.hook-main {
  display: block;
  color: var(--text-2);
  font-weight: 300;
  letter-spacing: -0.5px;
  font-size: 0.88em;
  opacity: 0.9;
}

/* Convite ao vídeo */
.vsl-video-invite {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(0.88rem, 1.6vw, 1.02rem) !important;
  color: var(--text-2) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 18px 0 !important;
  max-width: 680px;
  margin: 0 auto 36px !important;
  background: rgba(139,92,246,0.04);
  border-left: none;
  border-right: none;
  border-radius: 0;
  text-align: center;
  line-height: 1.55;
}
.vsl-video-invite i {
  color: var(--accent);
  font-size: 0.88rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(139,92,246,0.6));
}

/* VSL wrapper */
.vsl-wrapper {
  max-width: 840px;
  margin: 0 auto 36px;
  position: relative;
}
#ifr_69b9ceed005f4e6dadb6b656_wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(139,92,246,0.35), 0 0 40px rgba(139,92,246,0.12);
}
#ifr_69b9ceed005f4e6dadb6b656_aspect {
  border-radius: var(--radius);
  overflow: hidden;
}
vturb-smartplayer {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-2);
}

/* Urgency row */
.vsl-urgency-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.35);
  color: var(--text-2);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(139,92,246,0.1);
}
.urgency-badge i { font-size: 0.58rem; color: var(--accent); }

.vsl-social {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: var(--dim);
}

/* Callout box */
.callout-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--radius);
  padding: 22px 26px;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 680px;
  box-shadow: 0 0 24px rgba(139,92,246,0.08);
}
.callout-icon {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 4px rgba(139,92,246,0.5));
}
.callout-text p {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.65;
}
.callout-text p:last-child { margin-bottom: 0; }
.callout-highlight {
  font-size: 0.92rem !important;
  color: var(--text-2) !important;
}
.price-old { font-size: 0.83rem; }

/* VSL content */
.vsl-content { margin-top: 0; }

/* ── CTA BUTTONS ───────────────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #06B6D4 100%);
  background-size: 200% auto;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 4px 24px rgba(139,92,246,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.cta-btn:hover {
  background-position: right center;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(139,92,246,0.55), 0 0 20px rgba(6,182,212,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}
.cta-hero  { font-size: 0.8rem; padding: 18px 44px; }
.cta-gold  { background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #06B6D4 100%); background-size: 200% auto; color: #fff; }
.cta-gold:hover { background-position: right center; }

.cta-price {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.65;
  display: block;
  margin-top: 2px;
}

.cta-secondary {
  background: rgba(139,92,246,0.08);
  color: var(--text-2);
  border: 1px solid rgba(139,92,246,0.3);
  box-shadow: 0 0 14px rgba(139,92,246,0.08);
  font-size: 0.72rem;
  padding: 13px 30px;
}
.cta-secondary:hover {
  background: rgba(139,92,246,0.15);
  color: var(--white);
  border-color: rgba(139,92,246,0.5);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(139,92,246,0.2);
}

.cta-form {
  width: 100%;
  font-size: 0.82rem;
  padding: 17px;
  border-radius: var(--radius);
  margin-top: 8px;
  letter-spacing: 2px;
}

/* Pulse botão */
.pulse-btn { animation: btn-pulse 3s ease-in-out infinite; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(139,92,246,0.4), 0 0 0 0 rgba(139,92,246,0.35); }
  50%       { box-shadow: 0 4px 24px rgba(139,92,246,0.4), 0 0 0 16px rgba(139,92,246,0); }
}

/* ── CONTADOR DE VAGAS ─────────────────────────────────────── */
.vagas-counter {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.vagas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: var(--dim);
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}
.vagas-restantes { color: var(--text); font-weight: 500; }
.progress-bar-container {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #8B5CF6, #06B6D4);
  border-radius: 100px;
  transition: width 1s ease;
  opacity: 0.8;
  box-shadow: 0 0 8px rgba(139,92,246,0.5);
}
.vagas-warning {
  font-size: 0.68rem;
  color: var(--dim);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */
section {
  padding: 92px 0;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
}
.section-label i { color: var(--accent-2); font-size: 0.62rem; }
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(139,92,246,0.5);
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-title span {
  color: var(--text-2);
  font-weight: 300;
  font-style: italic;
}
.section-title .accent {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
  text-shadow: 0 0 30px rgba(139,92,246,0.4);
}

.section-subtitle {
  font-size: 0.88rem;
  color: var(--dim);
  margin-bottom: 52px;
  letter-spacing: 0.1px;
  max-width: 560px;
}

.tag-pill {
  display: inline-block;
  background: transparent;
  color: var(--dim);
  border: 1px solid var(--border-2);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ============================================================
   SEÇÃO OBJEÇÃO
   ============================================================ */
.section-objecao {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background-image: radial-gradient(ellipse 70% 40% at 50% 100%, rgba(139,92,246,0.06) 0%, transparent 70%);
}

.objecao-card {
  max-width: 700px;
  margin: 0 auto 52px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  position: relative;
  box-shadow: 0 0 40px rgba(139,92,246,0.07);
}
.objecao-card::before {
  content: '';
  position: absolute;
  top: 0; left: 48px; right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.3), transparent);
}

.quote-icon {
  font-size: 1.2rem;
  color: var(--border-3);
  margin-bottom: 18px;
}
.objecao-text {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 28px;
}
.objecao-text strong {
  font-style: normal;
  color: var(--text-2);
  font-weight: 600;
}
.objecao-text .accent {
  color: var(--white);
  font-style: normal;
  font-weight: 600;
}

.objecao-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dim);
  flex-shrink: 0;
}
.objecao-author strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.objecao-author span { font-size: 0.72rem; color: var(--dim); }

/* Stats bar */
.stats-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(139,92,246,0.1);
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  gap: 7px;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -1.5px;
  text-shadow: 0 0 20px rgba(139,92,246,0.35);
}
.stat-label {
  font-size: 0.64rem;
  color: var(--dim);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
  margin: 16px 0;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.section-recebi {
  background: var(--bg-3);
  text-align: center;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background-image: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(139,92,246,0.1) 0%, transparent 65%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin-bottom: 48px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(139,92,246,0.08);
}
.feature-card {
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: left;
  transition: background var(--transition);
  position: relative;
  border-bottom: none;
}
.feature-card:hover { background: var(--bg-card-2); }

/* Linha de acento no topo do card ao hover */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, #7C5CFC, #A78BFA);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover::after { opacity: 0.55; }

.card-icon-wrap {
  width: 36px; height: 36px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(139,92,246,0.15);
}
.card-icon { font-size: 0.9rem; color: var(--accent); }
.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}
.card-desc {
  font-size: 0.83rem;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 20px;
}
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(139,92,246,0.3);
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  background: rgba(139,92,246,0.07);
  text-transform: uppercase;
}
.card-badge i { color: var(--accent-2); font-size: 0.68rem; }

.mid-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   AUTORIDADE
   ============================================================ */
.section-autoridade {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  background-image: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(6,182,212,0.05) 0%, transparent 60%);
}

.autoridade-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  align-items: start;
}

.autoridade-avatar-col { text-align: center; }
.avatar-photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 22px;
  position: relative;
  flex-shrink: 0;
}
/* Anel externo com gradiente roxo→ciano */
.avatar-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #06B6D4);
  z-index: 0;
}
/* Glow difuso atrás */
.avatar-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, transparent 70%);
  z-index: 0;
  animation: avatar-glow 3s ease-in-out infinite alternate;
}
@keyframes avatar-glow {
  from { opacity: 0.6; transform: scale(1);   }
  to   { opacity: 1;   transform: scale(1.08); }
}
.avatar-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
  border: 3px solid var(--bg-card);
}
/* mantém compatibilidade caso avatar-circle seja usado em outro lugar */
.avatar-circle {
  width: 110px; height: 110px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 30px rgba(139,92,246,0.15), inset 0 0 20px rgba(139,92,246,0.05);
}
.avatar-icon { font-size: 3rem; color: var(--accent); opacity: 0.7; }

.autoridade-badges {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 4px;
  padding: 5px 11px;
  letter-spacing: 0.3px;
  background: rgba(139,92,246,0.07);
  width: 100%;
  justify-content: center;
}
.badge-item i { color: var(--accent); font-size: 0.65rem; }

.autoridade-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}
.autoridade-desc strong { color: var(--text-2); font-weight: 600; }
.autoridade-desc .accent { color: var(--white); font-weight: 600; }

.autoridade-stats {
  display: flex;
  gap: 0;
  margin: 32px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.auto-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px;
  gap: 5px;
  border-right: 1px solid var(--border);
}
.auto-stat:last-child { border-right: none; }
.auto-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(139,92,246,0.4);
}
.auto-label {
  font-size: 0.62rem;
  color: var(--dim);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.metodologia-box {
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.2);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 4px;
  box-shadow: 0 0 20px rgba(139,92,246,0.06);
}
.metodologia-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.metodologia-label i { color: var(--accent); opacity: 0.6; }
.metodologia-box p {
  font-size: 0.83rem;
  color: var(--dim);
  line-height: 1.75;
}

/* ============================================================
   ESCASSEZ
   ============================================================ */
.section-escassez {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.escassez-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(139,92,246,0.12), inset 0 0 40px rgba(139,92,246,0.03);
}
.escassez-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.5), transparent);
}

.escassez-icon {
  font-size: 1.2rem;
  color: var(--dim);
  margin-bottom: 18px;
}
.escassez-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.escassez-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 30px;
}
.escassez-text strong { color: var(--text-2); font-weight: 600; }
.escassez-text .gold  { color: var(--white); font-weight: 600; }

.escassez-vagas {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 30px;
  text-align: left;
}
.escassez-cta { margin-bottom: 20px; }
.escassez-price-note {
  font-size: 0.76rem;
  color: var(--dim);
}
.escassez-price-note .accent { color: var(--text-2); font-weight: 600; }

/* ============================================================
   FORMULÁRIO
   ============================================================ */
.section-form {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  background-image: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(6,182,212,0.05) 0%, transparent 65%);
}
.section-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.25), transparent);
}

.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(139,92,246,0.04);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 0 50px rgba(139,92,246,0.08);
}
.form-header {
  text-align: center;
  margin-bottom: 40px;
}
.form-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--border-2);
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.form-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.form-title .accent {
  color: var(--text-2);
  font-weight: 300;
  font-style: italic;
}
.form-subtitle {
  font-size: 0.84rem;
  color: var(--dim);
  line-height: 1.65;
}

.capture-form { display: flex; flex-direction: column; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}
.form-group label i { color: var(--accent); opacity: 0.5; font-size: 0.72rem; }

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(13,11,30,0.8);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 13px 16px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder { color: var(--dim); font-size: 0.85rem; }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(124,92,252,0.45);
  background: var(--bg-card-2);
  box-shadow: 0 0 0 3px rgba(124,92,252,0.07);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath stroke='%23555' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option {
  background: var(--bg-card-2);
  color: var(--white);
}

.form-group input.error,
.form-group select.error {
  border-color: rgba(208,57,43,0.4);
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.7rem;
  color: var(--dim);
  margin-top: 6px;
}
.form-security i { font-size: 0.65rem; }

/* Sucesso */
.form-success {
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  font-size: 2.5rem;
  color: var(--success);
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.form-success p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.success-notice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  color: var(--dim);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--bg-card);
}
.success-notice i { color: var(--accent); opacity: 0.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}
.footer-logo-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.footer-logo-text span { color: var(--dim); opacity: 0.5; font-weight: 300; }
.footer-copy {
  font-size: 0.68rem;
  color: var(--dim);
  opacity: 0.5;
  letter-spacing: 0.5px;
}

/* ============================================================
   NOTIFICAÇÕES LIVE
   ============================================================ */
.live-notif {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card-2);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.76rem;
  color: var(--text-2);
  max-width: 300px;
  box-shadow: var(--shadow), 0 0 20px rgba(139,92,246,0.1);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.live-notif.show { opacity: 1; transform: translateY(0); }
.live-notif .notif-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.live-notif strong { color: var(--text-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .autoridade-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .autoridade-avatar-col {
    display: flex;
    align-items: center;
    gap: 28px;
    text-align: left;
  }
  .avatar-photo-wrap { margin: 0; width: 120px; height: 120px; }
  .autoridade-badges { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .badge-item { width: auto; justify-content: flex-start; }
}

@media (max-width: 640px) {
  .hero-vsl { padding: 110px 0 60px; }
  .vsl-hook { letter-spacing: -1px; }
  .vsl-urgency-row { flex-direction: column; gap: 12px; }
  .callout-box { flex-direction: column; gap: 12px; }
  .cta-hero  { padding: 16px 28px; font-size: 0.74rem; }
  .objecao-card { padding: 28px 22px; }
  .stats-bar { flex-direction: column; }
  .stat-divider { width: auto; height: 1px; margin: 0 20px; }
  .stat-item { padding: 20px; }
  .escassez-box { padding: 36px 22px; }
  section { padding: 68px 0; }
  .autoridade-avatar-col { flex-direction: column; text-align: center; }
  .autoridade-badges { align-items: center; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .container { padding: 0 18px; }
  .vsl-hook  { font-size: 2rem; }
  .cta-hero  { padding: 15px 20px; letter-spacing: 1px; }
  .live-notif { max-width: 260px; left: 12px; bottom: 12px; }
}
