/* ═══════════════════════════════════════════════
   LEGIT XIT — PREMIUM GAMING LANDING PAGE CSS
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;700;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a28;
  --primary: #ff2d2d;
  --primary-glow: rgba(255, 45, 45, 0.5);
  --accent: #ff6b1a;
  --accent-glow: rgba(255, 107, 26, 0.4);
  --gold: #ffd700;
  --text: #f0f0f5;
  --text-muted: #8a8a9a;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 14px;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-alt: 'Rajdhani', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.04)
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--primary-glow)
  }

  50% {
    box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(255, 45, 45, 0.2)
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes borderGlow {

  0%,
  100% {
    border-color: var(--primary)
  }

  50% {
    border-color: var(--accent)
  }
}

/* ── URGENCY BAR ─────────────────────────────── */
/* For fixed position without scrolling bugs, it must be fixed relative to viewport,
   and we need padding on body OR use sticky. If body has overflow-x hidden, sticky fails. 
   So we use fixed and add a placeholder div in html or padding to body. */
body {
  padding-top: 50px;
}

@media (max-width: 600px) {
  body {
    padding-top: 70px;
  }

  /* taller bar on mobile if it wraps */
}

.urgency-bar {
  background: linear-gradient(90deg, #1a0000, #3d0000, #1a0000);
  border-bottom: 2px solid var(--primary);
  padding: 10px 16px;
  text-align: center;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;

  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  box-shadow: 0 0 20px var(--primary-glow);
}

.countdown {
  background: var(--primary);
  padding: 4px 14px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .urgency-bar {
    font-size: 0.8rem;
    padding: 8px 10px;
    gap: 4px;
  }

  .countdown {
    font-size: 0.95rem;
    padding: 2px 10px;
  }
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 50px;
  background: radial-gradient(ellipse at center top, rgba(255, 45, 45, 0.12) 0%, transparent 60%),
    var(--bg-dark);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://legitxit.com.br/wp-content/uploads/2024/12/01-10.webp') center/cover no-repeat;
  opacity: 0.06;
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 850px;
}

.badge-season {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.15), rgba(255, 107, 26, 0.15));
  border: 1px solid rgba(255, 45, 45, 0.3);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .badge-season {
    font-size: 0.75rem;
    padding: 6px 16px;
    letter-spacing: 1px;
  }
}

.logo-wrap {
  margin-bottom: 20px;
}

.logo-img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--font-alt);
  font-size: clamp(1.4rem, 6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.highlight-red {
  color: var(--primary);
}

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 3vw, 1.05rem);
  margin-bottom: 24px;
}

/* VSL Wrapper */
.vsl-wrapper {
  margin: 24px auto;
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: 0 10px 40px var(--primary-glow);
  animation: borderGlow 4s ease-in-out infinite;
  /* preserve 16:9 aspect ratio space on mobile before load */
  aspect-ratio: 16/9;
  background: #000;
}

@media (max-width: 600px) {
  .vsl-wrapper {
    border-radius: 8px;
    margin: 16px auto;
  }
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), #cc0000);
  color: #fff;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 1.2rem);
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  animation: pulse 2s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px var(--primary-glow);
  margin-top: 16px;
  width: 100%;
  max-width: 400px;
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px var(--primary-glow);
}

/* ── MARQUEE ─────────────────────────────────── */
.marquee-wrap {
  background: linear-gradient(90deg, var(--primary), #cc0028, var(--primary));
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #fff;
  padding: 0 10px;
}

/* ── SECTION UTILITIES ───────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 45, 45, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(255, 45, 45, 0.08);
}

.section-title {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: clamp(1.4rem, 6vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .section-title {
    margin-bottom: 24px;
  }
}

/* ── FOR WHO ─────────────────────────────────── */
.for-who {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-dark);
}

.for-who-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pain-card {
  background: linear-gradient(135deg, var(--bg-card), #181824);
  border: 1px solid rgba(255, 45, 45, 0.4);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 16px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pain-card:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(255, 45, 45, 0.15);
}

.pain-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.pain-card p {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  color: #e0e0e0;
  font-weight: 500;
}

.pain-card strong {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05em;
  text-transform: uppercase;
}

.arrow-down {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 16px 0;
  animation: float 2s ease-in-out infinite;
}

/* ── PRO PLAYERS CAROUSEL ────────────────────── */
.proplayers {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark), #0f0f18);
}

.video-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 20px;
  -webkit-overflow-scrolling: touch;
}

.video-carousel::-webkit-scrollbar {
  height: 6px;
}

.video-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.video-carousel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.yt-card {
  flex: 0 0 85%;
  max-width: 240px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.yt-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(255, 45, 45, 0.15);
}

.yt-card img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
}

.yt-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

