 
/* Android fix */
@supports (-webkit-touch-callout: none) {
  body {
    overscroll-behavior: none;
  }
}
/* =====================================================
   HERO NETBOOK — FIX CORTE SUPERIOR
===================================================== */
@media (min-width: 1200px) and (max-width: 1440px) {

  .hero {
    height: 400px !important;
  }

  .hero-bg {
    
    background-position: right 60% !important;
    /* 👆 CLAVE: baja la imagen */
  }

/* =====================================================
   HERO — ESPACIADO MÁS COMPACTO (NETBOOK)
===================================================== */
@media (min-width: 1200px) and (max-width: 1440px) {

  /* EYEBROW → TITULO */
  .hero .hero-eyebrow {
    margin-bottom: 6px !important;
  }

  /* TITULO */
  .hero h1 {
    margin-bottom: 10px !important;
  }

  /* TITULO → SUBTITULO */
  .hero p {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
  }

  /* SUBTITULO → BOTONES */
  .hero .hero-actions {
    margin-top: 0 !important;
    gap: 14px !important;
  }

}
/* =====================================================
   HERO — POSICIÓN TEXTO (NETBOOK)
===================================================== */
@media (min-width: 1200px) and (max-width: 1440px) {

  .hero .hero-container {
    padding-left: 6vw !important;   /* 👉 mueve a la derecha */
  }

  .hero .hero-text {
    margin-top: 50px !important;    /* 👉 baja el bloque */
  }

}
/* =====================================================
   LO MÁS PEDIDO — ACHICAR TEXTO REAL (NETBOOK)
===================================================== */
@media (min-width: 1200px) and (max-width: 1440px) {

  /* HOT SERVICES */
  .services-live-head .sl-badge {
    font-size: 0.55rem !important;
    padding: 4px 10px !important;
  }

  /* LO MAS PEDIDO */
  .services-live-head h3 {
    font-size: 1.2rem !important;
    line-height: 1.15 !important;
  }

  /* 30 boosters */
  .services-live-head .boosters-live {
    font-size: 0.75rem !important;
  }
}
/* =====================================================
   LO MAS PEDIDO — MICRO DESPLAZAMIENTO REAL (NETBOOK)
===================================================== */
@media (min-width: 1200px) and (max-width: 1440px) {

  .services-live-head h3 {
    transform: translateX(10px);
  }

}
/* =====================================================
   LO MAS PEDIDO + 30 BOOSTERS — MICRO MOVE DERECHA
===================================================== */
@media (min-width: 1200px) and (max-width: 1440px) {

  .services-live-head h3,
  .services-live-head .boosters-live {
    transform: translateX(10px);
  }

}











  
}
.section-header {
    text-align: center;
    margin: 80px auto 40px;
}

.pm-hidden {
    display: none !important;
}

.calc-mode-section {
    display: none;
    width: 100%;
}

.calc-mode-section.is-active {
    display: flex;
    width: 100%;
    gap: 24px;
}

#cupon-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

#cupon-input {
    -webkit-tap-highlight-color: transparent !important;
    background: transparent !important;
}

* {
  backdrop-filter: none !important;
}  
/* OCULTAR INMORTAL EN RANGO ACTUAL */
#rank-actual-liga button[data-rank="immortal"],
#rank-actual-liga button[data-rank="immortal"].selected {
  display: none !important;
}

 /* Ocultar bloque fantasma */
body.home-page .valo-calc,
body.home-page .calc-col,
body.home-page .order-card,
body.home-page .order-options,
body.home-page .coupon-block {
  display: none !important;
}

body.home-page #rr-actual-select,
body.home-page #rr-win-select {
  display: none !important;
}

/* PROMO STRIP — FULL BLEED */
.promo-strip-fixed {
  position: fixed;
  left: 0;
  width: 100vw;
  z-index: 90;

  background: linear-gradient(
    180deg,
    rgba(14, 16, 32, 0.85),
    rgba(14, 16, 32, 0.55)
  );

  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Contenido centrado pero invisible */
.promo-strip-inner {
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.85);
}

/* Badge */
.promo-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;

  background: rgba(108, 86, 255, 0.22);
  color: #cfc9ff;
}

/* Código */
.promo-text strong {
  color: #ffffff;
  font-weight: 700;
}


















/* ===============================
   PROMO DESCUENTO — HERO CHIP
   MINIMAL · NO EMPUJA NADA
================================ */

.hero {
  position: relative;
}

/* contenedor posicionador */
.promo-hero {
  position: absolute;
  top: 90px !important;                /* 👈 MÁS ABAJO */
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  pointer-events: none;
}
/* ==========================
   CHIP/POPUP PREMIUM GLASS
========================== */
.promo-pill {
  position: fixed;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 28px;
  border-radius: 24px;

  background: rgba(18, 16, 32, 0.6); /* traslúcido */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  
  border: 1px solid rgba(155, 92, 255, 0.3);
  box-shadow: 0 12px 28px rgba(155, 92, 255, 0.137), inset 0 0 12px rgba(155, 92, 255, 0.007);

  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 4px rgba(155,92,255,0.3);
  white-space: nowrap;

  cursor: default;
  z-index: 9999;

  /* animación sutil de rebote al aparecer */
  animation: popupFloat 1.2s ease forwards;
  opacity: 0;
}

/* Icono */
.promo-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #a97bff, #6f4cff);
  
  transition: transform 0.3s ease;
}

.promo-icon svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.promo-pill:hover .promo-icon {
  transform: rotate(15deg) scale(1.1);
}

/* Texto */
.promo-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 8px rgba(155,92,255,0.5);
}

.promo-text span {
  font-size: 14px;
  font-weight: 600;
  color: #d8c9ff;
  text-shadow: 0 0 4px rgba(155,92,255,0.3);
}

/* Botón cerrar */
.promo-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  transition: color 0.2s ease;
}

.promo-close:hover {
  color: #fff;
}

