/* ============================================================
   AGÊNCIA VIRTUAL — CSS COMPLETO
   ============================================================ */

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

:root {
  --bg: #080c1a;
  --bg2: #0d1225;
  --bg3: #111827;
  --card: #0f1629;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --green: #22c55e;
  --orange: #f97316;
  --red: #ef4444;
  --yellow: #eab308;
  --pink: #ec4899;
  --purple: #a855f7;
  --text: #ffffff;
  --text2: #94a3b8;
  --text3: #64748b;
  --border: rgba(255,255,255,0.08);
  --header-h: 64px;
  --urgency-h: 40px;
  --stats-h: 40px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(8,12,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(59,130,246,0.4);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name-row { display: flex; align-items: center; gap: 5px; }
.logo-name { font-size: 1rem; font-weight: 900; letter-spacing: 0.03em; color: white; }
.logo-accent { color: var(--cyan); }
.logo-verified-badge { flex-shrink: 0; }
.logo-badge { font-size: 0.6rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; }

.header-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}
.counter-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px 14px 4px 6px;
  font-size: 0.78rem;
  font-weight: 700;
}
.counter-avatars { display: flex; align-items: center; }
.counter-avatars img {
  width: 24px; height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-right: -10px;
}
.counter-avatars img:last-child { margin-right: 0; }
.counter-icons { display: flex; gap: 4px; align-items: center; margin-left: 6px; }
.platform-icon { width: 18px; height: 18px; }
.ig-icon { width: 18px; height: 18px; }
.counter-text { color: var(--text); }
.status-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: statusPulse 1.5s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.header-nav {
  display: flex; align-items: center; gap: 24px;
  flex-shrink: 0;
}
.nav-link {
  font-size: 0.875rem; font-weight: 600;
  color: var(--text2);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

.lang-badge {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text2);
  flex-shrink: 0;
  cursor: pointer;
}
.lang-flag { font-size: 1rem; }

/* ===== URGENCY BAR ===== */
.urgency-bar {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  height: var(--urgency-h);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(220,38,38,0.45);
  background: linear-gradient(90deg,#0a0f24 0%,#1a0a2e 25%,#3b0a0a 50%,#1a0a2e 75%,#0a0f24 100%);
  border-bottom: 1px solid rgba(239,68,68,0.3);
}
.urgency-sweep {
  position: absolute; inset-y: 0;
  width: 33%;
  background: linear-gradient(110deg,transparent,rgba(255,255,255,0.16),transparent);
  animation: urgencySweep 3.2s linear infinite;
  pointer-events: none;
}
@keyframes urgencySweep {
  0% { transform: translateX(-200%); }
  100% { transform: translateX(500%); }
}
.urgency-badge {
  display: flex; align-items: center; gap: 4px;
  background: linear-gradient(to right,#f97316,#dc2626);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem; font-weight: 900;
  color: white;
  box-shadow: 0 0 10px rgba(251,146,60,0.7);
  flex-shrink: 0;
}
.flame-icon { animation: flameFlicker 0.9s ease-in-out infinite; }
@keyframes flameFlicker {
  0%,100% { transform: scale(1) rotate(-3deg); }
  50% { transform: scale(1.25) rotate(4deg); }
}
.urgency-text { font-size: 0.72rem; font-weight: 900; text-transform: uppercase; color: white; letter-spacing: 0.03em; }
.urgency-msg-mobile { display: none; }
.urgency-msg-desktop { display: inline; }
.urgency-timer {
  display: flex; align-items: center; gap: 2px;
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
}
.timer-box {
  background: #dc2626;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem; font-weight: 900;
  box-shadow: 0 0 14px rgba(220,38,38,0.9);
  border: 1px solid rgba(248,113,113,0.6);
  min-width: 24px; text-align: center;
}
.timer-colon { color: #fde047; font-weight: 900; font-size: 0.8rem; animation: colonBlink 1s step-end infinite; }
@keyframes colonBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.urgency-cta {
  display: flex; align-items: center; gap: 6px;
  background: linear-gradient(to right,#22c55e,#10b981);
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.7rem; font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px rgba(34,197,94,0.6);
  animation: ctaPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ctaPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
.urgency-orders {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.7rem; font-weight: 900;
  text-transform: uppercase;
  color: #4ade80;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(8,12,26,0.92);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  position: relative;
  z-index: 10;
}
.stat-item { display: flex; align-items: center; gap: 6px; }
.stat-value { font-size: 0.8rem; font-weight: 800; color: white; }
.stat-label { font-size: 0.72rem; color: var(--text2); font-weight: 500; }
.stat-sep { color: var(--text3); font-size: 1rem; }

/* ===== PAGE TOP OFFSET ===== */
.hero, .proof-section, .packages-section, .testimonials-section,
.benefits-section, .guarantee-section, .final-cta-section, .faq-section, .footer {
  margin-top: 0;
}
.hero { padding-top: calc(var(--header-h) + var(--urgency-h) + 40px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.25;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1e40af, transparent);
  top: -100px; left: -100px;
  animation: glowPulse 4s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #0e7490, transparent);
  bottom: -80px; right: -80px;
  animation: glowPulse 5s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.1); opacity: 0.35; }
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
  padding: 0 16px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(59,130,246,0.5);
  background: rgba(59,130,246,0.1);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text2);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(59,130,246,0.2);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: statusPulse 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--text2);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-chips {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  border: 1px solid;
}
.chip-green { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.4); color: var(--green); }
.chip-blue { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.4); color: var(--blue); }
.chip-cyan { background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.4); color: var(--cyan); }

