/* ==========================================================================
   SNES PT-BR PACK - PREMIUM LANDING PAGE DESIGN SYSTEM & STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Press+Start+2P&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #09090c;
  --bg-card: rgba(18, 20, 32, 0.6);
  --bg-card-hover: rgba(28, 30, 48, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(0, 229, 255, 0.35);
  
  --neon-purple: #9d4edd;
  --neon-purple-glow: rgba(157, 78, 221, 0.5);
  --electric-blue: #00e5ff;
  --electric-blue-glow: rgba(0, 229, 255, 0.4);
  --nintendo-red: #ff0055;
  --nintendo-red-glow: rgba(255, 0, 85, 0.45);
  --emerald-green: #00f5d4;
  --gold-accent: #ffb703;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-retro: 'Press Start 2P', monospace;
  
  /* Shadows & FX */
  --shadow-glow-purple: 0 0 30px rgba(157, 78, 221, 0.35);
  --shadow-glow-blue: 0 0 30px rgba(0, 229, 255, 0.35);
  --shadow-glow-red: 0 0 30px rgba(255, 0, 85, 0.4);
  --glass-blur: blur(16px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y;
}

section, header, footer, main, .hero-section, .classicos-section, .porque-section, .compat-section, .como-funciona-section, .pricing-section, .faq-section {
  overflow-x: hidden;
  max-width: 100%;
}

/* Particle Canvas Overlay */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* Ambient Glow Orbs in Background */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  max-width: 100%;
  overflow: hidden;
}

.glow-1 {
  top: -100px;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.35) 0%, rgba(0,0,0,0) 70%);
}

.glow-2 {
  top: 400px;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.25) 0%, rgba(0,0,0,0) 70%);
}

.glow-3 {
  bottom: 10%;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.22) 0%, rgba(0,0,0,0) 70%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--electric-blue) 50%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-red {
  background: linear-gradient(135deg, #ffffff 0%, var(--nintendo-red) 50%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-ptbr {
  background: linear-gradient(110deg, #00e676 0%, #ffdf00 48%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  filter: drop-shadow(0 0 14px rgba(0, 230, 118, 0.4));
}

.retro-tag {
  font-family: var(--font-retro);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--emerald-green);
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.retro-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--emerald-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-green);
  animation: pulse-dot 1.5s infinite alternate;
}

@keyframes pulse-dot {
  0% { opacity: 0.4; }
  100% { opacity: 1; transform: scale(1.3); }
}

/* Glassmorphism Card Base */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 229, 255, 0.12);
}

/* Buttons */
.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--nintendo-red) 0%, #d90429 50%, var(--neon-purple) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 30px var(--nintendo-red-glow), 0 0 20px rgba(255, 0, 85, 0.3);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg);
  transition: 0.8s;
  opacity: 0;
}

.btn-primary:hover::after {
  opacity: 1;
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px var(--nintendo-red-glow), 0 0 35px var(--electric-blue-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--glass-blur);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--electric-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

.btn-cyan {
  background: linear-gradient(135deg, #00e5ff 0%, #0077b6 100%);
  color: #090b10;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-full);
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.45);
  transition: var(--transition-fast);
  width: 100%;
  text-align: center;
}

.btn-cyan:hover {
  background: linear-gradient(135deg, #33edf6 0%, #00e5ff 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.75);
}

/* TOP FROZEN ANNOUNCEMENT BAR */
.top-announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 38px;
  background: linear-gradient(90deg, #d90429 0%, #ff0055 50%, #d90429 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.68rem, 2.5vw, 0.85rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1001;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
  padding: 6px 12px;
  text-align: center;
  overflow: hidden;
}

.pulse-dot-red {
  color: #fff;
  font-size: 0.8rem;
  animation: pulse-dot 1.2s infinite alternate;
}

/* HEADER / NAV */
.navbar {
  padding: 20px 0;
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(9, 9, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: #ffffff;
}

.logo-badge {
  background: var(--nintendo-red);
  color: #fff;
  font-family: var(--font-retro);
  font-size: 0.65rem;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--nintendo-red-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--electric-blue);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* HERO SECTION */
.hero-section {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--electric-blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

/* HERO PLAYERS RATING BADGE */
.hero-players-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 14px;
  margin-bottom: 20px;
}

.stars-row {
  color: #ffc107;
  font-size: 1.15rem;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.65);
}

.players-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--emerald-green);
  width: 18px;
  height: 18px;
}