/* Animación popup flotante */
@keyframes popupFloat {
  0% {
    transform: translateX(-50%) translateY(-20px);
    opacity: 0;
  }
  60% {
    transform: translateX(-50%) translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .promo-pill {
    padding: 12px 20px;
    gap: 8px;
    font-size: 13px;
    top: 15px;
  }

  .promo-icon {
    width: 24px;
    height: 24px;
  }

  .promo-icon svg {
    width: 12px;
    height: 12px;
  }

  .promo-text strong,
  .promo-text span {
    font-size: 13px;
  }
}


/* =====================================================
   1. HERO / SECCION PRINCIPAL
===================================================== */
 
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  height: 680px;                 /* tamaño respetado */
  overflow: hidden;
  background: #0b0b14;
}

/* IMAGEN DE BANNER */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/home.png"); /* TU IMAGEN */
  background-size: cover;
  background-position: right center;
  z-index: 1;
}


/* CONTENEDOR CENTRADO */
.hero-container {
  position: relative;
  z-index: 2;

  max-width: 1500px;        /* 👈 IGUAL que el resto */
  margin: 0 auto;
  padding-left: 20px;      /* 👈 MISMO margen */
  padding-right: 20px;

  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 520px;
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #8b7cff;
  margin-bottom: 14px;
}

.hero-text h1 {
  font-size: 3.8rem;
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-text h1 span {
  background: linear-gradient(
    180deg,
    #ffffff 0%,    /* luz fuerte */
    #cfc9ff 18%,   /* transición */
    #6c56ff 55%,   /* color base */
    #4a3ac7 100%   /* sombra */
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.hero-text p {
  font-size: 1rem;max-width: 520px;
  text-wrap: balance;
  line-height: 1.6;
  color: #d8d8ff;
  margin-bottom: 36px;
}

/* ACCIONES */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* ================================
   MOBILE
================================ */

 @media (max-width: 768px) {

  .hero {
    height: auto;
    min-height: 100svh; /* FIX real para mobile moderno */
    padding-top: 80px;
    padding-bottom: 48px;
  }

  .hero-bg {
    background-image: url("/images/mobile.png");
    background-size: cover;
    background-position: center;
  }

  /* Overlay correcto */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
     
    z-index: 1;
  }

  .hero-container {
    height: auto;
    align-items: center;   /* ← CLAVE */
  }

  .hero-text {
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions button {
    width: 100%;
  }

}


/* =====================================================
   2. BOTONES ELEGI TU JUEGO Y VER PROCESO
===================================================== */

/* Boton elegi tu juego */
.cta-btn {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg,#5a4bff 0%,#6c56ff 35%,#8a6bff 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(108, 63, 255, 0.35);
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shimmer-oneway 3.5s infinite ease-in-out;
}

@keyframes shimmer-oneway {
  0% { left: -60%; opacity: 0; }
  10% { opacity: 1; }
  45% { left: 120%; opacity: 0.8; }
  60% { opacity: 0; }
  100% { left: -60%; opacity: 0; }
}

/* Botón ver proceso */
.cta-round {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #c9c9d7;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  transition: color .25s ease;
  font-family: 'Inter', sans-serif;
}

.cta-round .cta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.6px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-round .cta-icon::before {
  content: "";
  width: 0; height: 0;
  border-left: 8px solid #4dd5ff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.cta-round .cta-icon::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.8px solid rgba(150,150,160,0.55);
  opacity: 0;
  transform: scale(0.25);
  animation: greyRipple 1.9s ease-out infinite;
  pointer-events: none;
}

@keyframes greyRipple {
  0%   { opacity: 0; transform: scale(0.25); }
  20%  { opacity: 0.6; }
  70%  { opacity: 0.15; }
  100% { opacity: 0; transform: scale(1.45); }
}


/* ================================
   4. separador
================================ */
 
.services-live {
  width: 100vw;
  
  margin-left: calc(50% - 50vw);
  padding: 30px 0 20px;
  background:
    radial-gradient(70% 120% at 30% 0%, rgba(110,70,255,0.18), transparent 60%),
    linear-gradient(180deg, #0d1020, #090b16);
  box-shadow:
    inset 0 -1px 0 rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.services-live-head.popup{
  position: relative;
  padding-top: 28px; 
}

.services-live-head.popup .sl-badge{
  position: absolute;
  top: 0;
  left: 27%;
  transform: translate(-50%, -10px); 
  margin: 0;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #ff844b;
  background: rgba(255, 147, 75, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 132, 75, 0.25),
    0 8px 24px rgba(255, 147, 75, 0.15);
  backdrop-filter: blur(6px);
}

.services-live-container {
  max-width: 1500px;  
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}
 
.services-live-head {
  display: flex;
  flex-direction: column;
  gap: 4px; 
  white-space: nowrap;
}

.sl-kicker {
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ff4b4b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sl-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4b4b;
}

.services-live-head h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.services-live-head p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* fades laterales */
.services-live-track::before,
.services-live-track::after {
  content: "";
  position: absolute;
  top: 0;
  width: 220px;        
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
 
.services-live-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0; 
  animation: slScroll 70s linear infinite;
  will-change: transform;
}
 
.boosters-live {
  position: relative;
  padding-left: 16px;
  font-size: 0.95rem;
  color: #cfd3ff;
}

.boosters-live::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3cff7a;
  transform: translateY(-50%);
  box-shadow:
    0 0 6px rgba(60, 255, 122, 0.8),
    0 0 14px rgba(60, 255, 122, 0.6);
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
  0% {
    opacity: 0.3;
    transform: translateY(-50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  100% {
    opacity: 0.3;
    transform: translateY(-50%) scale(0.8);
  }
}

.sl-card {
  position: relative; 
  height: 72px;          /* antes 58px */
  min-width: 320px;     /* antes 260px */
  gap: 14px;
  padding: 0 18px;      /* más aire */
  border-radius: 18px;  /* más premium */
  display: flex;
  align-items: center;
  border-radius: 18px;
 background: linear-gradient( 145deg, rgba(98, 57, 194, 0.363), rgba(160, 128, 79, 0.678) );
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* DIFUMINADO */
.services-live-track {
  position: relative;
  overflow: hidden;
  padding: 16px 0;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 6%,     /* ⬅️ arranca antes */
    black 90%,
    transparent 100%
  );

  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 6%,
    black 90%,
    transparent 100%
  );
}


.sl-card:hover {
  transform: translateY(-2px);
   
}

.sl-card img {
  
  width: 50px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
}

.sl-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sl-text strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sl-text span {
  font-size: 0.72rem;
  color: #c5c5c5;
  line-height: 1.1;
}

/* tag */
.sl-tag {
  position: absolute;
  right: 10px;
  top: -10px;

  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;

  padding: 4px 9px;
  border-radius: 999px;

  color: #ff844b;
  background: rgba(131, 75, 30, 0.493);
  box-shadow: inset 0 0 0 1px rgba(255, 179, 65, 0.18);
}

@keyframes slScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--loop-width))); }
}
 
