﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PlayJoker Casino â€” style.css
   Design System: Dark casino premium with neon accents
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ RESET & BASE â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Hide scrollbar — Chrome/Safari/Edge */
::-webkit-scrollbar { display: none; }
/* Hide scrollbar — Firefox */
html { scrollbar-width: none; }
/* Hide scrollbar — IE/Edge legacy */
body { -ms-overflow-style: none; }


:root {
  /* Colors */
  --bg-900: #080810;
  --bg-800: #0d0d1a;
  --bg-700: #12121f;
  --bg-600: #181828;
  --bg-card: #13131f;
  --bg-card-hover: #1a1a2e;

  --purple: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.4);
  --purple-light: #a78bfa;

  --gold: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.4);
  --gold-light: #fbbf24;

  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.4);

  --cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.35);

  --pink: #ec4899;
  --pink-glow: rgba(236, 72, 153, 0.4);

  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);

  --text-primary: #f1f1f6;
  --text-secondary: #9090b0;
  --text-muted: #5a5a7a;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);

  /* Typography */
  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Spacing */
  --section-py: 96px;
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow-purple: 0 0 40px rgba(139, 92, 246, 0.25);
  --shadow-glow-gold: 0 0 40px rgba(245, 158, 11, 0.25);

  scroll-behavior: smooth;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-900);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* â”€â”€â”€ SCROLLBAR â”€â”€â”€ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-900); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* â”€â”€â”€ SELECTION â”€â”€â”€ */
::selection { background: var(--purple-glow); color: #fff; }

/* â”€â”€â”€ UTILITY â”€â”€â”€ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--purple-light) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  color: #fff;
  box-shadow: 0 4px 24px var(--purple-glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px var(--purple-glow);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-hover);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 32px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-xl { padding: 18px 40px; font-size: 1.15rem; border-radius: var(--radius-xl); }

.btn-whatsapp {
  width: 100%;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px var(--whatsapp-glow);
}
.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px var(--whatsapp-glow);
}

.btn-whatsapp-gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-whatsapp-gold:hover { box-shadow: 0 8px 32px var(--gold-glow); }

.btn-whatsapp-pink {
  background: linear-gradient(135deg, var(--pink), #be185d);
  box-shadow: 0 4px 20px var(--pink-glow);
}
.btn-whatsapp-pink:hover { box-shadow: 0 8px 32px var(--pink-glow); }

.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pulse-btn {
  animation: pulse-shadow 3s ease infinite;
}
@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 4px 24px var(--purple-glow); }
  50% { box-shadow: 0 4px 48px rgba(139, 92, 246, 0.6), 0 0 80px rgba(139, 92, 246, 0.2); }
}

.btn-icon { font-size: 1.1em; }
.btn-arrow { transition: transform 0.2s; }
.btn-ghost:hover .btn-arrow { transform: translateY(3px); }

/* â”€â”€â”€ NAVBAR â”€â”€â”€ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(8, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px var(--gold));
  color: var(--gold);
}

.logo-text { color: var(--text-primary); }
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 20px;
  background: rgba(8, 8, 16, 0.97);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.mobile-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(1.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,92,246,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(245,158,11,0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8,8,16,0.3) 0%, rgba(8,8,16,0.7) 60%, rgba(8,8,16,1) 100%);
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle 8s ease-in-out infinite;
}
.particle:nth-child(1)  { left: 10%; animation-delay: 0s;   animation-duration: 9s;  background: var(--purple); width: 3px; height: 3px; }
.particle:nth-child(2)  { left: 25%; animation-delay: 2s;   animation-duration: 7s;  }
.particle:nth-child(3)  { left: 40%; animation-delay: 4s;   animation-duration: 10s; background: var(--pink); width: 5px; height: 5px; }
.particle:nth-child(4)  { left: 60%; animation-delay: 1s;   animation-duration: 8s;  background: var(--purple); }
.particle:nth-child(5)  { left: 75%; animation-delay: 3s;   animation-duration: 11s; }
.particle:nth-child(6)  { left: 85%; animation-delay: 5s;   animation-duration: 7s;  background: var(--cyan); width: 3px; height: 3px; }
.particle:nth-child(7)  { left: 50%; animation-delay: 1.5s; animation-duration: 9s;  }
.particle:nth-child(8)  { left: 90%; animation-delay: 3.5s; animation-duration: 8s;  background: var(--pink); }
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--gold); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  width: fit-content;
}

.stat-item { text-align: center; padding: 0 24px; }
.stat-number { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.hero-scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-muted);
  animation: bounce-arrow 2s ease-in-out infinite;
}
.hero-scroll-arrow svg { width: 28px; height: 28px; }
@keyframes bounce-arrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* â”€â”€â”€ SECTIONS SHARED â”€â”€â”€ */
.section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* â”€â”€â”€ BENEFITS â”€â”€â”€ */
.beneficios { background: var(--bg-800); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  bottom: -60px;
  right: -60px;
  transition: opacity 0.35s;
  pointer-events: none;
}
.benefit-card:hover .card-glow { opacity: 0.25; }
.glow-purple { background: var(--purple); }
.glow-gold { background: var(--gold); }
.glow-green { background: var(--green); }
.glow-cyan { background: var(--cyan); }
.glow-pink { background: var(--pink); }

.benefit-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-purple { background: rgba(139,92,246,0.15); box-shadow: 0 0 20px rgba(139,92,246,0.15); }
.icon-gold   { background: rgba(245,158,11,0.15); box-shadow: 0 0 20px rgba(245,158,11,0.15); }
.icon-green  { background: rgba(16,185,129,0.15); box-shadow: 0 0 20px rgba(16,185,129,0.15); }
.icon-cyan   { background: rgba(6,182,212,0.15);  box-shadow: 0 0 20px rgba(6,182,212,0.15); }
.icon-pink   { background: rgba(236,72,153,0.15); box-shadow: 0 0 20px rgba(236,72,153,0.15); }

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* â”€â”€â”€ HOW IT WORKS â”€â”€â”€ */
.como-funciona {
  background: var(--bg-900);
  position: relative;
  overflow: hidden;
}
.como-funciona::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 56px;
}

