/* ============================================================
   SonicBoom Store Argentina — Landing
   ============================================================ */

:root {
  --bg: #05070d;
  --bg-2: #0a0f1a;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f1f5ff;
  --text-muted: #9aa4c7;
  --text-dim: #5c6685;

  /* 🔵 NUEVA BASE */
  --blue: #2563eb;
  --blue-2: #1d4ed8;

  /* 🔴 NUEVO ACENTO */
  --red: #f82b2b;
  --red-2: #dc2626;

  /* ⚠️ COMPATIBILIDAD (NO TOCAR TU CSS) */
  --violet: var(--blue);
  --violet-2: var(--blue-2);
  --cyan: var(--red);
  --cyan-2: var(--red-2);
  --pink: var(--red);

  /* WhatsApp */
  --green-wa: #25d366;
  --green-wa-2: #128c7e;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1180px;
  --container-narrow: 760px;

  /* Sombras adaptadas */
  --shadow-glow-violet: 0 0 40px rgba(37, 99, 235, 0.45);
  --shadow-glow-cyan: 0 0 40px rgba(239, 68, 68, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   Background FX
   ============================================================ */

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at top, rgba(139, 92, 246, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(34, 211, 238, 0.12), transparent 55%),
    linear-gradient(180deg, #050014 0%, #0a0220 60%, #050014 100%);
}

.bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.5;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: -2;
  pointer-events: none;
}

.bg-glow--violet {
  background: var(--violet);
  top: -150px;
  left: -150px;
  animation: drift 18s ease-in-out infinite alternate;
}

.bg-glow--cyan {
  background: var(--cyan);
  bottom: -200px;
  right: -150px;
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 60px); }
}

.bg-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  opacity: 0;
  animation: rise 10s linear infinite;
}

.bg-particles span:nth-child(1)  { left: 5%;  animation-delay: 0s;   animation-duration: 11s; }
.bg-particles span:nth-child(2)  { left: 12%; animation-delay: 2s;   animation-duration: 14s; background: var(--violet); box-shadow: 0 0 12px var(--violet); }
.bg-particles span:nth-child(3)  { left: 22%; animation-delay: 4s;   animation-duration: 9s;  }
.bg-particles span:nth-child(4)  { left: 32%; animation-delay: 1s;   animation-duration: 13s; background: var(--pink); box-shadow: 0 0 12px var(--pink); }
.bg-particles span:nth-child(5)  { left: 42%; animation-delay: 6s;   animation-duration: 12s; }
.bg-particles span:nth-child(6)  { left: 50%; animation-delay: 3s;   animation-duration: 15s; background: var(--violet); box-shadow: 0 0 12px var(--violet); }
.bg-particles span:nth-child(7)  { left: 60%; animation-delay: 5s;   animation-duration: 10s; }
.bg-particles span:nth-child(8)  { left: 68%; animation-delay: 0.5s; animation-duration: 13s; }
.bg-particles span:nth-child(9)  { left: 75%; animation-delay: 7s;   animation-duration: 11s; background: var(--pink); box-shadow: 0 0 12px var(--pink); }
.bg-particles span:nth-child(10) { left: 82%; animation-delay: 2.5s; animation-duration: 14s; background: var(--violet); box-shadow: 0 0 12px var(--violet); }
.bg-particles span:nth-child(11) { left: 88%; animation-delay: 4.5s; animation-duration: 9s;  }
.bg-particles span:nth-child(12) { left: 18%; animation-delay: 8s;   animation-duration: 16s; }
.bg-particles span:nth-child(13) { left: 38%; animation-delay: 9s;   animation-duration: 12s; }
.bg-particles span:nth-child(14) { left: 55%; animation-delay: 10s;  animation-duration: 15s; }
.bg-particles span:nth-child(15) { left: 92%; animation-delay: 6.5s; animation-duration: 13s; }

@keyframes rise {
  0% { transform: translateY(105vh) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(0.6); opacity: 0; }
}

/* ============================================================
   Layout helpers
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--alt {
  background:
    linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.04) 50%, transparent);
}

.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section__title {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 14px;
}

.section__subtitle {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
}

/* Eyebrow / badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #d8d1ff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow--center {
  margin: 0 auto;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Gradient text */