/* DESKTOP / MOBILE DISPLAY SWITCHERS */
.hero-visual-mobile {
  display: none;
}

.hero-visual-desktop {
  display: block;
}

.comparison-mobile {
  display: none;
}

.comparison-desktop {
  display: block;
}

.hero-visual {
  position: relative;
}

.hero-mockup-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 50px var(--neon-purple-glow);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: float 6s ease-in-out infinite;
}

.hero-mockup-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   VSL SECTION & EXCLUSIVE .VSL-WRAPPER (1:1 FORMAT, MAX-WIDTH 460PX DESKTOP, 90VW / MAX 340PX MOBILE)
   ========================================================================== */
.vsl-section-wrapper {
  padding: 48px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* Exclusive Container .vsl-wrapper */
.vsl-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #08090f;
  border: 1px solid rgba(157, 78, 221, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(157, 78, 221, 0.2);
  box-sizing: border-box;
}

/* Video element uses width: 100% and height: 100% only within .vsl-wrapper */
.vsl-wrapper .vsl-video-player {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 18px !important;
}

.vsl-mute-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 12;
  background: rgba(9, 9, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 12px rgba(0, 229, 255, 0.2);
  transition: var(--transition-fast);
}

.vsl-mute-btn:hover {
  background: rgba(157, 78, 221, 0.9);
  border-color: var(--emerald-green);
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(157, 78, 221, 0.5);
}

.vsl-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(157, 78, 221, 0.25);
  backdrop-filter: blur(4px);
  z-index: 10;
  pointer-events: none;
}

.vsl-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #9d4edd 0%, #00e5ff 100%);
  box-shadow: 0 0 12px rgba(157, 78, 221, 0.9);
  border-radius: 0 4px 4px 0;
  transition: width 0.1s linear;
}

.badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(9, 9, 12, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--electric-blue);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* SOCIAL PROOF TOAST (HOTMART / KIWIFY / SHOPIFY STYLE) */
.sales-toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999999;
  pointer-events: none;
  overflow: hidden;
  max-width: calc(100vw - 32px);
}

.sales-toast {
  pointer-events: auto;
  width: 270px;
  max-width: 85vw;
  background: linear-gradient(135deg, rgba(18, 20, 32, 0.95), rgba(9, 9, 12, 0.98));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 229, 255, 0.15);
  position: relative;
  
  /* Initial hidden state: slide out to the left & zero opacity */
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), opacity 350ms ease;
}

.sales-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-close-btn {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.2s ease;
}

.toast-close-btn:hover {
  color: #ffffff;
}

.toast-avatar-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.25), rgba(0, 229, 255, 0.25));
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  padding-right: 10px;
}

.toast-person-info {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  line-height: 1.2;
}

.toast-person-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: #ffffff;
}

.toast-person-city {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.toast-product-badge {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--gold-accent);
  letter-spacing: 0.3px;
  text-shadow: 0 0 8px rgba(255, 183, 3, 0.3);
}

.toast-time-text {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.badge-overlay span {
  font-family: var(--font-retro);
  font-size: 0.7rem;
  color: var(--electric-blue);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

/* SECTION TITLES */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* SECTION: O QUE VOCÊ RECEBE */
.recebe-section {
  padding: 80px 0;
}

.recebe-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  background: rgba(18, 20, 32, 0.7);
  border: 1px solid var(--border-glass-hover);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.1);
}

.recebe-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recebe-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.recebe-item:last-child {
  border-bottom: none;
}

.recebe-icon-circle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.recebe-icon-circle svg {
  width: 16px;
  height: 16px;
}

.recebe-info h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.recebe-info p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .recebe-container {
    padding: 16px 20px;
  }
  
  .recebe-item {
    padding: 12px 0;
    gap: 12px;
  }
  
  .recebe-icon-circle {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .recebe-icon-circle svg {
    width: 14px;
    height: 14px;
  }

  .recebe-info h4 {
    font-size: 0.88rem;
  }

  .recebe-info p {
    font-size: 0.8rem;
  }
}

/* SECTION: CLÁSSICOS INCLUÍDOS */
.classicos-section {
  padding: 100px 0;
}

/* INFINITE MARQUEE CAROUSEL (3 ROWS) */
.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee-row {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  will-change: transform;
}

.marquee-track-right {
  animation: scroll-right 45s linear infinite;
}