.step-connector {
  display: none;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(139,92,246,0.3); }
.step-card:hover::before { opacity: 1; }

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(139,92,246,0.12);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(245,158,11,0.4));
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.steps-cta { text-align: center; }

/* â”€â”€â”€ AGENTS / CARGADORES â”€â”€â”€ */
.cargadores {
  background: var(--bg-800);
  position: relative;
  overflow: hidden;
}
.cargadores::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 10% 50%, rgba(245,158,11,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 50%, rgba(139,92,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.agent-card {
  position: relative;
  border-radius: var(--radius-xl);
}

.featured-agent {
  transform: translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--gold-glow);
}

.agent-card-inner {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.agent-card-inner:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.featured-agent .agent-card-inner {
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 8px 40px rgba(245,158,11,0.1);
}
.featured-agent .agent-card-inner:hover {
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 16px 60px rgba(245,158,11,0.18);
}

.agent-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: -40px;
  right: -40px;
  filter: blur(50px);
  opacity: 0.15;
  pointer-events: none;
  background: var(--purple);
}
.glow-gold-agent { background: var(--gold); opacity: 0.2; }
.glow-cyan-agent { background: var(--cyan); opacity: 0.15; }
.glow-pink-agent { background: var(--pink); opacity: 0.15; }

.agent-avatar-wrap {
  position: relative;
  align-self: center;
}

.agent-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  transition: all 0.3s;
  background: var(--bg-700);
}
.featured-agent .agent-avatar { border-color: var(--gold); box-shadow: 0 0 20px var(--gold-glow); }
.agent-card-inner:hover .agent-avatar { border-color: var(--purple); transform: scale(1.04); }
.featured-agent .agent-card-inner:hover .agent-avatar { border-color: var(--gold); }