/* ==========================================================
   SERVICES LIVE — MOBILE ULTRA COMPACT
========================================================== */

@media (max-width: 768px){
 
  .services-live-desktop{
    display: none;
  }

  .services-live-mobile{
    display: block;
    padding: 0 14px;
  }
 
  .slm-bar{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    height: 34px;                 /* 👈 MUY BAJO */
    margin-bottom: 6px;
  }

  /* HOT SERVICES — centrado */
  .slm-bar .sl-badge{
    grid-column: 2;
    justify-self: center;

    padding: 3px 10px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;

    color: #ff844b;
    background: rgba(255,132,75,.12);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255,132,75,.25);
  }

  /* ocultamos título largo */
  .slm-title{
    display: none;
  }

  /* 30 boosters — derecha */
  .slm-boosters{
    grid-column: 3;
    justify-self: end;

    position: relative;
    padding-left: 12px;

    font-size: 0.65rem;
    font-weight: 500;
    color: #cfd3ff;
  }

  /* punto parpadeante */
  .slm-boosters::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3cff7a;

    transform: translateY(-50%);
    box-shadow: 0 0 6px rgba(60,255,122,.8);
    animation: slmPulse 1.6s ease-in-out infinite;
  }

  @keyframes slmPulse{
    0%{ opacity:.3 }
    50%{ opacity:1 }
    100%{ opacity:.3 }
  }
 