.marquee-track-left {
  animation: scroll-left 45s linear infinite;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-50% - 8px));
  }
  100% {
    transform: translateX(0);
  }
}

.marquee-card {
  position: relative;
  width: 135px;
  height: 135px;
  min-width: 135px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(157, 78, 221, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  background: #10121e;
  display: block;
}

.marquee-card:hover {
  transform: scale(1.08) translateY(-4px);
  border-color: var(--electric-blue);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4);
  z-index: 10;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.marquee-tag-ptbr {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--nintendo-red);
  color: #ffffff;
  font-family: var(--font-retro);
  font-size: 0.48rem;
  padding: 3px 6px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--nintendo-red-glow);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 600px) {
  .marquee-card {
    width: 110px;
    height: 110px;
    min-width: 110px;
    border-radius: 12px;
  }
  
  .marquee-card img {
    border-radius: 10px;
  }

  .marquee-tag-ptbr {
    font-size: 0.42rem;
    padding: 2px 4px;
    top: 4px;
    right: 4px;
  }

  .marquee-wrapper {
    gap: 12px;
    padding: 10px 0;
  }

  .marquee-track {
    gap: 12px;
  }
}

.slider-page-info {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.slider-page-info span {
  color: var(--electric-blue);
  font-weight: 800;
}

.game-card {
  background: rgba(18, 20, 32, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--electric-blue);
  box-shadow: 0 15px 30px rgba(0, 229, 255, 0.15);
}

.game-boxart {
  height: 140px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #1e1b4b, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.game-boxart-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  padding: 0 12px;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.game-boxart-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transition: var(--transition-smooth);
}

.game-card:hover .game-boxart-bg {
  opacity: 0.6;
  transform: scale(1.1);
  filter: blur(0px);
}

.game-tag-ptbr {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--nintendo-red);
  color: #ffffff;
  font-family: var(--font-retro);
  font-size: 0.55rem;
  padding: 3px 7px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--nintendo-red-glow);
  z-index: 3;
}

.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-genre {
  font-size: 0.75rem;
  color: var(--electric-blue);
  font-weight: 700;
  text-transform: uppercase;
}

.game-stars {
  color: var(--gold-accent);
  font-size: 0.8rem;
}

.games-more-footer {
  text-align: center;
  margin-top: 48px;
}

.games-more-text {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--electric-blue);
  margin-bottom: 20px;
}

/* SECTION: POR QUE JOGAR EM PORTUGUÊS */
.porque-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(157, 78, 221, 0.05) 50%, transparent 100%);
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.comparison-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 230, 118, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 230, 118, 0.2);
  max-width: 440px;
  margin: 0 auto;
}

.comparison-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--emerald-green);
  transform: translateX(6px);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 245, 212, 0.15);
  color: var(--emerald-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-item p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

/* SECTION: COMPATIBILIDADE */
.compat-section {
  padding: 100px 0;
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.compat-card {
  background: rgba(18, 20, 32, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.compat-card:hover {
  border-color: var(--electric-blue);
  background: rgba(0, 229, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.15);
}

.compat-icon {
  width: 48px;
  height: 48px;
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compat-card h4 {
  font-size: 1rem;
  font-weight: 700;
}

/* SECTION: COMO FUNCIONA */
.como-funciona-section {
  padding: 100px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 50px;
}

.timeline-step {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-step:hover {
  border-color: var(--neon-purple);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-purple);
}

.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--neon-purple), var(--nintendo-red));
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 15px var(--neon-purple-glow);
}

.timeline-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SECTION: DIFERENCIAIS */
.diferenciais-section {
  padding: 100px 0;
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dif-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-fast);
}

.dif-card:hover {
  border-color: var(--nintendo-red);
  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.15);
  transform: translateY(-4px);
}

.dif-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 0, 85, 0.15);
  color: var(--nintendo-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dif-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.dif-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* SECTION: PARA QUEM É */
.para-quem-section {
  padding: 100px 0;
  background: rgba(157, 78, 221, 0.03);
}

.pq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.pq-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(18, 20, 32, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition-fast);
}

.pq-card:hover {
  border-color: var(--electric-blue);
  transform: translateX(4px);
  background: rgba(28, 30, 48, 0.9);
}

.pq-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pq-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

/* SECTION: FAQ */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--electric-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