.agent-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,8,16,0.88);
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--green);
  backdrop-filter: blur(8px);
}

.status-busy {
  color: #f59e0b;
  border-color: rgba(245,158,11,0.4);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: blink 1.8s ease-in-out infinite;
}
.dot-yellow {
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}

.agent-info { display: flex; flex-direction: column; gap: 10px; flex: 1; }

.agent-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
}

.agent-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }

.agent-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tag-purple { background: rgba(139,92,246,0.15); color: var(--purple-light); border: 1px solid rgba(139,92,246,0.3); }
.tag-gold   { background: rgba(245,158,11,0.15); color: var(--gold-light); border: 1px solid rgba(245,158,11,0.3); }
.tag-cyan   { background: rgba(6,182,212,0.15);  color: var(--cyan);       border: 1px solid rgba(6,182,212,0.3); }
.tag-pink   { background: rgba(236,72,153,0.15); color: var(--pink);       border: 1px solid rgba(236,72,153,0.3); }
.tag-dark   { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border); }

.agent-methods {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.method-badge {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.agent-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
}

/* â”€â”€â”€ FAQ â”€â”€â”€ */
.faq-section { background: var(--bg-900); }

.faq-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(139,92,246,0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--purple-light); }
.faq-question[aria-expanded="true"] { color: var(--purple-light); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-icon svg { width: 20px; height: 20px; }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--purple-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.faq-answer.open {
  max-height: 400px;
  transition: max-height 0.5s cubic-bezier(0.75, 0, 1, 1);
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer p strong { color: var(--gold); }

/* â”€â”€â”€ CTA BANNER â”€â”€â”€ */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0a1e 0%, #110c1f 50%, #0a0f1e 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: float-slow 10s ease-in-out infinite alternate;
}
.cta-particle:nth-child(1) { width: 400px; height: 400px; background: var(--purple); top: -100px; left: -100px; }
.cta-particle:nth-child(2) { width: 300px; height: 300px; background: var(--gold); top: -50px; right: 10%; animation-delay: 3s; }
.cta-particle:nth-child(3) { width: 250px; height: 250px; background: var(--pink); bottom: -80px; left: 40%; animation-delay: 6s; }
@keyframes float-slow {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, 20px) scale(1.1); }
}