.yt-card:hover .yt-play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.yt-play-btn {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px var(--primary-glow);
}

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-dark);
}

.testi-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 20px;
  -webkit-overflow-scrolling: touch;
}

.testi-carousel::-webkit-scrollbar {
  height: 6px;
}

.testi-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.testi-carousel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.testi-card {
  flex: 0 0 85%;
  max-width: 300px;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s;
}

.testi-card img {
  width: 100%;
  height: auto;
}

/* ── WARNING BANNER ──────────────────────────── */
.warning-banner {
  padding: 40px 0;
  text-align: center;
  background: var(--bg-dark);
}

.warning-box {
  background: rgba(255, 45, 45, 0.05);
  border: 2px dashed var(--primary);
  border-radius: var(--radius);
  padding: 30px 20px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.warning-box h3 {
  font-family: var(--font-alt);
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  color: #fff;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.warning-icon {
  font-size: 2rem;
  animation: pulse 2s infinite;
}

/* ── TWO PATHS ───────────────────────────────── */
.two-paths {
  padding: 60px 0 20px;
  text-align: center;
  background: var(--bg-dark);
}

.paths-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 40px auto 0;
}

.path-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.path-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.path-card p {
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 500;
  color: #e0e0e0;
  margin: 0;
  z-index: 2;
}

.path-bad {
  border-left: 4px solid #555;
}

.path-good {
  border-left: 4px solid var(--primary);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 45, 45, 0.1));
  border-color: rgba(255, 45, 45, 0.4);
  box-shadow: 0 4px 20px rgba(255, 45, 45, 0.1);
}

.path-good .path-num {
  color: rgba(255, 45, 45, 0.2);
}

/* ── PRICING ─────────────────────────────────── */
.pricing {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(180deg, #0f0f18, var(--bg-dark));
}

.plans-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .plans-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.featured-plan {
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px var(--primary-glow);
  animation: glow-pulse 3s ease-in-out infinite;
}

.most-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #cc0000);
  color: #fff;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.plan-tag-label {
  font-family: var(--font-alt);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.plan-name {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  margin-bottom: 20px;
}

.plan-name span {
  color: var(--primary);
}

.plan-features {
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: clamp(0.85rem, 3vw, 0.95rem);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li.unavailable {
  color: var(--text-muted);
  opacity: 0.6;
  text-decoration: line-through;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features strong {
  color: #fff;
}

.plan-pricing {
  margin-bottom: 20px;
}

.plan-from {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.plan-from s {
  color: var(--primary);
}

.plan-price {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 8vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
}

.plan-price .currency {
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  vertical-align: super;
  font-weight: 700;
  margin-right: 4px;
  letter-spacing: 0;
}

.plan-price .cents {
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0;
}

.plan-period {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #cc0000);
  color: #fff;
  box-shadow: 0 6px 20px var(--primary-glow);
  animation: pulse 2s ease-in-out infinite;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(255, 45, 45, 0.08);
}

.plan-savings {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #4caf50;
  font-weight: 600;
}

.compra-garantida {
  width: 100%;
  max-width: 240px;
  margin: 16px auto 0;
  opacity: 0.8;
}

.urgency-note {
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 45, 45, 0.06);
  border: 1px solid rgba(255, 45, 45, 0.15);
  padding: 12px 16px;
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── HOW IT WORKS ────────────────────────────── */
.how-it-works {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-dark);
}

.steps-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: rgba(255, 45, 45, 0.3);
}

@media (max-width: 500px) {
  .step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #cc0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
}

.step-content h3 {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.step-content p {
  font-size: clamp(0.9rem, 3vw, 0.95rem);
  color: var(--text-muted);
}

/* ── GUARANTEE ───────────────────────────────── */
.guarantee {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark), #0f0f18);
}

.guarantee-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.guarantee-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

.guarantee-content h2 {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: clamp(1.3rem, 5vw, 1.5rem);
  margin-bottom: 12px;
}

.guarantee-content p {
  font-size: clamp(0.9rem, 3vw, 0.95rem);
  color: var(--text-muted);
}

/* ── FAQ ─────────────────────────────────────── */
.faq-section {
  padding: 60px 0;
  text-align: center;
  background: #0f0f18;
}

.faq-list {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  transition: all 0.3s;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  color: #fff;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: clamp(0.95rem, 3vw, 1rem);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 16px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FINAL CTA ───────────────────────────────── */
.final-cta {
  padding: 60px 0;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(255, 45, 45, 0.1) 0%, var(--bg-dark) 70%);
}

.final-title {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: clamp(1.3rem, 5vw, 2.2rem);
  margin-bottom: 16px;
}

.final-sub {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: clamp(0.9rem, 3vw, 1rem);
}

.final-guarantee-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  padding: 40px 0 80px;
  /* space for floating cta */
  text-align: center;
  background: #06060a;
  border-top: 1px solid var(--border);
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
}

.footer-rights {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ── FLOATING CTA ────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #cc0000);
  color: #fff;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: clamp(0.85rem, 3vw, 1rem);
  padding: 12px 24px;
  border-radius: 60px;
  z-index: 999;
  box-shadow: 0 8px 25px var(--primary-glow);
  animation: pulse 2s ease-in-out infinite;
  display: none;
  white-space: nowrap;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .floating-cta {
    bottom: 12px;
    width: 90%;
    max-width: 320px;
    justify-content: center;
  }
}

.floating-cta.visible {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── UPSELL MODAL ────────────────────────────── */
.upsell-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 15px;
}

.upsell-modal.active {
  opacity: 1;
  pointer-events: all;
}

.upsell-modal-content {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 35px 25px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  font-family: 'Inter', sans-serif;
  animation: slideUp 0.3s ease-out forwards;
}

.upsell-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f1f1;
  color: #888;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.upsell-close:hover {
  background: #e1e1e1;
  color: #333;
}