/* SECTION: CTA FINAL & PRICING */
.cta-final-section {
  padding: 120px 0 100px;
  position: relative;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(255, 0, 85, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 60px 32px;
  backdrop-filter: var(--glass-blur);
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 60px var(--nintendo-red-glow);
}

.cta-box h2 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.pricing-badge {
  display: inline-block;
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  font-family: var(--font-retro);
  font-size: 0.75rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.price-container {
  margin: 24px 0;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 1.2rem;
}

.current-price {
  font-size: 3.8rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-heading);
}

.current-price span {
  font-size: 1.5rem;
  color: var(--emerald-green);
  font-weight: 700;
}

.cta-counter-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

.benefit-pill svg {
  color: var(--emerald-green);
  width: 18px;
  height: 18px;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border-glass);
  padding: 40px 0;
  background: rgba(9, 9, 12, 0.95);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--electric-blue);
}

/* MODAL SIMULATOR */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0f111a;
  border: 1px solid var(--electric-blue);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1.4rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  z-index: 100;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 0, 85, 0.85);
  border-color: #ff0055;
  color: #ffffff;
  transform: scale(1.1);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-visual-desktop {
    display: none !important;
  }
  
  .hero-visual-mobile {
    display: block !important;
    margin: 20px auto 28px;
    max-width: 480px;
    width: 100%;
  }

  .comparison-desktop {
    display: none !important;
  }

  .comparison-mobile {
    display: block !important;
    margin: 20px auto 28px;
    max-width: 440px;
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-desc {
    margin: 0 auto 36px;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .hero-players-badge {
    align-items: center;
    text-align: center;
    margin: 14px auto 20px;
  }

  .hero-trust-badges {
    justify-content: center;
  }
  
  .porque-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    grid-template-columns: 1fr;
  }
}

/* PRICING GRID & CARDS */
.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--emerald-green);
  background: rgba(18, 24, 38, 0.85);
  box-shadow: 0 20px 60px rgba(0, 245, 212, 0.15), 0 0 30px var(--neon-purple-glow);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--nintendo-red), var(--gold-accent));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.package-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-box {
  text-align: center;
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1;
  margin: 6px 0;
}