.grad-violet {
  background: linear-gradient(135deg, #c4b5fd 0%, var(--violet-2) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-cyan {
  background: linear-gradient(135deg, var(--cyan) 0%, #67e8f9 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Banner Membresías Digitales (desktop) / oculto en mobile
   ============================================================ */

.banner-membresias {
  display: none;
}

/* Desktop: ocultar el bloque mobile por defecto */
.hero__mobile-banner    { display: none; }
.hero__visual--desktop  { display: flex; }

/* Desktop: banner de fondo en el hero */
@media (min-width: 769px) {
  .hero {
    position: relative;
    overflow: visible;
  }

  .hero__mobile-banner {
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero__mobile-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .hero__mobile-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(5, 0, 20, 0.82) 0%,
      rgba(5, 0, 20, 0.55) 55%,
      rgba(5, 0, 20, 0.35) 100%
    );
  }

  .hero__mobile-logo-wrap { display: none; }

  .hero .container,
  .hero .platforms {
    position: relative;
    z-index: 1;
  }
}

/* Mobile: mostrar banner + logo, ocultar visual desktop */
@media (max-width: 768px) {
  .hero__mobile-banner {
    display: block;
    position: relative;
    width: 100%;
    height: 260px;
    overflow: visible;
    margin-bottom: 80px;
  }

  .hero__mobile-banner-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .hero__mobile-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(5, 0, 20, 0.2) 0%,
      rgba(5, 0, 20, 0.55) 100%
    );
  }

  /* Logo bajado hacia abajo del banner */
  .hero__mobile-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0px;
  }

  .hero__mobile-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    margin-bottom: -65px;
    box-shadow:
      0 0 30px rgba(139, 92, 246, 0.7),
      0 0 60px rgba(34, 211, 238, 0.4);
    animation: hero-float 6s ease-in-out infinite;
  }

  .hero__visual--desktop { display: none !important; }

  .hero__inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-top: 0 !important;
    gap: 0 !important;
  }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn--sm  { padding: 5px 10px;  font-size: 14px; }
.btn--lg  { padding: 16px 30px; font-size: 16px; border-radius: 14px; }
.btn--xl  { padding: 20px 10px; font-size: 18px; border-radius: 16px; }

.btn--primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-2) 50%, var(--pink) 100%);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.7);
  background-clip: padding-box;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(139, 92, 246, 0.9);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--violet);
  transform: translateY(-2px);
}

.btn--card {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  margin-top: auto;
}

.btn--card:hover {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border-color: transparent;
  box-shadow: 0 10px 24px -10px rgba(139, 92, 246, 0.7);
}

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 0, 20, 0.65);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 0, 20, 0.92);
  border-bottom-color: rgba(139, 92, 246, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.5), 0 0 24px rgba(34, 211, 238, 0.35);
  transition: transform 0.3s ease;
}

.brand:hover .brand__logo {
  transform: rotate(8deg) scale(1.05);
}

.brand__name {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: right 0.3s ease;
  border-radius: 2px;
}

.nav__links a:hover::after {
  right: 0;
}