.cta-banner-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner-dice { font-size: 3.5rem; margin-bottom: 16px; animation: spin-slow 6s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.cta-banner-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.cta-banner-desc { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
.footer {
  background: var(--bg-900);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.65; }

.footer-age-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.age-badge {
  background: rgba(245,158,11,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.age-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--purple-light); }

.payment-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.payment-badge:hover { border-color: var(--border-hover); color: var(--text-primary); transform: translateX(4px); }
.payment-icon { font-size: 1.1rem; }

.footer-bottom {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-responsible {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-md);
}
.responsible-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.footer-responsible p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.footer-responsible p strong { color: var(--gold); }

.footer-copyright { text-align: center; }
.footer-copyright p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.footer-disclaimer { font-size: 0.75rem !important; color: rgba(90,90,122,0.7) !important; }

/* â”€â”€â”€ FLOATING WHATSAPP BUTTON â”€â”€â”€ */
.float-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 6px 32px var(--whatsapp-glow), 0 2px 8px rgba(0,0,0,0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(100px);
  opacity: 0;
}
.float-wa-btn.visible { transform: translateY(0); opacity: 1; }
.float-wa-btn:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 48px var(--whatsapp-glow); }
.float-wa-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* â”€â”€â”€ SCROLL ANIMATIONS â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-agent { transform: none; }
  .steps-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo { font-size: 1.3rem; }

  .hero-content { padding-top: 90px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat-item { padding: 10px 16px; }
  .stat-divider { display: none; }

  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .agents-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-container { grid-template-columns: 1fr; gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .float-wa-btn .float-wa-label { display: none; }
  .float-wa-btn { padding: 14px; border-radius: 50%; }

  .featured-agent { transform: none; }

  .faq-question { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); padding: 16px; }
  .section-header { margin-bottom: 44px; }
  .cta-banner { padding: 60px 0; }
}

/* ─── FULL-PAGE SCROLL ─── */

/* --- FULL-PAGE SCROLL --- */
.fp-section {
  min-height: 100svh;
  scroll-margin-top: 0;
}
section.fp-section { display: flex; flex-direction: column; justify-content: center; }
.footer.fp-section { display: block; }

@media (min-width: 768px) {
  .fp-section .container,
  .fp-section .hero-content {
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .fp-section.fp-below .container,
  .fp-section.fp-below .hero-content { opacity: 0.12; transform: translateY(26px); }
  .fp-section.fp-above .container,
  .fp-section.fp-above .hero-content { opacity: 0.12; transform: translateY(-26px); }
  .fp-section.fp-active .container,
  .fp-section.fp-active .hero-content { opacity: 1; transform: translateY(0); }

  .fp-section.section { padding: clamp(24px, 4.5vh, 60px) 0; }
  .fp-section .section-header { margin-bottom: clamp(20px, 3.5vh, 48px); }
  .fp-section .section-title { font-size: clamp(1.5rem, 3vw, 2.4rem); margin-bottom: 10px; }
  .fp-section .section-desc { font-size: 0.93rem; }

  .fp-section .benefits-grid { gap: clamp(10px, 1.6vh, 18px); }
  .fp-section .benefit-card { padding: clamp(18px, 2.8vh, 30px) clamp(16px, 1.8vw, 24px); }
  .fp-section .benefit-card p { font-size: 0.84rem; line-height: 1.55; }
  .fp-section .benefit-icon-wrap { width: 52px; height: 52px; font-size: 1.5rem; margin-bottom: 14px; }

  .fp-section .steps-container { gap: clamp(10px, 1.5vh, 18px); margin-bottom: clamp(20px, 3vh, 40px); }
  .fp-section .step-card { padding: clamp(18px, 2.8vh, 32px) clamp(16px, 1.5vw, 22px); }
  .fp-section .step-number { font-size: clamp(2rem, 3.5vh, 3rem); margin-bottom: 8px; }
  .fp-section .step-icon { font-size: clamp(1.8rem, 2.8vh, 2.2rem); margin-bottom: 10px; }
  .fp-section .step-title { font-size: 0.95rem; margin-bottom: 6px; }
  .fp-section .step-desc { font-size: 0.83rem; line-height: 1.55; }

  .fp-section .agents-grid { gap: clamp(10px, 1.5vh, 18px); }
  .fp-section .agent-card-inner { padding: clamp(14px, 2vh, 22px) clamp(12px, 1.4vw, 20px); gap: clamp(8px, 1.2vh, 14px); }
  .fp-section .agent-avatar { width: clamp(70px, 8.5vh, 96px); height: clamp(70px, 8.5vh, 96px); }
  .fp-section .agent-name { font-size: 1rem; }
  .fp-section .agent-desc { font-size: 0.78rem; line-height: 1.5; }
  .fp-section .btn-whatsapp { padding: 10px 14px; font-size: 0.84rem; }
  .fp-section .method-badge { font-size: 0.64rem; padding: 2px 6px; }
  .fp-section .featured-agent { transform: translateY(-4px); }

  .fp-section .faq-container { gap: 8px; }
  .fp-section .faq-question { padding: 14px 20px; font-size: 0.92rem; }
  .fp-section .faq-answer p { padding: 0 20px 14px; font-size: 0.86rem; }

  .fp-section.cta-banner { display: flex; flex-direction: column; justify-content: center; }
  .fp-section.cta-banner .cta-banner-dice { font-size: 2.8rem; margin-bottom: 12px; }
  .fp-section.cta-banner .cta-banner-title { font-size: clamp(1.6rem, 3.2vw, 2.6rem); margin-bottom: 12px; }
  .fp-section.cta-banner .cta-banner-desc { margin-bottom: 28px; font-size: 0.98rem; }

  .footer.fp-section { padding: clamp(36px, 5vh, 60px) 0 0; }
  .footer.fp-section .footer-grid { padding-bottom: clamp(28px, 4vh, 48px); gap: clamp(24px, 3vw, 48px); }
}

/* --- NAVIGATION DOTS --- */
.fp-dots {
  position: fixed; right: 22px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 900;
}
.fp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.28);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.fp-dot::after {
  content: attr(title);
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%);
  background: rgba(8,8,16,0.92);
  color: var(--text-secondary);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid var(--border);
}
.fp-dot:hover::after { opacity: 1; }
.fp-dot.active {
  background: var(--purple); border-color: var(--purple);
  box-shadow: 0 0 14px var(--purple-glow);
  transform: scale(1.5);
}
.fp-dot:hover:not(.active) {
  background: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.45);
  transform: scale(1.15);
}