/* Audio Player */
.audio-player-wrap { margin-bottom: 36px; }
.audio-label {
  font-size: 0.9rem; font-weight: 600;
  color: var(--text2);
  margin-bottom: 12px;
}
.audio-player {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 18px;
  width: 100%; max-width: 460px;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.audio-avatar { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; overflow: hidden; }
.audio-avatar svg { width: 100%; height: 100%; }
.audio-info { flex: 1; display: flex; align-items: center; gap: 8px; min-width: 0; }
.audio-time, .audio-duration { font-size: 0.75rem; color: var(--text2); font-weight: 500; flex-shrink: 0; }
.audio-progress-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden; cursor: pointer; }
.audio-progress-fill { height: 100%; width: 0%; background: var(--blue); border-radius: 2px; transition: width 0.5s linear; }
.audio-play-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 0 16px rgba(59,130,246,0.5);
}
.audio-play-btn:hover { transform: scale(1.1); background: #2563eb; }
.audio-speed {
  font-size: 0.75rem; font-weight: 700;
  color: var(--text2);
  flex-shrink: 0;
}

/* CTA Scroll Button */
.cta-scroll-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 0 auto; width: fit-content; max-width: 100%;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6, #06b6d4);
  color: var(--bg);
  font-size: 1rem; font-weight: 900;
  padding: 18px 36px;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 0 30px rgba(59,130,246,0.5), 0 8px 32px rgba(0,0,0,0.3);
  animation: ctaPulse 2s ease-in-out infinite;
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
}
.cta-scroll-btn:hover { transform: scale(1.03); }
.cta-scroll-sm { padding: 14px 28px; font-size: 0.88rem; }
/* Hero CTA — maior e mais impactante */
.cta-hero-btn { display: none; }
.hero-cta-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--green); font-size: 0.8rem; font-weight: 600;
  margin-bottom: 36px;
}
.cta-note-green {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--green); font-size: 0.82rem; font-weight: 600;
  margin-top: 10px;
}
/* Hero Stats */
.hero-stats { display: none; }
.hero-stat { display: flex; align-items: center; gap: 8px; }
.hero-stat-val { font-size: 1.3rem; font-weight: 900; color: white; }
.hero-stat-label { font-size: 0.72rem; color: var(--text2); font-weight: 500; }
.hero-stat-sep { color: var(--text3); font-size: 1.2rem; }
/* Live notif no hero */
.hero-live-notif {
  position: absolute;
  top: -10px; left: 0;
  pointer-events: none;
  z-index: 5;
}

/* ===== PROOF CAROUSEL ===== */
.proof-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0a0e1f 100%);
  text-align: center;
}
.proof-badge {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 auto 20px; width: fit-content; max-width: 100%;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.78rem; font-weight: 900;
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.proof-chips {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 32px;
  margin-top: 10px;
}
.proof-chip {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--green);
}