@media (max-width: 768px) {
  .nav {
    padding: 22px 20px;
  }

  .brand__logo {
    width: 52px;
    height: 52px;
  }

  .brand__name {
    font-size: 20px;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 64px 0 32px;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.hero__title {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero__stats > div {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__stats span {
  color: var(--text-dim);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero visual: logo with rings */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__logo-wrap {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo {
  width: 75%;
  height: 75%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.6),
    0 0 80px rgba(34, 211, 238, 0.4),
    0 0 120px rgba(236, 72, 153, 0.3);
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}

.hero__ring--1 {
  border-color: rgba(139, 92, 246, 0.3);
  inset: 4%;
  animation: spin 22s linear infinite;
}

.hero__ring--2 {
  border-color: rgba(34, 211, 238, 0.25);
  inset: -4%;
  animation: spin 30s linear infinite reverse;
  border-style: dashed;
}

.hero__ring--3 {
  border-color: rgba(236, 72, 153, 0.18);
  inset: -12%;
  animation: spin 40s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Platforms strip */
.platforms {
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.platforms__label {
  text-align: center;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

.platforms__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.platform {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 8px;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.platform:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.platform--netflix    { color: #e50914; }
.platform--disney     { color: #67c1f5; font-family: "Inter", sans-serif; font-weight: 800; }
.platform--hbo        { color: #b388ff; }
.platform--crunchy    { color: #f47521; }
.platform--prime      { color: #00a8e1; font-family: "Inter", sans-serif; font-weight: 800; }
.platform--star       { color: #ffd700; }
.platform--paramount  { color: #ffffff; }
.platform--spotify    { color: #1ed760; font-family: "Inter", sans-serif; font-weight: 800; }

/* ============================================================
   Cards / Servicios
   ============================================================ */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 60px -20px rgba(139, 92, 246, 0.5);
}

.card:hover::before {
  background: linear-gradient(135deg, var(--violet), var(--cyan), var(--pink));
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #fff;
  margin-bottom: 6px;
}

.card[data-color="netflix"] .card__icon { background: linear-gradient(135deg, rgba(229,9,20,0.25), rgba(229,9,20,0.05)); border-color: rgba(229,9,20,0.4); color: #ff5560; }
.card[data-color="disney"]  .card__icon { background: linear-gradient(135deg, rgba(103,193,245,0.25), rgba(103,193,245,0.05)); border-color: rgba(103,193,245,0.4); color: #67c1f5; }
.card[data-color="hbo"]     .card__icon { background: linear-gradient(135deg, rgba(179,136,255,0.25), rgba(179,136,255,0.05)); border-color: rgba(179,136,255,0.4); color: #b388ff; }
.card[data-color="crunchy"] .card__icon { background: linear-gradient(135deg, rgba(244,117,33,0.25), rgba(244,117,33,0.05)); border-color: rgba(244,117,33,0.4); color: #f47521; }
.card[data-color="tv"]      .card__icon { background: linear-gradient(135deg, rgba(34,211,238,0.22), rgba(34,211,238,0.05)); border-color: rgba(34,211,238,0.4); color: var(--cyan); }
.card[data-color="net"]     .card__icon { background: linear-gradient(135deg, rgba(30,215,96,0.25), rgba(30,215,96,0.05)); border-color: rgba(30,215,96,0.4); color: #1ed760; }

.card__title {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.card__desc {
  color: var(--text-muted);
  font-size: 15px;
  flex: 1;
}

/* ============================================================
   Beneficios
   ============================================================ */

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 16px 40px -16px rgba(34, 211, 238, 0.4);
}

.benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px -8px rgba(139, 92, 246, 0.6);
}

.benefit h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ============================================================
   Steps / Cómo funciona
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
  counter-reset: step;
  position: relative;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

.step__num {
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 44px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ============================================================
   Testimonios
   ============================================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial blockquote {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-style: normal;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-family: "Orbitron", sans-serif;
}

.testimonial figcaption strong {
  display: block;
  font-size: 14px;
}

.testimonial figcaption span {
  color: var(--text-dim);
  font-size: 12px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq__item[open] {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.06);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--violet-2);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   PRICING FINAL PRO (FIX TOTAL)
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* CARD */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 15px 40px rgba(139,92,246,0.25);
}

/* HEADER */
.pricing-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 600;
  font-size: 15px;
}

/* LOGO */
.logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* BODY */
.pricing-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__body span {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: -6px;
  margin-bottom: 6px;
  display: block;
}

/* CADA LINEA (FORMATO NUEVO) */
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* PRECIO */
.price-line span {
  font-weight: 700;
  color: #22d3ee;
  font-size: 16px;
  white-space: nowrap; /* 🔥 CLAVE anti corte */
}

/* SEPARADOR */
.price-group {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* BOTÓN */
.btn--card {
  margin: 16px 20px 20px;
  width: calc(100% - 40px);
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #fff;
  transition: 0.3s;
}

.btn--card:hover {
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  border: none;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .price-line {
    font-size: 13px;
  }

  .price-line span {
    font-size: 15px;
  }
}

/* ============================================================
   Métodos de Pago
   ============================================================ */

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.payment-card {
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(139, 92, 246, 0.5);
  border-color: var(--violet);
}

.payment-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--violet-2);
}

.payment-card__icon--mp {
  background: rgba(0, 174, 240, 0.12);
  border-color: rgba(0, 174, 240, 0.25);
  color: #00aef0;
}

.payment-card__icon--cash {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.25);
  color: var(--cyan);
}

.payment-card__title {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.payment-card__desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .payment-methods {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CTA Final
   ============================================================ */

.cta-final {
  padding: 80px 0 120px;
}

.cta-final__box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 40px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at center, rgba(139, 92, 246, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(139, 92, 246, 0.5);
}

.cta-final__box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--violet), var(--cyan), var(--pink), var(--violet));
  background-size: 300% 300%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-flow 8s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.cta-final__title {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  margin: 18px 0 14px;
  letter-spacing: -0.01em;
}

.cta-final__desc {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-final__small {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 13px;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.04));
  padding: 56px 0 0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.4);
}

.site-footer__brand strong {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

.site-footer__brand span {
  color: var(--text-dim);
  font-size: 13px;
}

.site-footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--text);
}

/* The exact footer-bottom block requested by the user, made responsive */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  flex-wrap: wrap;
  text-align: left;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 0;
  word-wrap: break-word;
}

.footer-bottom a {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  flex-shrink: 0;
}

.footer-bottom a:hover {
  color: #67e8f9;
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
}

/* ============================================================
   WhatsApp floating button
   ============================================================ */

.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-wa), var(--green-wa-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.6), 0 0 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-fab:hover {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.8), 0 0 32px rgba(37, 211, 102, 0.4);
}

.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green-wa);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__logo, .hero__ring, .bg-glow, .bg-particles span, .wa-fab__pulse { animation: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding-bottom: 20px; }
  .hero__visual { order: -1; }
  .hero__logo-wrap { width: min(320px, 70%); }
  .cards, .benefits, .steps, .testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav { padding: 26px 20px; }
  .brand__name { font-size: 18px; }
  .brand__logo { width: 46px; height: 46px; }
  .hero { padding: 0 0 24px; }
  .hero__cta .btn { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__stats { gap: 24px; justify-content: space-between; }
  .hero__stats strong { font-size: 22px; }
  .platforms__grid { gap: 10px 18px; }
  .platform { font-size: 14px; padding: 6px 10px; }
  .cta-final__box { padding: 44px 24px; }
  .cta-final { padding: 60px 0 100px; }

  .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; padding: 20px; gap: 10px; }
  .footer-bottom p { text-align: center; }

  .wa-fab { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

@media (max-width: 560px) {
  .cards, .benefits, .steps, .testimonials { grid-template-columns: 1fr; }
  .hero__stats { gap: 16px; }
  .hero__stats > div { flex: 1 1 30%; }
  .hero__stats strong { font-size: 20px; }
  .hero__stats span { font-size: 11px; }
  .container { padding: 0 18px; }
}

/* =========================================
   FIX ALTURA IGUAL + SPOTIFY ORDENADO
   ========================================= */

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* hace que el contenido ocupe todo */
.pricing-card__body {
  flex: 1;
}

/* SPOTIFY en 2 columnas (solo desktop) */
.pricing-card:last-child .pricing-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

/* títulos de planes ocupan toda la fila */
.pricing-card:last-child .pricing-card__body > strong {
  grid-column: span 2;
  margin-top: 10px;
  font-size: 13px;
  color: var(--cyan);
}

/* textos más chicos para que no explote */
.pricing-card:last-child p {
  font-size: 13px;
}

.pricing-card:last-child span {
  font-size: 11px;
}

/* MOBILE: vuelve a 1 columna */
@media (max-width: 768px) {
  .pricing-card:last-child .pricing-card__body {
    display: flex;
    flex-direction: column;
  }
}

/* Texto secundario (pantallas) */
.pricing-card__body small {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

/* SPOTIFY ordenado */
.pricing-card--spotify .pricing-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.plan-block {
  background: rgba(255,255,255,0.03);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.plan-block span {
  display: block;
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 6px;
  font-weight: 600;
}

.plan-block p {
  font-size: 13px;
  margin: 2px 0;
}

/* Hace que todas las cards tengan altura pareja */
.pricing-card {
  height: 100%;
}

/* Evita que Spotify rompa el layout en mobile */
@media (max-width: 768px) {
  .pricing-card--spotify .pricing-card__body {
    grid-template-columns: 1fr;
  }
}

/* TAG DE PLAN (ANUAL / MENSUAL / MESES) */
.plan-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

/* separación entre bloques */
.plan-block {
  margin-bottom: 10px;
}