.price-amount .cents {
  font-size: 1.6rem;
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li.active {
  color: var(--text-main);
}

.pricing-features li.active.highlight {
  color: var(--emerald-green);
  font-weight: 700;
}

.pricing-features li.disabled {
  color: var(--text-dim);
  text-decoration: line-through;
  opacity: 0.5;
}

/* DOWNSELL MODAL STYLING */
.downsell-card {
  background: #0d0f17;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 25px 70px rgba(255, 183, 3, 0.25), 0 0 50px rgba(0,0,0,0.9);
  max-width: 460px;
  padding: 36px 28px;
}

.downsell-badge {
  display: inline-block;
  background: var(--nintendo-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.downsell-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.downsell-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.downsell-price-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.downsell-price-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.downsell-old-price {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.downsell-discount-tag {
  background: rgba(0, 245, 212, 0.15);
  border: 1px solid var(--emerald-green);
  color: var(--emerald-green);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.downsell-current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.downsell-checklist {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.downsell-checklist li {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon-sm {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 245, 212, 0.2);
  color: var(--emerald-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.btn-gold-downsell {
  width: 100%;
  background: linear-gradient(135deg, #ffb703, #ffd600);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  padding: 16px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 183, 3, 0.4);
  transition: var(--transition-fast);
}

.btn-gold-downsell:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 183, 3, 0.6);
}

.downsell-decline {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.8rem;
  text-decoration: underline;
  margin-top: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.downsell-decline:hover {
  color: var(--text-muted);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS SYSTEM (EXACT QUANTITATIVE DIRECTIVES)
   - Max-width do conteúdo: 375px (faixa 360-380px)
   - Redução de títulos em ~15-20%
   - Espaçamento entre seções: 48-56px (faixa 48-64px)
   - Padding lateral do container: 18px (faixa 16-20px)
   - Imagens rigorosamente limitadas a max-width: 100%
   ========================================================================== */

@media (max-width: 768px) {
  *, *::before, *::after {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  img, svg, video, iframe, canvas {
    max-width: 100% !important;
    height: auto !important;
  }

  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    touch-action: pan-y !important;
  }

  section, header, footer, main, .top-announcement-bar, .navbar, .hero-section, .classicos-section, .porque-section, .compat-section, .como-funciona-section, .pricing-section, .faq-section, .hero-grid, .hero-content {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Max-width do conteúdo no mobile (360px - 380px) & Padding lateral 18px (16px - 20px) */
  .container {
    width: 100% !important;
    max-width: 375px !important;
    margin: 0 auto !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
  }

  /* Espaçamento entre seções: 48px - 56px (faixa 48 - 64px) */
  .hero-section {
    padding: 48px 0 28px !important;
  }
  
  .classicos-section, .porque-section, .compat-section, .como-funciona-section, .pricing-section, .faq-section, .recebe-section {
    padding: 56px 0 !important;
  }

  /* Top Announcement Bar */
  .top-announcement-bar {
    font-size: clamp(0.62rem, 2.6vw, 0.7rem);
    padding: 5px 8px;
    letter-spacing: 0.2px;
    min-height: 34px;
  }

  .pulse-dot-red {
    font-size: 0.7rem;
  }

  /* Navbar Mobile */
  .navbar {
    top: 34px;
    padding: 10px 0;
  }

  .navbar.scrolled {
    padding: 8px 0;
  }

  .logo {
    font-size: clamp(1.05rem, 4.2vw, 1.2rem);
    gap: 8px;
  }

  .logo-badge {
    font-size: 0.5rem;
    padding: 2px 5px;
  }

  .nav-cta {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  /* H1 fixado exatamente em 20px no mobile */
  .hero-content h1 {
    font-size: 20px !important;
    line-height: 1.22 !important;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
  }

  .hero-subtitle {
    font-size: clamp(0.82rem, 3.4vw, 0.95rem);
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: clamp(0.78rem, 3vw, 0.86rem);
    line-height: 1.4;
    margin-bottom: 20px;
  }

  /* VSL Mobile Responsive Rule (Até 768px) */
  .vsl-section-wrapper {
    padding: 48px 0 !important;
  }

  .vsl-wrapper {
    width: 100% !important;
    max-width: 320px !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 auto !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .vsl-mute-btn {
    top: 10px !important;
    right: 10px !important;
    padding: 6px 12px !important;
    font-size: 0.72rem !important;
  }

  .badge-overlay {
    bottom: 8px;
    left: 8px;
    padding: 5px 10px;
    gap: 6px;
    border-radius: 8px;
  }

  .badge-overlay svg {
    width: 14px;
    height: 14px;
  }

  .badge-overlay span {
    font-size: 0.58rem;
  }

  /* Social Proof Rating & Badges */
  .hero-players-badge {
    align-items: center;
    text-align: center;
    margin: 10px auto 14px;
    gap: 2px;
  }

  .stars-row {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .players-text {
    font-size: 0.66rem;
    letter-spacing: 0.3px;
  }

  .hero-trust-badges {
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .trust-item {
    font-size: 0.74rem;
    gap: 5px;
  }

  .trust-item svg {
    width: 14px;
    height: 14px;
  }

  /* Section Header Scaling (Redução de 15-20% nos Títulos h2) */
  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: clamp(1.15rem, 4.8vw, 1.35rem);
    margin-bottom: 8px;
    line-height: 1.22;
  }

  .section-header p {
    font-size: clamp(0.76rem, 3vw, 0.84rem);
    line-height: 1.4;
  }

  /* Botões principais com altura exata de 40px no mobile */
  .btn-primary, .btn-secondary, .btn-cyan {
    height: 40px !important;
    min-height: 40px !important;
    line-height: 40px !important;
    padding: 0 16px !important;
    font-size: clamp(0.78rem, 3.2vw, 0.85rem) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .btn-primary svg {
    width: 16px;
    height: 16px;
  }

  .btn-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  /* Marquee Infinite Carousel Scaling */
  .marquee-wrapper {
    gap: 8px;
    padding: 8px 0;
  }

  .marquee-card {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 10px;
  }

  .marquee-tag-ptbr {
    font-size: 0.38rem;
    padding: 2px 4px;
    top: 3px;
    right: 3px;
  }

  /* Section: Por Que Jogar em PT-BR & Comparison Image */
  .porque-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .comparison-mobile {
    display: block !important;
    margin: 10px auto 16px;
    max-width: 100% !important;
    width: 100%;
  }

  .checklist {
    gap: 10px;
  }

  .checklist-item {
    padding: 10px 14px;
    gap: 10px;
    border-radius: 10px;
  }

  .checklist-item p {
    font-size: clamp(0.78rem, 3.1vw, 0.86rem);
  }

  .check-icon {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }

  /* Compatibilidade Grid */
  .compat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .compat-card {
    padding: 12px 8px;
    gap: 6px;
    border-radius: 10px;
  }

  .compat-icon {
    width: 32px;
    height: 32px;
  }

  .compat-icon svg {
    width: 24px;
    height: 24px;
  }

  .compat-card h4 {
    font-size: clamp(0.76rem, 3vw, 0.84rem);
  }

  /* Timeline / Como Funciona Steps */
  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .timeline-step {
    padding: 14px 12px;
    border-radius: 14px;
    text-align: center;
  }

  .step-num {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin: 0 auto 8px;
  }

  .timeline-step h3 {
    font-size: clamp(0.88rem, 3.8vw, 0.98rem);
    margin-bottom: 3px;
  }

  .timeline-step p {
    font-size: clamp(0.74rem, 2.9vw, 0.8rem);
    line-height: 1.38;
  }

  /* Pricing Grid & Cards Mobile Scaling */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .pricing-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .popular-badge {
    font-size: 0.6rem;
    padding: 3px 10px;
    top: -10px;
  }

  .package-name {
    font-size: clamp(1.05rem, 4.2vw, 1.2rem);
    margin-bottom: 3px;
  }

  .package-desc {
    font-size: clamp(0.72rem, 2.8vw, 0.78rem);
  }

  .price-box {
    padding: 8px 10px;
    margin-bottom: 16px;
    border-radius: 10px;
  }

  .price-amount {
    font-size: clamp(1.9rem, 7.5vw, 2.2rem);
    margin: 3px 0;
  }

  .price-amount .cents {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  }

  .pricing-features {
    gap: 8px;
    margin-bottom: 20px;
  }

  .pricing-features li {
    font-size: clamp(0.74rem, 3vw, 0.8rem);
    gap: 6px;
  }

  /* FAQ Accordion Scaling */
  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 10px;
  }

  .faq-question {
    padding: 12px 14px;
    font-size: clamp(0.8rem, 3.2vw, 0.88rem);
  }

  .faq-answer {
    padding: 0 14px 12px;
    font-size: clamp(0.74rem, 2.9vw, 0.8rem);
    line-height: 1.4;
  }

  /* POP-UP / UPSELL OFFER MODAL ULTRA-RESPONSIVE MOBILE STYLING */
  .modal-overlay {
    padding: 8px;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
  }

  .modal-card, .downsell-card {
    width: 95%;
    max-width: 350px !important;
    max-height: 85vh;
    overflow-y: auto;
    padding: 14px 12px;
    border-radius: 14px;
    position: relative;
    box-sizing: border-box;
  }

  .modal-close {
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .downsell-badge {
    font-size: 0.52rem;
    padding: 3px 6px;
    margin-bottom: 5px;
  }

  .downsell-title {
    font-size: clamp(0.95rem, 3.8vw, 1.08rem);
    line-height: 1.18;
    margin-bottom: 4px;
  }

  .downsell-desc {
    font-size: 0.7rem;
    line-height: 1.32;
    margin-bottom: 8px;
    padding: 0 2px;
  }

  .downsell-price-box {
    padding: 6px 8px;
    margin-bottom: 8px;
    border-radius: 8px;
  }

  .downsell-old-price {
    font-size: 0.68rem;
  }

  .downsell-discount-tag {
    font-size: 0.55rem;
    padding: 1px 4px;
  }

  .downsell-current-price {
    font-size: 0.76rem;
  }

  .downsell-current-price span {
    font-size: 1.25rem !important;
  }

  .btn-gold-downsell {
    font-size: 0.8rem;
    padding: 9px 10px;
    border-radius: 22px;
    box-shadow: 0 4px 12px rgba(255, 183, 3, 0.35);
  }

  .downsell-decline {
    font-size: 0.64rem;
    margin-top: 6px;
    line-height: 1.2;
  }

  /* Sales Toast Floating Proof */
  .sales-toast-container {
    bottom: 10px;
    left: 10px;
    max-width: calc(100vw - 20px);
  }

  .sales-toast {
    width: 250px;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .toast-avatar-circle {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .toast-person-name {
    font-size: 0.78rem;
  }

  .toast-product-badge {
    font-size: 0.72rem;
  }
}