.carousel-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto 28px;
  left: 0;
  right: 0;
  padding: 0 30px; /* espaço para os botões prev/next */
  box-sizing: border-box;
}
.carousel-verified-badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 10;
  display: flex; align-items: center; gap: 4px;
  background: var(--green);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.carousel-container {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg3);
  aspect-ratio: 9/12;
  max-height: 520px;
}
.carousel-slide { display: none; height: 100%; }
.carousel-slide.active { display: block; }
.proof-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(59,130,246,0.85);
  color: white;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.carousel-btn:hover { background: var(--blue); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 14px;
}
.dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: var(--blue); }
.carousel-label {
  text-align: center;
  font-size: 0.78rem; color: var(--text2);
  margin-top: 8px;
}

/* ===== PACKAGES ===== */
.packages-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #0a0e1f 0%, var(--bg) 100%);
  position: relative;
}
.packages-chips {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--text2);
  margin-bottom: 40px;
}
.packages-chips strong { color: var(--green); }

.packages-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}
.packages-row-1 { grid-template-columns: repeat(4,1fr); }
.packages-row-2 { grid-template-columns: repeat(4,1fr); }

/* Package Cards */
.pkg-card {
  background: linear-gradient(160deg, #0f1e3a 0%, #0a0f24 100%);
  border: 1px solid rgba(255,255,255,0.08); /* Borda padrão neutra */
  border-radius: 18px;
  padding: 20px 16px;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pkg-card:hover {
  transform: translateY(-4px);
}
.pkg-card-1k {
  border-color: rgba(56,189,248,0.6); /* Cyan-blue */
  background: linear-gradient(160deg, #061828 0%, #080f20 100%);
  box-shadow: 0 0 28px rgba(56,189,248,0.12);
}
.pkg-card-5k {
  border-color: rgba(16,185,129,0.6); /* Emerald */
  background: linear-gradient(160deg, #061a10 0%, #061020 100%);
  box-shadow: 0 0 28px rgba(16,185,129,0.12);
}
.pkg-card-7k {
  border-color: rgba(6,182,212,0.6); /* Cyan */
  background: linear-gradient(160deg, #061820 0%, #060f1e 100%);
  box-shadow: 0 0 28px rgba(6,182,212,0.12);
}
.pkg-card-10k {
  border-color: rgba(139,92,246,0.6); /* Violet */
  background: linear-gradient(160deg, #120820 0%, #090618 100%);
  box-shadow: 0 0 28px rgba(139,92,246,0.12);
}
.pkg-card-featured {
  border-color: rgba(6,182,212,0.5);
  background: linear-gradient(160deg, #0f2040 0%, #0a1530 100%);
  box-shadow: 0 0 30px rgba(6,182,212,0.15);
}
.pkg-card-pink {
  border-color: rgba(236,72,153,0.5);
  background: linear-gradient(160deg, #2a0a2a 0%, #1a0520 100%);
  box-shadow: 0 0 30px rgba(236,72,153,0.15);
  margin-top: 28px;
}
.pkg-card-vip {
  border-color: rgba(217,70,239,0.5);
  background: linear-gradient(160deg, #2a0a35 0%, #1a0525 100%);
  box-shadow: 0 0 30px rgba(217,70,239,0.15);
  margin-top: 28px;
}
.pkg-card-orange {
  border-color: rgba(249,115,22,0.5);
  background: linear-gradient(160deg, #2a1505 0%, #1a0a05 100%);
  box-shadow: 0 0 30px rgba(249,115,22,0.15);
  margin-top: 28px;
}
.pkg-card-gold {
  border-color: rgba(234,179,8,0.5);
  background: linear-gradient(160deg, #2a2005 0%, #1a1505 100%);
  box-shadow: 0 0 30px rgba(234,179,8,0.15);
  margin-top: 28px;
}

.pkg-top-badge {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.7rem; font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: white;
}
.pkg-badge-pink { background: linear-gradient(to right, #be185d, #ec4899); box-shadow: 0 0 12px rgba(236,72,153,0.6); }
.pkg-badge-vip { background: linear-gradient(to right, #7e22ce, #d946ef); box-shadow: 0 0 12px rgba(217,70,239,0.6); }
.pkg-badge-orange { background: linear-gradient(to right, #c2410c, #f97316); box-shadow: 0 0 12px rgba(249,115,22,0.6); }
.pkg-badge-gold { background: linear-gradient(to right, #92400e, #eab308); box-shadow: 0 0 12px rgba(234,179,8,0.6); }

.pkg-off-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--red);
  color: white;
  font-size: 0.65rem; font-weight: 900;
  padding: 3px 7px;
  border-radius: 6px;
  text-transform: uppercase;
}
.pkg-header {
  display: flex; align-items: center; gap: 6px;
  margin-top: 8px;
}
.pkg-number {
  font-size: 2rem; font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.pkg-type {
  font-size: 0.65rem; font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: -8px;
}
.pkg-br { color: var(--text3); font-size: 0.6rem; }
.pkg-real-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.62rem; font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.br-flag {
  background: var(--green); color: white;
  padding: 1px 4px; border-radius: 3px;
  font-size: 0.55rem; font-weight: 900;
}

/* Price */
.pkg-price-box {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.pkg-old-price {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.8rem; color: var(--text3);
  margin-bottom: 4px;
}
.pkg-old-price s { color: var(--red); }
.pkg-discount {
  background: rgba(239,68,68,0.15);
  color: var(--red);
  font-size: 0.65rem; font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}
.pkg-price {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  line-height: 1;
  margin: 4px 0;
}
.pkg-rs { font-size: 1rem; font-weight: 700; color: #38bdf8; }
.pkg-val { font-size: 2.8rem; font-weight: 900; color: #38bdf8; line-height: 1; }
.pkg-cents { font-size: 1.2rem; font-weight: 700; color: #38bdf8; }
.pkg-save {
  font-size: 0.65rem; font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* Bonus */
.pkg-bonus { background: rgba(0,0,0,0.2); border-radius: 10px; padding: 10px; }
.bonus-badge {
  display: block;
  text-align: center;
  font-size: 0.65rem; font-weight: 900;
  color: white;
  background: linear-gradient(to right,#f97316,#dc2626);
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.bonus-items { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.bonus-item {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 4px;
}
.bonus-icon { font-size: 1.1rem; display: block; }
.bonus-val { display: block; font-size: 0.85rem; font-weight: 900; color: var(--text); margin-top: 4px; }
.bonus-label { display: block; font-size: 0.55rem; color: var(--text2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }

/* Selo Box */
.pkg-selo-box {
  display: flex; gap: 8px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 10px;
  padding: 10px;
}
.pkg-selo-box > div { flex: 1; min-width: 0; }
.pkg-selo-box strong { font-size: 0.72rem; color: var(--text); display: block; margin-bottom: 4px; }
.pkg-selo-box p { font-size: 0.62rem; color: var(--text2); line-height: 1.4; margin-bottom: 4px; }
.selo-included { font-size: 0.6rem; font-weight: 800; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.04em; }

/* Addons */
.pkg-addons { display: flex; flex-direction: column; gap: 6px; }
.addon-item {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 1px dashed;
  font-size: 0.68rem; color: var(--text2);
  cursor: pointer;
  transition: background 0.2s;
}
.addon-blue { border-color: rgba(59,130,246,0.4); }
.addon-blue:hover { background: rgba(59,130,246,0.08); }
.addon-red { border-color: rgba(239,68,68,0.4); }
.addon-red:hover { background: rgba(239,68,68,0.08); }
.addon-check { flex-shrink: 0; margin-top: 2px; cursor: pointer; accent-color: var(--blue); }
.addon-link { color: var(--cyan); text-decoration: underline; }
.addon-vitalicia { color: var(--red); }

/* Features */
.pkg-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 5px;
}
.pkg-features li {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: var(--text2);
}

/* CTA Button */
.pkg-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #38bdf8;
  color: var(--bg);
  padding: 14px;
  border-radius: 12px;
  font-size: 0.95rem; font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 0 20px rgba(56,189,248,0.4);
  transition: all 0.2s;
  margin-top: auto;
}
.pkg-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(56,189,248,0.6);
  background: #0ea5e9;
}
.pkg-safe {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-size: 0.62rem; color: var(--text3);
  text-align: center;
}

/* ===== SECTION HEADERS ===== */
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title-big {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-subtitle {
  text-align: center;
  color: var(--text2);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 60px 0; }
.testimonials-section .container { text-align: center; }
.verified-badge-center {
  display: flex; align-items: center; gap: 6px;
  margin: 0 auto 16px; width: fit-content;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.72rem; font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reviews-stats {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.rev-stat {
  display: flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 12px;
  padding: 10px 18px;
}
.rev-stat-warn { background: rgba(234,179,8,0.08); border-color: rgba(234,179,8,0.25); }
.rev-stat-green { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.25); }
.rev-stat-val { font-size: 1.4rem; font-weight: 900; color: var(--blue); }
.rev-stat-warn .rev-stat-val { color: var(--yellow); }
.rev-stat-green .rev-stat-val { color: var(--green); }
.rev-stat-label { font-size: 0.65rem; color: var(--text2); font-weight: 700; line-height: 1.3; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.review-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  transition: transform 0.25s;
}
.review-card:hover { transform: scale(1.02); }
.review-featured {
  border-color: rgba(59,130,246,0.5);
  background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(0,0,0,0) 100%);
  box-shadow: 0 0 24px rgba(59,130,246,0.2);
  grid-column: 2; grid-row: 1;
}
.review-verified-badge {
  position: absolute; top: -8px; right: 10px;
  display: flex; align-items: center; gap: 3px;
  background: var(--green);
  color: white;
  font-size: 0.6rem; font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.review-verified-featured { background: var(--blue); }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; margin-top: 4px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59,130,246,0.4);
}
.review-avatar-featured { border-color: var(--blue); box-shadow: 0 0 8px rgba(59,130,246,0.4); }
.review-name-row { display: flex; align-items: center; gap: 4px; }
.review-name { font-size: 0.85rem; font-weight: 700; }
.review-verified-icon { width: 16px; height: 16px; }
.review-followers { display: block; font-size: 0.72rem; color: var(--blue); font-weight: 600; }
.review-stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 8px; }
.review-text { font-size: 0.78rem; color: var(--text2); line-height: 1.5; }
.review-text-featured { color: var(--text); font-weight: 500; }
.reviews-join { text-align: center; color: var(--text2); font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.cta-note-muted { text-align: center; color: var(--text3); font-size: 0.8rem; margin-top: 10px; }

/* ===== BENEFITS ===== */
.benefits-section { padding: 60px 0; background: rgba(0,0,0,0.2); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 40px;
}
.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 18px;
  transition: transform 0.25s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefits-grid .benefit-card:nth-child(5),
.benefits-grid .benefit-card:nth-child(6) {
  grid-column: auto;
}
@media (min-width:1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto auto;
  }
  .benefits-grid .benefit-card:nth-child(5) { grid-column: 1/3; }
  .benefits-grid .benefit-card:nth-child(6) { grid-column: 3/5; }
}
.benefit-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.benefit-icon-yellow { background: rgba(234,179,8,0.12); }
.benefit-icon-green { background: rgba(34,197,94,0.12); }
.benefit-icon-blue { background: rgba(59,130,246,0.12); }
.benefit-icon-cyan { background: rgba(6,182,212,0.12); }
.benefit-icon-emerald { background: rgba(16,185,129,0.12); }
.benefit-icon-indigo { background: rgba(99,102,241,0.12); }
.benefit-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.benefit-card p { font-size: 0.82rem; color: var(--text2); line-height: 1.5; }

/* ===== GUARANTEE ===== */
.guarantee-section { padding: 40px 0; }
.guarantee-card {
  max-width: 760px; margin: 0 auto;
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 20px;
  background: linear-gradient(135deg,rgba(34,197,94,0.08),rgba(0,0,0,0),rgba(59,130,246,0.08));
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.guarantee-glow {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  filter: blur(40px);
  pointer-events: none;
}
.guarantee-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.guarantee-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--green),rgba(34,197,94,0.6));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(34,197,94,0.4);
}
.guarantee-title { font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; }
.guarantee-text { font-size: 0.88rem; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
.guarantee-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.g-chip {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg,rgba(0,0,0,0.3),rgba(0,0,0,0));
  text-align: center;
}
.final-cta-title {
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.final-cta-sub {
  font-size: 1.05rem;
  color: var(--text2);
  margin-bottom: 32px;
}
.final-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg,#1d4ed8,#3b82f6,#06b6d4);
  color: var(--bg);
  font-size: 1.15rem; font-weight: 900;
  padding: 20px 48px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 0 40px rgba(59,130,246,0.5), 0 12px 40px rgba(0,0,0,0.3);
  animation: ctaPulse 2s ease-in-out infinite;
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
  margin-bottom: 16px;
}
.final-cta-btn:hover { transform: scale(1.04); }
.final-cta-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.82rem; color: var(--text2);
}

/* ===== FAQ ===== */
.faq-section { padding: 60px 0 80px; }
.faq-list {
  max-width: 740px; margin: 0 auto 40px;
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 32px;
}
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(59,130,246,0.3); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  font-size: 0.95rem; font-weight: 600;
  color: var(--text);
  background: none; border: none;
  cursor: pointer;
  text-align: left;
}
.faq-icon { font-size: 1.1rem; flex-shrink: 0; }
.faq-question span:nth-child(2) { flex: 1; }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
}

.faq-whatsapp {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.faq-wa-title { font-size: 0.95rem; font-weight: 600; color: var(--text2); margin-bottom: 4px; }
.faq-wa-sub { font-size: 0.82rem; color: var(--text3); margin-bottom: 16px; }
.wa-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid #25d366;
  color: #25d366;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9rem; font-weight: 700;
  transition: all 0.2s;
}
.wa-btn-outline:hover { background: rgba(37,211,102,0.1); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-main {
  display: flex; align-items: flex-start;
  flex-wrap: wrap; gap: 32px;
  margin-bottom: 40px;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-text {
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: 0.03em;
}
.footer-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.6; max-width: 280px; }
.footer-stats {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.footer-stat { text-align: center; }
.footer-stat-val { display: block; font-size: 1.4rem; font-weight: 900; }
.footer-stat-label { display: block; font-size: 0.65rem; color: var(--text3); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.footer-stat-sep { width: 1px; height: 40px; background: var(--border); }
.footer-icons { display: flex; align-items: center; gap: 16px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem; color: var(--text3);
}
.footer-disclaimer {
  text-align: center;
  font-size: 0.7rem; color: var(--text3);
  margin-top: 10px;
  font-style: italic;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 200;
  background: #25d366;
  color: white;
  border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px 12px 14px;
  font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s;
}
.wa-float:hover { transform: scale(1.05); background: #20bd5a; }
.wa-float small { display: block; font-size: 0.65rem; font-weight: 400; opacity: 0.85; }

/* ===== LIVE NOTIFICATIONS ===== */
.live-notif-container {
  position: fixed;
  bottom: 80px; left: 16px;
  z-index: 150;
  pointer-events: none;
}
.live-notif-popup {
  display: flex; align-items: center; gap: 10px;
  background: rgba(17,24,39,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 14px;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: slideInLeft 0.4s ease;
  backdrop-filter: blur(8px);
}
@keyframes slideInLeft {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.live-notif-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59,130,246,0.5);
  flex-shrink: 0;
}
.live-notif-text { font-size: 0.72rem; line-height: 1.4; }
.live-notif-name { font-weight: 700; color: white; }
.live-notif-action { color: var(--text2); }
.live-notif-time { font-size: 0.62rem; color: var(--text3); margin-top: 2px; }
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: statusPulse 1.5s infinite;
}

/* ===== WELCOME MODAL ===== */
.welcome-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.welcome-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
}
.welcome-box {
  position: relative;
  background: linear-gradient(135deg,#0f1e3a,#0a0f24);
  border: 2px solid rgba(59,130,246,0.5);
  border-radius: 24px;
  padding: 36px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  z-index: 1;
  box-shadow: 0 0 60px rgba(59,130,246,0.3);
  animation: scaleIn 0.4s ease;
}
@keyframes scaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.welcome-close {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--text2);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.welcome-close:hover { background: rgba(255,255,255,0.2); }
.welcome-icon { font-size: 3.5rem; margin-bottom: 12px; animation: bounceIn 0.6s ease 0.3s both; }
@keyframes bounceIn {
  0% { transform: scale(0); } 70% { transform: scale(1.2); } 100% { transform: scale(1); }
}
.welcome-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.welcome-sub { font-size: 0.9rem; color: var(--text2); line-height: 1.6; margin-bottom: 24px; }
.welcome-off { color: var(--green); font-weight: 900; font-size: 1.1rem; }
.welcome-cta {
  width: 100%;
  background: linear-gradient(135deg,#1d4ed8,#3b82f6);
  color: white;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem; font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 0 24px rgba(59,130,246,0.4);
  animation: ctaPulse 1.6s ease-in-out infinite;
  cursor: pointer;
  margin-bottom: 12px;
}
.welcome-note { font-size: 0.75rem; color: var(--text3); }
#confetti-container {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 22px;
}
.confetti-piece {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
  top: -10px;
}
@keyframes confettiFall {
  to { transform: translateY(400px) rotate(720deg); opacity: 0; }
}

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 400;
}
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 401;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 12px 40px;
}
/* O overlay só é exibido via JS quando o modal abre */

.checkout-step {
  background: linear-gradient(135deg, #0d1a2e 0%, #0a0f24 100%);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: 0 0 60px rgba(59,130,246,0.25), 0 20px 60px rgba(0,0,0,0.6);
  animation: scaleIn 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Step 2 é formulário: alinha à esquerda */
#checkout-step2 {
  align-items: stretch;
  text-align: left;
}

/* Close button */
.checkout-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  z-index: 5;
}
.checkout-close:hover { background: rgba(255,255,255,0.2); }

/* ---- Step 1 ---- */
.checkout-header-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.72rem; font-weight: 800;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  white-space: nowrap;
}
.checkout-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  animation: statusPulse 1.5s infinite;
  flex-shrink: 0;
}
.checkout-step1-title {
  font-size: 1.8rem; font-weight: 900;
  text-align: center;
  margin-bottom: 4px;
  width: 100%;
}
.checkout-step1-info {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-bottom: 2px;
}
.checkout-step1-sub {
  font-size: 0.95rem; color: var(--text2); font-weight: 600;
}
.checkout-step1-price {
  font-size: 0.95rem; color: #38bdf8; font-weight: 800;
}
.checkout-networks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 18px;
  width: 100%;
}
.checkout-network {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 12px 14px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.checkout-network:hover {
  border-color: rgba(59,130,246,0.5);
  background: rgba(59,130,246,0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.2);
}
.checkout-network-popular {
  border-color: rgba(236,72,153,0.5);
  background: rgba(236,72,153,0.05);
}
.checkout-network-popular:hover {
  border-color: rgba(236,72,153,0.7);
  background: rgba(236,72,153,0.1);
  box-shadow: 0 8px 24px rgba(236,72,153,0.25);
}
.checkout-network-badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #be185d, #ec4899);
  color: white;
  font-size: 0.6rem; font-weight: 900;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
}
.checkout-network-icon { display: flex; align-items: center; justify-content: center; }
.checkout-network-name { font-size: 0.9rem; font-weight: 800; color: white; }
.checkout-network-orders { font-size: 0.7rem; color: var(--text2); }

.checkout-trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  font-size: 0.75rem; color: var(--text2);
  margin-top: 4px;
}
.checkout-trust-row span:first-child { color: #38bdf8; }
.checkout-trust-row span:nth-child(3) { color: #facc15; }
.checkout-trust-row span:nth-child(5) { color: #22c55e; }

/* ---- Step 2 ---- */
.checkout-secure-header {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
}
.checkout-secure-left { display: flex; align-items: center; gap: 8px; }
.checkout-secure-title { font-size: 0.72rem; font-weight: 900; color: #22c55e; text-transform: uppercase; letter-spacing: 0.05em; }
.checkout-secure-sub { font-size: 0.62rem; color: var(--text2); }
.checkout-timer-box {
  display: flex; align-items: center; gap: 5px;
  background: rgba(250,204,21,0.1);
  border: 1px solid rgba(250,204,21,0.3);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.85rem; font-weight: 800; color: #facc15;
}
.checkout-body { display: flex; flex-direction: column; gap: 14px; }
.checkout-title { font-size: 1.4rem; font-weight: 900; text-align: center; line-height: 1.3; }
.checkout-subtitle { font-size: 0.8rem; color: var(--text2); text-align: center; }

.checkout-price-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.checkout-price-de { font-size: 0.8rem; color: var(--text3); }
.checkout-price-de s { color: #ef4444; }
.checkout-price-hoje { font-size: 0.7rem; font-weight: 800; color: #38bdf8; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.checkout-price-big { font-size: 2.8rem; font-weight: 900; color: #38bdf8; line-height: 1.1; margin: 4px 0; }
.checkout-off-badge {
  display: inline-block;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  font-size: 0.75rem; font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  animation: ctaPulse 1.8s ease-in-out infinite;
}

.checkout-payment-row {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.checkout-pay-badge { font-size: 0.65rem; font-weight: 700; color: var(--text2); }
.checkout-pay-dot { color: var(--text3); font-size: 0.7rem; }
.checkout-steps-flow { text-align: center; font-size: 0.72rem; color: #22c55e; font-weight: 600; margin-top: -6px; }

.checkout-progress-wrap { }
.checkout-progress-header {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; font-weight: 800;
  color: var(--text2);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.checkout-progress-track {
  height: 6px; background: rgba(255,255,255,0.08);
  border-radius: 3px; overflow: hidden;
}
.checkout-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(to right, #1d4ed8, #06b6d4);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.checkout-field-wrap { display: flex; flex-direction: column; gap: 4px; }
.checkout-field-label { font-size: 0.85rem; font-weight: 700; color: white; }
.checkout-field-optional { font-size: 0.72rem; color: #22c55e; font-weight: 500; }
.checkout-field-input {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(59,130,246,0.5);
  border-radius: 10px;
  padding: 13px 14px;
  color: white;
  font-size: 0.95rem;
  width: 100%; box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.checkout-field-input:focus { border-color: #38bdf8; box-shadow: 0 0 0 3px rgba(56,189,248,0.1); }
.checkout-field-hint { font-size: 0.68rem; color: var(--text3); }

.checkout-phone-wrap {
  display: flex; gap: 8px; align-items: stretch;
}
.checkout-phone-prefix {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(59,130,246,0.5);
  border-radius: 10px;
  padding: 0 14px;
  display: flex; align-items: center;
  font-size: 0.9rem; font-weight: 700; color: var(--text2);
  flex-shrink: 0;
}
.checkout-phone-input { flex: 1; }

.checkout-live-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.78rem; color: var(--text2);
}
.checkout-live-badge strong { color: #22c55e; }
.checkout-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: statusPulse 1.5s infinite;
}

.checkout-pay-btn {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6, #06b6d4);
  color: white;
  font-size: 1.05rem; font-weight: 900;
  padding: 18px 24px;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 0 30px rgba(59,130,246,0.5), 0 8px 24px rgba(0,0,0,0.3);
  animation: ctaPulse 2s ease-in-out infinite;
  text-align: center;
}
.checkout-pay-btn:hover { transform: scale(1.02); }
.checkout-safe-note { text-align: center; font-size: 0.7rem; color: var(--text3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .packages-row-1 { grid-template-columns: repeat(2,1fr); }
  .packages-row-2 { grid-template-columns: repeat(2,1fr); }
  .pkg-card-pink, .pkg-card-vip, .pkg-card-orange, .pkg-card-gold { margin-top: 28px; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid .benefit-card:nth-child(5),
  .benefits-grid .benefit-card:nth-child(6) { grid-column: auto; }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .review-featured { grid-column: auto; grid-row: auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; --urgency-h: 36px; --stats-h: 36px; }
  .header-nav { display: none; }
  .lang-badge { display: none; }
  .header-center { display: none; } /* Ocultar badges no mobile para não estourar o header */
  .urgency-msg-desktop { display: none; }
  .urgency-msg-mobile { display: inline; font-size: 0.7rem; }
  .urgency-cta { display: none; }
  .urgency-orders { display: none; }
  .urgency-bar { gap: 6px; padding: 0 8px; }
  .urgency-badge { padding: 2px 6px; font-size: 0.65rem; }
  .stats-bar { gap: 10px; font-size: 0.85rem; }
  .hero-title { font-size: 2.2rem; }
  .chip { padding: 4px 8px; font-size: 0.65rem; gap: 3px; }
  .hero-chips { gap: 4px; }
  .audio-player { padding: 10px 12px; gap: 8px; }
  .audio-play-btn { width: 36px; height: 36px; }
  .cta-scroll-btn { padding: 14px 20px; font-size: 0.85rem; width: 100%; border-radius: 10px; }
  .packages-row-1 { grid-template-columns: 1fr; }
  .packages-row-2 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-icon-wrap { margin: 0 auto; }
  .footer-main { flex-direction: column; }
  .footer-stats { justify-content: center; }
}

@media (max-width: 480px) {
  .packages-row-1 { grid-template-columns: 1fr; }
  .packages-row-2 { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.8rem; }
  .cta-scroll-btn { font-size: 0.82rem; padding: 14px 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pkg-card-pink, .pkg-card-vip, .pkg-card-orange, .pkg-card-gold { margin-top: 28px; }
}