.upsell-icon-wrap {
  width: 54px;
  height: 54px;
  background: #fff0f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.upsell-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 3px solid #e11d48;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #e11d48;
  font-weight: 900;
  line-height: 1;
}

.upsell-title {
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.upsell-subtitle {
  color: #e11d48;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 20px;
  font-weight: 600;
}

.upsell-price-box {
  background: #fffafa;
  border: 1px dashed rgba(225, 29, 72, 0.4);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-old-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #888;
  font-size: 0.75rem;
  font-weight: 600;
}

.price-old {
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 800;
  color: #a0a0a0;
}

.price-new-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.price-label {
  color: #e11d48;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-new {
  color: #059669;
  /* Green */
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.upsell-features {
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 0 20px;
  list-style: none;
  text-align: left;
}

.upsell-features li {
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.upsell-features li:last-child {
  margin-bottom: 0;
}

.upsell-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #e6f4ea;
  color: #059669;
  border-radius: 50%;
  flex-shrink: 0;
}

.upsell-btn-yes {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
  letter-spacing: 0.5px;
}

.upsell-btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(225, 29, 72, 0.4);
}

.upsell-btn-no {
  display: block;
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  color: #888;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: underline;
  transition: all 0.2s;
}

.upsell-btn-no:hover {
  color: #555;
}

.upsell-footer-note {
  margin-top: 20px;
  color: #666;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── VIDEO MODAL ─────────────────────────────── */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-content {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-family: var(--font-alt);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 10;
}

.iframe-container {
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════
   CHECKOUT MODAL
   ═══════════════════════════════════════════════ */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 15px;
}

.checkout-modal.active {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal-content {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
  animation: slideUp 0.3s ease-out forwards;
}

/* ── NEW CHECKOUT HEADER ── */
.checkout-header-new {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-bottom: none;
  flex-shrink: 0;
  position: relative;
}

.checkout-close-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #f5f5f5;
  border: none;
  color: #888;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.checkout-close-btn:hover {
  background: #e5e5e5;
  color: #333;
}

.checkout-plan-badge-new {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff0f2;
  color: #be123c;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.gift-icon {
  font-size: 1rem;
}

.checkout-timer-banner {
  background: #ffedd5;
  color: #c2410c;
  text-align: center;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Checkout Body ── */
.checkout-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

/* ── Step Content ── */
.animate-fade {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-icon-header-new {
  text-align: left;
  margin-bottom: 20px;
}

.icon-title {
  color: #1f2937;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.success-text {
  color: #059669;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ── Old Step Icon Header (Used in Bumps) ── */
.step-icon-header {
  text-align: center;
  margin-bottom: 24px;
}

.step-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.step-icon-header h3 {
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.step-icon-header p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* ── Alert Box Green ── */
.alert-box-green {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.alert-icon-shield {
  font-size: 1.5rem;
  color: #059669;
}

.alert-text {
  display: flex;
  flex-direction: column;
}

.alert-text strong {
  color: #065f46;
  font-size: 0.85rem;
  font-weight: 700;
}

.alert-text span {
  color: #166534;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ── Form Fields ── */
.checkout-field {
  margin-bottom: 16px;
}

.checkout-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 6px;
}

.checkout-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.checkout-field input:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

/* ── Buttons ── */
.checkout-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2);
  margin-top: 8px;
}

.checkout-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
}

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

/* ── Footer New ── */
.checkout-footer-new {
  background: #fff;
  text-align: center;
  padding: 16px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.footer-icons img {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.footer-secure {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-guarantee {
  color: #3b82f6;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Order Bumps ── */
.bumps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.bump-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fafafa;
}

.bump-card:hover {
  border-color: #ddd;
}

.bump-card.selected {
  border-color: #059669;
  background: #f0fdf4;
}

.bump-checkbox {
  flex-shrink: 0;
  margin-top: 2px;
}

.bump-check-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.bump-card.selected .bump-check-box {
  background: #059669;
  border-color: #059669;
}

.bump-card.selected .bump-check-box::after {
  content: '✓';
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.bump-info {
  flex: 1;
}

.bump-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.bump-icon {
  font-size: 1rem;
}

.bump-desc {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.4;
}

.bump-price {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 800;
  color: #059669;
  white-space: nowrap;
}

/* ── Total Box ── */
.checkout-total-box {
  background: #f9fafb;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

.total-row:last-child {
  margin-bottom: 0;
}

.total-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 8px 0;
}

.total-final {
  font-size: 1.1rem !important;
  color: #111 !important;
  font-weight: 800 !important;
}

.total-final span:last-child {
  color: #e11d48 !important;
}

/* ── PIX Screen ── */
.pix-header-box {
  text-align: center;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.pix-header-box h3 {
  color: #166534;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.pix-header-box p {
  color: #4ade80;
  font-size: 0.8rem;
  margin: 0;
}

.pix-qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pix-qr-box {
  padding: 12px;
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pix-qr-img {
  width: 200px;
  height: 200px;
}

.pix-loading {
  text-align: center;
  padding: 40px 0;
}

.pix-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border: 3px solid #f0f0f0;
  border-top: 3px solid #e11d48;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pix-loading p {
  color: #888;
  font-size: 0.85rem;
}

.pix-code-wrap {
  margin-bottom: 20px;
}

.pix-code-wrap label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pix-code-field {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.pix-code-field input {
  flex: 1;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 0.8rem;
  font-family: monospace;
  color: #555;
  background: #f9fafb;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pix-copy-btn {
  padding: 12px 16px;
  border: 1px solid #e11d48;
  border-radius: 10px;
  background: #fff;
  color: #e11d48;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.pix-copy-btn:hover {
  background: #fff0f2;
}

.pix-copy-main {
  margin-top: 4px;
}

.pix-timer-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fef08a;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
}

.pix-timer-icon {
  font-size: 1.5rem;
}

.pix-timer-text strong {
  color: #92400e;
  font-size: 0.85rem;
  display: block;
}

.pix-timer-text p {
  color: #a16207;
  font-size: 0.75rem;
  margin: 2px 0 0;
}

.pix-valor-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 14px;
}

.pix-valor-box span {
  color: #666;
  font-size: 0.85rem;
}

.pix-valor-box strong {
  color: #e11d48;
  font-size: 1.2rem;
}

/* ── Success Screen ── */
.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.success-title {
  color: #059669;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.success-msg {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 24px;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .checkout-modal-content {
    max-height: 95vh;
    border-radius: 16px;
  }

  .checkout-body {
    padding: 20px 16px;
  }

  .stepper-step span {
    font-size: 0.6rem;
  }

  .pix-qr-img {
    width: 160px;
    height: 160px;
  }
}

/* ═══════════════════════════════════════════════
   SOCIAL PROOF TOAST (Notificações de compra)
   ═══════════════════════════════════════════════ */
.social-toast {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: rgba(18, 18, 26, 0.95);
  backdrop-filter: blur(12px);
  border-left: 4px solid #ff2d2d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 45, 45, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 99998;
  transform: translateY(150px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  max-width: 340px;
}

.social-toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  animation: toastPulse 2s ease-in-out infinite;
}

@keyframes toastPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255, 45, 45, 0); }
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.toast-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 2px 0;
}

.toast-action {
  font-size: 0.8rem;
  color: #a0a0b0;
  margin: 0;
  line-height: 1.3;
}

.toast-action strong {
  color: #ff2d2d;
}

.toast-time {
  font-size: 0.7rem;
  color: #666;
  margin: 4px 0 0 0;
}

@media (max-width: 768px) {
  .social-toast {
    bottom: auto;
    top: 100px;
    left: 4%;
    right: 4%;
    width: 92%;
    max-width: none;
    box-sizing: border-box;
    transform: translateY(-150px);
  }
}

/* ═══════════════════════════════════════════════
   BUTTON LOADING STATE
   ═══════════════════════════════════════════════ */
.btn-loading {
  pointer-events: none !important;
  opacity: 0.7 !important;
  cursor: wait !important;
}

/* ═══════════════════════════════════════════════
   VSL GATE HINT
   ═══════════════════════════════════════════════ */
.hero-cta-hint {
  animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Fix: buttons should look like original <a> links */
button.btn-plan,
button.upsell-btn-yes,
button.upsell-btn-no {
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
}