/* --- OFFLINE STATUS --- */
.status-offline { color: #ef4444; border-color: rgba(239,68,68,0.4); }
.dot-red { background: #ef4444; box-shadow: 0 0 6px #ef4444; animation: none; }

/* --- MOBILE: disable full-page scroll --- */
@media (max-width: 767px) {
  .fp-dots { display: none; }
  .fp-section { min-height: auto; }
  section.fp-section { display: block; }
  .fp-section .container,
  .fp-section .hero-content { opacity: 1 !important; transform: none !important; }
}

/* --- GANADORES SECTION --- */
.ganadores-section { background: var(--bg-900); position: relative; overflow: hidden; }
.ganadores-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(245,158,11,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 80% 50%, rgba(139,92,246,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.ganadores-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Image side */
.ganadores-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ganadores-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(245,158,11,0.18) 0%, transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 8s ease-in-out infinite alternate;
}
.ganadores-img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(245,158,11,0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.ganadores-img:hover { transform: scale(1.018); }

/* Floating badges on image */
.ganadores-badge-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,8,16,0.88);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 14px;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: badge-float 3s ease-in-out infinite alternate;
}
.badge-f1 { bottom: 12%; left: -8%; animation-delay: 0s; }
.badge-f2 { top: 10%; right: -8%; animation-delay: 1.5s; }
@keyframes badge-float {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}
.badge-emoji { font-size: 1.6rem; }
.badge-amount { font-size: 1rem; font-weight: 800; color: var(--gold); line-height: 1; }
.badge-label  { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

/* Stats side */
.ganadores-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gstat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.25s;
}
.gstat-card:hover { border-color: rgba(245,158,11,0.3); transform: translateX(4px); }
.gstat-icon { font-size: 1.6rem; flex-shrink: 0; }
.gstat-num  { font-size: 1.3rem; font-weight: 800; color: var(--gold); line-height: 1; }
.gstat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }

.ganadores-cta-wrap {
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(245,158,11,0.06));
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 16px;
  padding: 20px;
  margin-top: 4px;
}
.ganadores-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 6px;
}
.ganadores-author {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}
.ganadores-btn { width: 100%; justify-content: center; }

/* Compact in fp mode */
@media (min-width: 768px) {
  .fp-section .ganadores-layout { gap: clamp(20px, 3vw, 40px); }
  .fp-section .gstat-card { padding: 12px 16px; }
  .fp-section .gstat-num  { font-size: 1.15rem; }
  .fp-section .ganadores-img { max-width: 440px; }
  .fp-section .ganadores-cta-wrap { padding: 16px; }
}

/* Responsive */
@media (max-width: 1024px) {
  .ganadores-layout { grid-template-columns: 1fr; gap: 32px; }
  .ganadores-img-wrap { justify-content: center; }
  .ganadores-img { max-width: 480px; }
  .badge-f1 { bottom: -12px; left: 0; }
  .badge-f2 { top: -12px; right: 0; }
}
@media (max-width: 600px) {
  .ganadores-badge-float { display: none; }
  .ganadores-img { max-width: 100%; }
}