@media (max-width: 768px){
 
  .services-live-desktop,
  .services-live-track,
  .services-live-inner{
    display: none !important;
  }

  /* matar masks / fades heredados */
  .services-live-track::before,
  .services-live-track::after{
    display: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
 
  .services-live{
    position: relative;
    overflow: visible;
    padding: 28px 0 20px;
  }

  .services-live-mobile{
    display: block;
    position: relative;
    z-index: 2;
    padding: 0 14px;
  }
 
  .slm-bar{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    height: 32px;
    margin-bottom: 8px;
  }

  /* HOT SERVICES centrado */
  .slm-bar .sl-badge{
    grid-column: 2;

    padding: 3px 10px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;

    color: #ff844b;
    background: rgba(255,132,75,.12);
    border-radius: 999px;

    box-shadow: inset 0 0 0 1px rgba(255,132,75,.25);
  }

  /* ocultamos título largo */
  .slm-title{
    display: none;
  }

  /* 30 boosters a la derecha */
  .slm-boosters{
    grid-column: 3;
    justify-self: end;

    position: relative;
    padding-left: 10px;

    font-size: 0.65rem;
    color: #cfd3ff;
    white-space: nowrap;
  }

  .slm-boosters::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3cff7a;

    transform: translateY(-50%);
    box-shadow: 0 0 6px rgba(60,255,122,.8);
    animation: slmPulse 1.6s ease-in-out infinite;
  }

  @keyframes slmPulse{
    0%{ opacity:.3 }
    50%{ opacity:1 }
    100%{ opacity:.3 }
  }
  
.slm-cards{
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 10px;          /* separación real */
  width: 100%;

  position: static;  /* 👈 nada flotante */
}
 
.slm-cards .sl-card{
  display: flex;
  align-items: center;
  gap: 6px;

 
  height: 38px;

  padding: 0 8px;

  flex-shrink: 0;    /* 👈 CLAVE ABSOLUTA */

  position: static;  /* 👈 evita stacking */

  background: rgba(20,24,43,.9);
  border-radius: 8px;

  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
 
.slm-cards .sl-card img{
  width: 22px;
  height: 18px;
  border-radius: 5px;
  flex-shrink: 0;
}
 
.slm-cards .sl-text{
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
}

.slm-cards .sl-text strong{
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slm-cards .sl-text span{
  font-size: 0.55rem;
  color: rgba(255,255,255,.55);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px){
  .slm-cards > .sl-card{
    width: 96px !important;
    min-width: 170px !important;
    max-width: 96px !important;
  }
}
.slm-cards .sl-card{
  position: relative; /* 👈 CLAVE */
}
 







 
/* =====================================================
   SERVICES LIVE — MOBILE COLORS FIX
   VERSION VIOLETA (CARD + TEXTO + TAG)
===================================================== */
@media (max-width: 768px) {

  /* ===============================
     CARD
  ================================ */
  .services-live-mobile .sl-card {
    background: linear-gradient(
      180deg,
      rgba(164, 69, 241, 0.18),
      rgba(151, 60, 255, 0.08)
    );
    border: 1px solid rgba(24, 11, 59, 0.747);
    
  }

  /* ===============================
     TEXTO
  ================================ */
  .services-live-mobile .sl-card strong {
    color: #9a5bff; /* violeta principal */
  }

  .services-live-mobile .sl-card span {
    color: rgba(255,255,255,0.85);
  }

  /* ===============================
     TAG (MUY SOLICITADO / FRECUENTE)
  ================================ */
  .services-live-mobile .sl-tag {
    background: linear-gradient(
      180deg,
      #c547ff,
      #7b3fe4
    );

    color: #f7f4ff;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .3px;

    padding: 4px 10px;
    border-radius: 999px;

    box-shadow:
      0 0 12px rgba(6, 4, 8, 0.55);

    border: none;
    white-space: nowrap;
  }

}
/* =====================================================
   SERVICES LIVE — TAGS MOBILE (VIOLETA)
   SOLO "FRECUENTE" / "MUY SOLICITADO"
===================================================== */
@media (max-width: 768px) {

  .services-live-mobile .sl-tag {
    background: linear-gradient(
      180deg,
      #e27a18ec,
      #c0815cce
    ) !important;

    color: #ffffff !important;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .3px;

    padding: 4px 10px;
    border-radius: 999px;
 

    border: none;
    white-space: nowrap;
  }

}







@media (max-width: 768px){
 
  .slm-bar{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: 100%;
    margin-bottom: 8px;
  }
 
  .slm-bar .sl-badge,
  .slm-boosters{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 4px 14px;          /* 👈 MISMO TAMAÑO */
    height: 24px;               /* 👈 MISMA ALTURA */

    border-radius: 999px;

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.1em;

    white-space: nowrap;
  }
 
  .slm-bar .sl-badge{
    color: #ff9b66;
    background: rgba(255,155,102,.14);

    box-shadow:
      inset 0 0 0 1px rgba(255,155,102,.35),
      0 4px 14px rgba(255,155,102,.18);
  }
 
  .slm-boosters{
  color: #7ddf9a; /* ✅ verde suave premium */
  background: rgba(125,223,154,.14);

  box-shadow:
    inset 0 0 0 1px rgba(125,223,154,.35),
    0 4px 14px rgba(125,223,154,.22);
}
 
  .slm-boosters::before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;

  background: #7ddf9a;

  /* 👇 CLAVE: que no empuje ni se salga */
  flex-shrink: 0;

  box-shadow:
    0 0 6px rgba(125,223,154,.9),
    0 0 14px rgba(125,223,154,.6);

  animation: boostersPulse 1.6s ease-in-out infinite;
}
 
  @keyframes boostersPulse{
    0%   { opacity: .35; }
    50%  { opacity: 1; }
    100% { opacity: .35; }
  }
}
 
.slm-cards .sl-tag{
  margin-left: auto;

  font-size: 0.45rem;
  font-weight: 700;

  padding: 2px 5px;
  border-radius: 999px;

  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
}
 
/* =====================================================
   SERVICES LIVE — MOBILE CARD TRANSITION (CHILL)
===================================================== */
@media (max-width: 768px){

  .slm-cards .sl-card{
    transition:
      opacity .45s ease,
      transform .55s cubic-bezier(.22,1,.36,1);
  }

  /* estado normal */
  .slm-cards .sl-card{
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* salida */
  .slm-cards.is-exit .sl-card{
    opacity: 0;
    transform: translateY(6px) scale(0.98);
  }

  /* entrada (opcional si usás is-enter) */
  .slm-cards.is-enter .sl-card{
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  .slm-cards.is-enter-active .sl-card{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

}}

/* ================================
   3. ARROW
================================ */

.scroll-double {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 24px auto 18px;
}

.scroll-double span {
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: arrowFade 1.6s infinite;
}

.scroll-double span:nth-child(2) {
  animation-delay: .2s;
}

@keyframes arrowFade {
  0% { opacity: 0.2; }
  50% { opacity: 0.8; }
  100% { opacity: 0.2; }
}

/* ================================
   4.SECCION JUEGOS
================================ */

.games-section {
  padding: 0px 0;  
}

.games-grid {
  max-width: 1400px;
  margin: 30px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ================================
   GAME CARD
================================ */

.game-card {
   background: linear-gradient(135deg, #18073f, #4e3891);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
 margin-bottom: 8px;
 margin-left: 8px;
  color: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  border: 1px solid #2b2b2b;
}
  
.game-card:hover {
  transform: translateY(-6px);
  border-image: linear-gradient(45deg, #f0dede, #723aa0) 1;
  border: 2px solid transparent;
   
  /* borde con gradiente usando background + padding */
  background: linear-gradient(#593b7e, #210b3b) padding-box, /* color de fondo interno */
              linear-gradient(45deg, #744ebb, #302446) border-box; /* borde con gradiente */
 
}

/* IMAGEN SUPERIOR */
.card-image {
  position: relative;
  height: 170px;
  background: linear-gradient(135deg, #2f5cff, #6c56ff);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CUERPO */
.card-body {
  padding: 26px 30px 30px;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #cfd2ff;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .games-grid {
     
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 150px;
  }
}

/* =====================================================
   6. CARACTERISTICAS
===================================================== */
.feature-card,
.feature-card:hover,
.feature-card::after,
.feature-card::before {
    box-shadow: none !important;
    filter: none !important;
}

.features-block-wrapper {
    position: relative; 
    padding: 120px 0;
    margin-top: 80px;
    overflow: visible; 
}

.features-block-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw; 
    height: 100%;
    transform: translateX(-50%);
    z-index: -1;
    background: radial-gradient(circle at 70% 30%,  rgba(63, 29, 119, 0.65) 0%, #0a0a15 45%, #0a0a15 100%  );
}

.features-inner{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 21px; /* margen desktop real */
  box-sizing: border-box;
}

.features-section{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.features-container {
    max-width: 500px;
    margin-top: 70px;
}

.features-subtitle {
    color: #e5dcff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    background: rgba(153, 90, 255, 0.18);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 10px;
}

.features-subtitle:hover {
    transform: translateY(-1px);
}

.features-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.features-description {
    color: #d5d2d2;
    line-height: 1.65;
    font-size: 1rem;
    max-width: 80%;
    margin-bottom: 32px;
}

.features-descriptionmobile {
    color: #d5d2d2;
    line-height: 1.65;
    font-size: 1rem;
    max-width: 95%;
    margin-bottom: 22px;
}

/* Ocultar una descripcion en mobile y otra en pc */
.features-descriptionmobile {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .features-description {
    display: none;
  }

  .features-descriptionmobile {
    display: block;
  }
  /* espacio entre features y calculadora */
 
  .valo-calc {
    margin-bottom: 50px;
  }
}

.features-btn {
    display: inline-block;
    padding: 12px 34px;
    background: linear-gradient(90deg, #a04dff, #8d47ff);
    color: #fff;
    border-radius: 26px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.25s;
}

.features-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 40px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 240px;   
    height: 100%;       
    box-sizing: border-box;
    position: relative;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;      
    margin-bottom: 16px;
}

.feature-icon img {
    width: 40px;
    height: 40px;      
    object-fit: contain;
}

.feature-card h3 {
    margin: 0 0 12px 0; 
    line-height: 1.2;
}

.feature-card p {
    margin: 0;         
    padding: 0;
    color: #cfc9c9;
    font-size: .95rem;
    line-height: 1.55;
}

.feature-card {
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color .25s ease;
    border: 1px solid transparent;
}

/* Click PC */
.feature-card:hover {
    transform: scale(1.03); 
    background: rgba(24, 4, 99, 0.06); 
    box-shadow: 0 0 18px rgba(132, 0, 255, 0.25); 
}

/* Click PC */
.feature-card:hover::after {
    border-color: rgba(138, 58, 255, 0.7);
}

.feature-icon img {
    transition: transform .25s ease, opacity .25s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.15);
    opacity: 1;
}

/* Ajustes contenedor y cards */
@media (max-width: 1100px) {
    .features-section {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .features-container {
        text-align: center;
    }

    .features-container .features-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        width: 100%;
        max-width: 600px;
        grid-template-columns: 1fr;
    }
}

/* Distancia entre bloque superior mobile */
@media (max-width: 768px) {
  .features-block-wrapper {
    padding-top: 100px;   
    padding-bottom: 30px;
    margin-top: 0;      
  }

 /* General */
  .features-inner{
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .features-section{
    flex-direction: column;
    gap: 36px;
  }

  .features-container{
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;   
    text-align: center;   
  }

  .features-subtitle{
    margin: 0 0 10px 0;   
    font-size: 0.7rem;
  }

  .features-title{
    margin: 0 0 14px 0;
    font-size: 2.3rem;
  }

  .features-description{
    max-width: 38ch;      
    margin: 0 auto 22px;  
    text-align: center;
  }

  .features-btn{
    margin: 0 auto;  
    padding-left: 60px;
    padding-right: 60px;
  }

  .features-grid{
    width: 100%;
  }
  
  /* Animacion scroll */
  .feature-card {
    transform: scale(1);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  }

  .feature-card.is-active {
    transform: scale(1.03);
    background: rgba(24, 4, 99, 0.06);
    box-shadow: 0 0 18px rgba(132, 0, 255, 0.25);
  }

  .feature-card.is-active::after {
    border-color: rgba(138, 58, 255, 0.7);
  }

  .feature-card.is-active .feature-icon img {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Anular click de cards en mobile para efecto scroll */
  @media (max-width: 768px) {
  .feature-card {
    pointer-events: none;
  }
}


/* ================================
   7. STEPS / PASOS
================================ */
.cs2-steps-section,
.cs2-steps-container,
.steps-section,
.steps-grid {
overflow: visible !important;
}

.steps-header {
  text-align: center;
  margin-bottom: 80px;
}

.steps-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

.steps-header p {
  margin-top: 10px;
  color: #8e93c7;
  font-size: 16px;
}

.section-title {
    color: #d6d6d6;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.section-sub {
    color: #e5dcff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    background: rgba(153, 90, 255, 0.18);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 10px;
}

.section-sub:hover {
    transform: translateY(-1px);
}

/*===== GRID =====*/
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/*===== CARDS =====*/
.step-card {
  position: relative;
  height: 520px;
  padding: 42px 34px 34px;
  border-radius: 18px;
  background: linear-gradient(180deg, #232540, #232540);
  border: 1px solid rgba(255,255,255,.08);
  overflow: visible;
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}

.step-card {
  display: flex;
  flex-direction: column;
}

.step-content {
  
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-card {
  position: relative;
  transition: border-color .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card:hover {
  border-color: rgba(130, 110, 255, 0.65);
}

/*===== STEP NUMERO =====*/
.step-number {
  position: absolute;
  top:  -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 27px;
  color: #fff;
}

.step-number.purple { background: linear-gradient(135deg, #7b5bff 0%, #5c3cff 100%); }
.step-number.green  {  background: linear-gradient(135deg, #31d97c 0%, #1ea95e 100%); }
.step-number.blue   { background: linear-gradient(135deg, #45c3ff 0%, #1a8fff 100%);}

.step-card h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 20px;
  color: #fff;
}

.step-desc {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #c7c7e6b0;
}

/*===== VIDEOS=====*/
.step-media {
  position: relative;
  border-radius: 10px;
  background: linear-gradient(180deg, #161a33, #0e1023);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: auto;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -5px;
  height: 290px;
}

.step-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(29, 27, 50, 0.123) 55%,#141325a6 100%
  );
}

.step-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*===== MOUSE LIGHT EFECT =====*/
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180px circle at var(--x) var(--y),rgba(130,110,255,0.18),transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
  z-index: 3;
}

.step-card:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .steps-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 36px;  
    padding: 0 18px 40px;     
  }
  
  .step-card {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 46px !important;
  }

  /* Contenedor del video */
  @media (max-width: 768px) {
  .step-media {
    height: auto !important;
    margin-top: 20px !important;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    overflow: hidden;
    position: relative;
  }

  .section-title {
    font-size: 2.0rem;
}
.section-sub {
    font-size: 0.7rem;
}

  .step-media video,
  .step-media img {
    display: block !important;         
    margin: 0 auto !important;        
    width: auto !important;            
    max-width: 100% !important;       
    height: auto !important;
    object-fit: contain !important;
  }
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180px circle at var(--x, 50%) var(--y, 50%), rgba(130,110,255,0), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.step-card {
  transition: border-color .4s ease, box-shadow .4s ease;
}
.step-card.active {
  border-color: rgba(130,110,255,0.55);
}
.step-card.active::before {
  opacity: 1;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at 50% 40%, rgba(130,110,255,0.20), transparent 70%);
  opacity: 0;
  transition: opacity .45s ease-out, transform .45s ease-out;
  pointer-events: none;
  z-index: 3;
}
.step-card.active::before {
  opacity: 1;
  transform: scale(1.03);}
}
}

/* =====================================================
   8. ABOUT / NOSOTROS Y METRICAS
===================================================== */
.about-stats-block {
  position: relative;
  padding: 120px 0;
  margin-top: 90px;
  overflow: visible;
}

.about-stats-block::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:100vw;
  height:100%;
  transform:translateX(-50%);
  z-index:-1;
  background: radial-gradient(circle at 70% 30%,  rgba(63, 29, 119, 0.65) 0%,#0a0a15 45%, #0a0a15 100% );
}

.about-stats-inner{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;   
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.about-text h2{
  color:#fff;
  font-size: clamp(44px, 4.2vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 22px;
}

.about-text p{
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 14px;
  max-width: 560px;
}

.about-cta{
  display:inline-flex;
  margin-top: 25px;
  padding: 12px 22px;
  border-radius: 999px;
  color:#fff;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, #8b7cff, #5b47ff);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 35px rgba(123,97,255,.35);
}

.stats-container{
  display:grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 24px;
}

.stat-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;

  padding: 32px 24px;
  min-height: 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: relative;
  box-sizing: border-box;
  overflow: hidden;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.stat-card::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color .25s ease;
}

.stat-card:hover{
  transform: scale(1.035);
  background: rgba(24, 4, 99, 0.06);
}

.stat-card:hover::after{
  border-color: rgba(138, 58, 255, 0.65);
}

.stat-number{
  color: #8b7cff;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.6px;
  margin: 0 0 6px;
}

.stat-label{
  margin: 0;
  color: #cfc9c9;
  font-size: .95rem;
  line-height: 1.4;
}

.stat-card{
  opacity: 0;
  transform: translateY(14px);
  animation: statIn .7s ease forwards;
}
.stat-card:nth-child(1){ animation-delay: .05s; }
.stat-card:nth-child(2){ animation-delay: .12s; }
.stat-card:nth-child(3){ animation-delay: .18s; }
.stat-card:nth-child(4){ animation-delay: .25s; }

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

/* Ocultar ''ver mas'' en PC */
.about-more-btn{
  display: none;
}

@media (max-width: 768px){

  /* ===== CONTENEDOR GENERAL ===== */
  .about-stats-block{
    padding: 80px 0;
    margin-top: 0;
  }

  .about-stats-inner{
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: stretch;
  }

  /* ===== TEXTO ===== */
  .about-text{
    width: 100%;
    max-width: none;
    padding: 0;
    text-align: center;
    margin-bottom: 0 !important;
  }

  .about-text h2.about-title{
    margin: 0 0 24px;
    font-size: 2.4rem;
  }

  .about-title span{
    display: block;
    white-space: nowrap;
  }

  .about-p{
    color: rgba(255,255,255,.74);
    font-size: 15px;
    line-height: 1.72;
    margin: 0 0 14px;
  }

  .about-p--lead{
    max-width: 38ch;
    margin: 0 auto 12px;
    text-align: left;
  }

  /* ===== VER MÁS ===== */
  .about-more{
    max-width: 38ch;
    margin: 0 auto 10px;
    text-align: left;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);

    transition:
      max-height .35s ease,
      opacity .25s ease,
      transform .25s ease;
  }

  .about-text.is-open .about-more{
    max-height: 340px;
    opacity: 1;
    transform: translateY(0);
  }

  .about-more-btn{
    margin-left: 6px;
    padding: 2px 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: #8b7cff;

    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
   .stats-container{
    width: 100%;
    max-width: 420px;
    margin: 12px auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

   .stat-card{
    transform: scale(1.035);
background: rgba(24, 4, 99, 0.06);
border-color: rgba(137, 58, 255, 0.322);
    box-shadow: none;
    padding: 14px 12px; 
    border-radius: 14px;
    transition: opacity .3s ease, transform .3s ease;
    min-height: auto;
    opacity: 0;
    transform: translateY(6px);
}

   .stat-number{
    font-size: 26px;  
    line-height: 1.1;
    margin-bottom: 2px;
  }

  .stat-label{
    font-size: 12px;
    opacity: .65;
    line-height: 1.25;
  }

  .stat-card.is-visible{
    opacity: 1;
    transform: translateY(0);
  }

  .stat-card:first-child{
    background: rgba(168,85,247,0.08);
  }

  .stat-card:first-child .stat-number{
    font-size: 30px;
    color: #d6caff;
  }

  .stat-card:first-child .stat-label{
    opacity: .8;
  }

  .stat-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius: inherit;
    background: linear-gradient(
      120deg,
      transparent 25%,
      rgba(160,140,255,.22) 50%,
      transparent 75%
    );
    opacity: 0;
    transform: translateX(-70%);
    transition:
      opacity .5s ease,
      transform .9s ease;
    pointer-events:none;
  }

  .stat-card.is-visible{
    opacity: 1;
    transform: translateY(0);
  }

  .stat-card.is-visible::before{
    opacity: 1;
    transform: translateX(70%);
  }

  .about-cta{
    display: none;
  }
}

/* =====================================================
   9. REVIEWS
===================================================== */
.reviews-section {
    width: 100%;
    margin: 80px auto;
    padding: 0 20px;
}

.reviews-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.reviews-subtitle {
    color: #946edb;
    margin-bottom: 40px;
}

.reviews-track {
    display: flex;
    gap: 32px;
    will-change: transform; 
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.review-card {
    min-width: 410px;
    background: linear-gradient( 145deg, rgba(98, 57, 194, 0.363), rgba(131, 101, 44, 0.555) );
    border-radius: 18px;
    padding: 28px 26px;
    border: 1px solid rgba(160,140,255,.65);
    color: #fff;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
}
 

.review-card{
  position: relative;
}

.review-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color .3s ease;
  pointer-events:none;
}
 
.review-card:hover::after{
  border-color: rgba(160,140,255,.65);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 14px 0 16px 0;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #291946;
    color: #895cc5;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.review-info {
    flex: 1;
    margin-left: 6px;
}

.review-name {
    font-size: 17px;
    font-weight: 600;
    display: block;
}

.review-verified {
    font-size: 12px;
    opacity: 0.7;
    margin-top: -2px;
}

.review-rating {
    background: #43bd5b4b;
    color: #fff;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.review-text {
    font-size: 15px;
    line-height: 1.45;
    color: #d7d7d7;
    margin: 10px 0 14px;
    min-height: calc(1.45em * 3);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 
.review-bottom {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: 13px; 
    color: #a5a29f;
}

.rank-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.review-card {
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.review-card:hover {
    transform: none !important;
    translate: none !important;
}
.reviews-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(to right, rgba(10, 10, 21, 1) 0%, rgba(10, 10, 21, 0.85) 40%, rgba(10, 10, 21, 0) 100%);
}

.reviews-slider::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient( to left, rgba(10, 10, 21, 1) 0%, rgba(10, 10, 21, 0.85) 40%, rgba(10, 10, 21, 0) 100% );
}
 
@media (max-width: 768px) {
.reviews-slider {
    overflow: visible;
 }

 @media (max-width: 768px){
  .about-stats-block{
    padding-bottom: 30px; 
  }
}

.reviews-slider::before,
.reviews-slider::after {
    content: none;
    display: none;
  }

.review-card {
    min-width: 86vw;  
    max-width: 86vw;
    padding: 22px 20px;
    height: auto;
}

.reviews-track {
    align-items: flex-start; 
    width: max-content;
}

  .review-text {
    font-size: 14px;
    flex-grow: 0;
    padding-bottom: 2px;
}

  .review-name {
    font-size: 15px;
}

@media (max-width: 768px){
  .divider-logos img{
    height: 22px;
  }
}
}

  .review-bottom {
    margin-top: 6px;
}

.reviews-track {
    animation-duration: 60s !important; 
}

.reviews-slider:active .reviews-track {
    animation-play-state: paused;
}

/* =====================================================
   10. DIVISOR ENTRE REVIEWS Y FAQ
===================================================== */
  .divider-bar{
  position: relative;
  width: 100vw;
  left: 50%;
  margin-top: 117px;
  padding: 40px 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg,#5b2fd6,#6e3cf0,#5b2fd6);
  overflow: hidden;
}

.divider-content{
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.divider-title{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 28px;
}

.divider-logos{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}

.divider-logos img{
  height: 28px;
  opacity: .9;
  filter: brightness(1.05);
  transition: opacity .25s ease, transform .25s ease;
}

.divider-logos img:hover{
  opacity: 1;
  transform: translateY(-2px);
}

.divider-logos img[src*="valolog"]{
  height: 15px;
}

/* ===== Efecto mouse light ===== */
.divider-bar{
  position: relative;
  overflow: hidden;
}

.divider-bar::before{
  content: "";
  position: absolute;
  inset: 0;
   background: radial-gradient(
    260px circle at var(--x) var(--y),
    rgba(110,160,255,0.35),
    transparent 62%
  );
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  z-index: 1;
}

.divider-bar.is-hovered::before{
  opacity: 1;
}

.divider-content{
  position: relative;
  z-index: 2;
}

@media (max-width: 768px){
  .divider-title{
    font-size: 24px;
    margin-bottom: 27px;
  }

  .divider-bar{
  margin-top: 80px;
}

  .divider-logos{
    gap: 24px;
  }

  .divider-logos img{
    height: 22px;
  }
}

/* =====================================================
   10. FAQ
===================================================== */
.faq-section{
  width: 100%;
  margin: 120px auto;
  padding: 0 20px;
}

/* Contenedor angosto (clave) */
.faq-list{
  max-width: 880px;              /* 👈 ancho correcto */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Header */
.faq-header{
  text-align: center;
  margin-bottom: 56px;
}

.faq-eyebrow{
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bfa7ff;
  margin-bottom: 10px;
}

.faq-title{
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
}

.faq-item{
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.045),
    rgba(0,0,0,0.35)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;

  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}

.faq-question{
  all: unset;
  box-sizing: border-box;
  width: 100%;

  padding: 22px 26px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  cursor: pointer;

  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.faq-arrow{
  font-size: 1.35rem;
  font-weight: 400;
  color: #bfa7ff;

  transition:
    transform .3s ease,
    color .25s ease;
}

.faq-item.is-open .faq-arrow{
  transform: rotate(45deg);
  color: #ffffff;
}

.faq-answer{
  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transform: translateY(-6px);

  transition:
    max-height .45s ease,
    opacity .25s ease,
    transform .25s ease;
}

.faq-item.is-open .faq-answer{
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p{
  margin: 0;
  padding: 0 26px 22px;
  font-size: .95rem;
  line-height: 1.6;
  color: #d5d5e8;
}

@media (max-width: 768px){

  .faq-section{
    margin: 88px auto;
  }

  .faq-title{
    font-size: 2rem;
  }

  .faq-question{
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-answer p{
    padding: 0 20px 18px;
    font-size: .9rem;
  }
}

/*===================================================================================================================*/

/* =====================================================
   1. RESPONSIVES PC
===================================================== */
@media (max-width: 1400px) and (min-width: 1000px) {
.league-grid button {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
}
.league-grid button img {
    width: 85% !important;
}
.league-grid {
    gap: 6px !important;
    flex-wrap: nowrap !important;
}
}

@media (max-width: 1024px) {
.valo-calc-inner {
    grid-template-columns: 1fr;
}
}
@media (min-width: 1400px) {
.valo-calc-inner {
    max-width: 1200px;
}
}

@media (min-width: 1600px) {
.valo-calc-inner {
    max-width: 1300px;
}
}

@media (min-width: 1900px) {
.valo-calc-inner {
    max-width: 1400px;
}
}

/* Ocultar barra sticky en PC */
@media (min-width: 768px) {
.mobile-sticky-price {
    display: none !important;
}
}

/* =====================================================
   2. RESPONSIVES MOBILE
===================================================== */

@media (max-width: 768px) {
    .range-card,
    .order-card {
     width: 100%;
    padding: 20px !important;
    box-sizing: border-box;
    border-radius: 10px;
}

@media (max-width: 768px) {
/* Altura del contenedor de la calculadora */
.valo-calc { 
    position: relative;
    z-index: 5;
}

/* Altura de icono de liga y rango actual o deseado dentro del contenedor */
.range-card-header {
    position: relative;
    top: 6px; 
}

@media (max-width: 768px) {
  .valorant-hero-banner {
    height: 320px;  
  }

  .hero-content {
    padding: 0 20px 36px;
    align-items: flex-end;
  }
}

/* Posicionamiento lateral icono de liga */
.range-icon-wrapper img {
    position: relative;
    left: 6px;
    top: 1px;
}
}

/* Ligas */
.league-grid {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 10px !important;
}

.league-grid button {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    padding: 4px !important;
    border-radius: 12px !important;
}

.league-grid button img {
    width: 40px !important;
    height: 40px !important;
}
 
.preview-block {
    flex: 0 !important;
    min-width: auto !important;
    display: flex;
    justify-content: center !important;
}
.preview-rank img {
    width: 28px !important;
    height: auto !important;
    transform: none !important;
}
.preview-rank span {
    font-size: 0.80rem !important;
}

.coupon-block {
    width: 100% !important;
    max-width: 300px !important;
    margin: 18px auto !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0 10px !important;
    height: 42px !important;
    box-sizing: border-box;
}
.coupon-block input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 0.85rem !important;
    color: white;
    padding: 0 !important;
}
.coupon-block input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
/* Total en mobile (dentro de la card) */
.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 2px !important;
    border-bottom: none !important;
}
.total-label {
    font-size: 0.95rem !important;
    font-weight: 600;
    opacity: .85;
}
.total-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.total-final {
    font-size: 1.6rem !important;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.total-old-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.total-old {
    font-size: 0.78rem !important;
    opacity: 0.55;
}
.off-badge {
    background: linear-gradient(135deg, #ff477e, #c43dff);
    padding: 2px 6px !important;
    font-size: 0.65rem !important;
    border-radius: 6px;
    letter-spacing: 0.5px;
    color: white;
    font-weight: 600;
}
/* Ahorro texto dentro de la card (si se muestra) */
.saving-text {
    font-size: 0.78rem !important;
    margin-top: 6px !important;
}
/* Sticky bar mobile */
.mobile-sticky-price {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 82px;
    background: rgba(15, 14, 28, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.25s ease;
}
.mobile-currency-wrapper {
    position: relative;
    flex-shrink: 0;
    margin-right: 8px;
}
.mobile-currency-btn {
    min-width: 60px;
    width: 60px;
    height: 38px;
    padding: 0 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 10px;
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.18s ease;
}
.mobile-currency-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.30);
}
.currency-symbol {
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}
.currency-arrow {
    font-size: 0.66rem;
    opacity: 0.8;
}
.mobile-currency-menu {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 0;
    min-width: 60px;
    width: 60px;
    background: rgba(16, 16, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 4px 0;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 99999;
}
.mobile-currency-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mobile-currency-menu div {
    padding: 10px 0;
    text-align: center;
    color: white;
    font-size: 0.82rem;
    cursor: pointer;
}
.mobile-currency-menu div:hover {
    background: rgba(255, 255, 255, 0.10);
}
.mobile-price-info {
    flex: 1;
    text-align: left;
    margin-left: 6px;
}
.mobile-row-1 {
    display: flex;
    gap: 4px;
    align-items: baseline;
}
.mobile-row-2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -2px;
}
.mobile-final-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}
.mobile-old-price {
    font-size: 0.85rem;
    opacity: 0.6;
    text-decoration: line-through;
    position: relative;
    top: -4px; 
}
.mobile-saving {
    font-size: 0.78rem;
    font-weight: 500;
    background: linear-gradient(90deg, #bda1ff, #e3d8ff, #bda1ff);
    background-size: 250% auto;
    color: transparent;
    -webkit-background-clip: text;
    text-shadow: 0 0 4px rgba(190, 140, 255, 0.08);
    animation: shimmerSlow 4s linear infinite;
}
@keyframes shimmerSlow {
    0% {background-position: 250% center;}100% {background-position: -250% center;}
}
/* Ocultar bloque de total grande en mobile (se reemplaza por sticky) */
.submit-btn {
    display: none !important;}
.total-card,
.total-line,
.saving-text,
#saving-text {
display: none !important;}
}
.usd-decimals {
    font-size: 0.45em;
    top: -1px;
    opacity: 0.8;
}



 
  .game-card-disabled {
  position: relative;
  opacity: 0.55;
  cursor: not-allowed;
}

.game-card-disabled .card-image {
  position: relative;
}

.soon-badge {
  position: absolute;
 top: 12px;
  left: 12px;
  right: auto;

  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;

  color: #e9e6ff;

  background: rgba(19, 16, 41, 0.18);
  border: 1px solid rgba(120, 100, 255, 0.35);
  border-radius: 999px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  pointer-events: none;
  z-index: 2;
}
 





/* =========================================
   HERO — MOBILE CLEAN & COMPACT
========================================= */

@media (max-width: 768px) {

  /* HERO más bajo */
  .hero {
    min-height: unset;
    padding-top: 180px;     /* antes enorme */
    padding-bottom: 310px;  /* 👈 deja ver el siguiente bloque */
  }

  .hero-container {
    padding: 0 18px;
  }

  .hero-text {
    text-align: center;
  }

  /* ❌ ocultamos eyebrow */
  .hero-eyebrow {
    display: none;
  }

  /* TITULO */
  .hero-text h1 {
    font-size: 3.3rem;
    line-height: 1.05;
    margin-bottom: 12px;
    font-weight: 900; /* 👈 más gordito */
  }

  .hero-text h1 span {
    font-weight: 900;
  }

  /* TEXTO DESCRIPTIVO */
 @media (max-width: 768px) {

  /* 🔓 liberamos el contenedor */
  .hero-container {
    max-width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-text {
    max-width: 100% !important;
  }

  /* ahora sí el texto puede ocupar ancho */
  .hero-text p {
    max-width: 100% !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0.85;
  }
}


  /* BOTONES */
  .hero-actions {
    align-items: center;
    gap: 12px;
  }

   .cta-btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.95rem;
    padding: 16px 0;
  }
@media (max-width: 768px) {
  .cta-round {
    justify-content: center;
  }
}

  /* 👇 ahora centrado igual que el principal */
  .cta-round {
    margin: 0 auto;
    font-size: 0.85rem;
    opacity: 0.85;
  }

  /* opcional: achicar icono */
  .cta-round .cta-icon {
    transform: scale(0.85);
  }
}
