/* =========================================================
   🎯 BASE GENERAL
   ========================================================= */
body{
  margin:0;
  font-family:'Poppins', Arial;
  background:#0b0f1a;
  color:white;
  overflow-x: clip; 
  transition: background 0.3s ease, color 0.3s ease;
}
html, body{
  max-width:100%;
  overflow-x: clip;
}

*{
  max-width:100%;
}
*{
  box-sizing: border-box;
}

/* FIX IMÁGENES (CORREGIDO) */
img{
  opacity:1;
  transition:opacity .3s ease;
}

/* OPCIONAL: solo si quieres animación controlada */
img.fade{
  opacity:0;
}

img.fade.loaded{
  opacity:1;
}

.card{
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:visible; /* Cambiado para permitir que el badge sobresalga */
  position:relative;
  /* El resto sigue igual, pero overflow hidden corta los badges */
  transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card .card-img {
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

/* ================= BADGES ================= */
.badge-mas-vendido {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #f43f5e, #fb923c);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.5);
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatBadge 3s ease-in-out infinite;
}

/* Efecto latido VIP para el contenedor del cupón */
.pulsing-coupon-vip {
  animation: latidoCuponVip 2.5s ease-in-out infinite;
}
@keyframes latidoCuponVip {
  0% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(245, 158, 11, 0)); }
  50% { transform: scale(1.02); filter: drop-shadow(0 4px 15px rgba(245, 158, 11, 0.4)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(245, 158, 11, 0)); }
}

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

/* Sección Combos VIP Mejorada */
.section-combos-vip {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(239, 68, 68, 0.08) 100%);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.1), inset 0 0 20px rgba(239, 68, 68, 0.05);
  animation: borderGlow 4s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  from { box-shadow: 0 0 30px rgba(245, 158, 11, 0.1), inset 0 0 20px rgba(239, 68, 68, 0.05); border-color: rgba(245, 158, 11, 0.3); }
  to { box-shadow: 0 0 50px rgba(245, 158, 11, 0.3), inset 0 0 40px rgba(239, 68, 68, 0.1); border-color: rgba(245, 158, 11, 0.8); }
}

.titulo-combos-vip {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 35px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f59e0b, #ef4444, #f59e0b, #ef4444);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineTituloVip 3s linear infinite;
  text-shadow: 0px 10px 30px rgba(239, 68, 68, 0.4);
}

@keyframes shineTituloVip {
  to {
    background-position: 300% center;
  }
}

.badge-top {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.5);
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.card::before,
.card::after{
  pointer-events: none;
}

/* =========================================================
   🧱 HEADER / LOGO
   ========================================================= */
.header{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
}
.logo{
  font-size:90px;
  font-weight:900;
  letter-spacing:2px;

  position:relative;
  z-index:2;

  color:#e5e7eb;

  opacity:0;
  transform:scale(0.8);

  animation:
    logoEnter 1s ease forwards,
    electricPulse 2.5s infinite ease-in-out;
}
@keyframes logoEnter{
  0%{
    opacity:0;
    transform:scale(0.7);
    text-shadow:none;
  }
  60%{
    opacity:1;
    transform:scale(1.05);
  }
  100%{
    opacity:1;
    transform:scale(1);
  }
}
@keyframes electricPulse{
  0%,100%{
    text-shadow:
      0 0 10px #00aaff,
      0 0 30px rgba(0,170,255,0.5);
  }

  50%{
    text-shadow:
      0 0 20px #00ffcc,
      0 0 50px rgba(0,255,200,0.8);
  }
}
.logo-wrapper{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.particles{
  position:absolute;
  width:100%;
  height:100%;
  pointer-events:none;
}

.particles::before,
.particles::after{
  content:"";
  position:absolute;
  width:6px;
  height:6px;
  background:#00aaff;
  border-radius:50%;
  box-shadow:0 0 10px #00aaff;

  animation:floatParticles 4s infinite linear;
}

.particles::after{
  left:70%;
  background:#00ffcc;
  animation-delay:2s;
}
@keyframes floatParticles{
  0%{
    transform:translateY(30px);
    opacity:0;
  }
  50%{
    opacity:1;
  }
  100%{
    transform:translateY(-40px);
    opacity:0;
  }
}

@media(max-width:600px){

  .header{
    margin-bottom:10px;
  }

  .logo{
    font-size:34px;
  }

  .combo-hero{
    height:auto;
    padding:20px 16px 16px;
    align-items:flex-start;
  }

  .combo-overlay{
    margin-top:0;
    padding:0 16px;
  }

  .combo-overlay h2{
    font-size:22px;
    line-height:1.2;
    margin-bottom:12px;
  }

  .combo-overlay p{
    font-size:14px;
    margin-top:8px;
  }

  .combo-overlay p:last-child{
    margin-top:12px;
    font-size:13px;
  }
}

.logo span{
  background:linear-gradient(90deg,#00aaff,#00ffcc);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}


/* =========================================================
   📦 SECCIONES GENERALES
   ========================================================= */
.section{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:10px 16px 20px; /* ↓ menos padding */
}

.grid{
  width:100%;
  max-width:100%;
}
@media(max-width:600px){
  .grid{
    gap:16px; /* 👈 reduce gap en móvil */
  }

  .section{
    padding:10px 12px 20px; /* 👈 menos padding */
  }
}
#vendidos{
  overflow: visible;
}
.section{
  overflow:visible;
}

.section h2{
  margin-bottom:25px;
  font-size:22px;
}

/* =========================================================
   🔥 ENCABEZADO (MÁS VENDIDOS)
   ========================================================= */
.encabezado-seccion{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top: 30;
}

.encabezado-seccion h2{
  margin:0;
}

.encabezado-seccion{
  padding-top:60px;
}

.btn-menu{
  background:#141a2a;
  padding:10px 18px;
  border-radius:12px;
  text-decoration:none;
  color:white;
  font-size:13px;
  transition:0.3s;
  display:inline-block;
  white-space:nowrap;
  border: 1px solid transparent;
}

.acciones{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-menu:hover{
  background:#00aaff;
}

/* =========================================================
   🧩 GRID (PRODUCTOS)
   ========================================================= */
.grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:30px;
}

/* =========================================================
   🖼️ IMAGEN PRODUCTO
   ========================================================= */
.card-img{
  position:relative;
}

.card img{
  width:100%;
  height:420px;
  object-fit:cover;
  object-position:center 30%;
  display:block;
}

.card.large img{
  height:460px;
}

/* =========================================================
   📦 INVENTARIO
   ========================================================= */
.agotado{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  background:rgba(255, 255, 255, 0.8);
  color:#ff3b3b;
  padding:12px 25px;
  font-weight:bold;
  border-radius:10px;
  font-size:18px;
}

.stock{
  position:absolute;
  bottom:10px;
  left:10px;
  background:rgba(255, 0, 0, 0.7);
  padding:6px 12px;
  border-radius:6px;
  font-size:15px;
}

/* NUEVO: STOCK DISPONIBLE EN LA CARD */
.stock-disponible{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:max-content;
  max-width:100%;
  margin:0 auto 18px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(0, 255, 204, 0.08);
  border:1px solid rgba(0, 255, 204, 0.18);
  color:#b9fff1;
  font-size:13px;
  font-weight:600;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.04);
}

.stock-disponible-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#00ffcc;
  box-shadow:0 0 10px rgba(0,255,204,0.6);
  flex-shrink:0;
}
/* STOCK BASE (si no lo tienes ya definido) 
.stock-disponible{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(0,255,150,0.08);
  color:#00ffa6;
  font-size:12px;
  font-weight:500;
  width:fit-content;
  margin-top:6px;
}
/* STOCK BASE (si no lo tienes ya definido) */

/* DOT */
.stock-disponible-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#00ffa6;
}

/* 🔴 VARIANTE AGOTADO */
.stock-agotado{
  background:rgba(255,0,0,0.08);
  color:#ff4d4d;
}

.stock-agotado .stock-disponible-dot{
  background:#ff4d4d;
}


/* =========================================================
   📄 INFO PRODUCTO
   ========================================================= */
.info{
  padding:25px;
  display:flex;
  flex-direction:column;
  flex:1;
  position: relative;
  z-index: 2;
}

.title{
  font-size:15px;
  min-height:40px;
}

.price{
  color:#00ffcc;
  font-weight:bold;
  margin:15px 0 12px;
  font-size:18px;
}

/* =========================================================
   🛒 BOTONES CARD
   ========================================================= */
.acciones-card{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  margin-top:auto;
}

.btn-comprar{
  flex:1;
  background:#0251fd;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  color:white;
  font-size:14px;
  font-weight:600;
  display:flex;
  justify-content:center;
  align-items:center;
  transition:0.25s;
}


.btn-info{
  background:#1f2937;
  border:none;
  width:44px;
  height:44px;
  border-radius:10px;
  color:white;
  cursor:pointer;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.2s;
}

.btn-info:hover{
  background:#374151;
  transform:scale(1.05);
}

.btn-comprar.disabled{
  background:#374151;
  cursor:not-allowed;
  opacity:0.7;
}

/* =========================================================
   💬 WHATSAPP SOPORTE
   ========================================================= */
.wa-soporte{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  width: 60px;
  height: 60px;

  background: #25D366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.3);

  transition: 0.3s;
}

.wa-soporte img{
  width: 30px;
  height: 30px;
}

.wa-soporte:hover{
  transform: scale(1.1);
}
@media (max-width: 600px){
  .wa-soporte{
    bottom: 80px;
    right: 15px;
    width: 55px;
    height: 55px;
  }

  .wa-soporte img{
    width: 26px;
    height: 26px;
  }
}

/* =========================================================
   🎵 TIKTOK FLOTANTE
   ========================================================= */
.tiktok-flotante{
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #010101;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  color: white;
  transition: 0.3s;
}
.tiktok-flotante svg{
  width: 24px;
  height: 24px;
  transition: 0.3s;
}
.tiktok-flotante:hover{
  transform: scale(1.1);
  border-color: #00e5ff;
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.4);
}
@media (max-width: 600px){
  .tiktok-flotante{
    bottom: 145px;
    right: 15px;
    width: 55px;
    height: 55px;
  }
  .tiktok-flotante svg{
    width: 22px;
    height: 22px;
  }
}

/* =========================================================
   📱 RESPONSIVE
   ========================================================= */
@media(max-width:1000px){
  .grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .logo{
    font-size:45px;
  }
}

@media(max-width:600px){
  .grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .logo{
    font-size:38px;
    margin-top:50px;
  }

  .card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) translateZ(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }



  .info {
    padding: 8px 10px 12px !important;
  }

  .title{
    font-size: 13px;
    min-height: 32px;
    margin-bottom: 4px;
    margin-top: 0;
  }

  .price {
    font-size: 14px;
    margin: 6px 0;
  }

  .acciones-card{
    flex-direction: column;
    gap:6px;
  }

  .btn-comprar{
    font-size:11px;
    padding:8px;
    width: 100%;
  }

  .btn-info{
    width:100%;
    height:32px;
    font-size:12px;
    border-radius: 8px;
  }

  .stock-disponible{
    font-size:10px;
    padding:5px 8px;
    margin-bottom:10px;
    gap: 4px;
  }
}

/* =========================================================
   🌞 MODO CLARO (LIGHT MODE)
   ========================================================= */
body.light-mode {
  background: #f4f6fa;
  color: #1a1a2e;
}
body.light-mode .card {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}
body.light-mode .card img {
  background: rgba(0,0,0,0.03);
}
body.light-mode .title {
  color: #334155;
}
body.light-mode .price {
  color: #0251fd; 
}
body.light-mode .stock-disponible {
  background: rgba(2, 81, 253, 0.08);
  border: 1px solid rgba(2, 81, 253, 0.18);
  color: #0251fd;
}
body.light-mode .stock-disponible-dot {
  background: #0251fd;
  box-shadow: 0 0 8px rgba(2, 81, 253, 0.4);
}
body.light-mode .btn-menu {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #cbd5e1;
}
body.light-mode .btn-menu:hover {
  background: #e2e8f0;
}
body.light-mode .btn-comprar {
  background: #0251fd;
  color: #ffffff;
}
body.light-mode .btn-info {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}
body.light-mode .btn-info:hover {
  background: #e2e8f0;
}
body.light-mode .encabezado-seccion h2,
body.light-mode .section h2 {
  color: #1e293b;
}
body.light-mode .modal-content {
  background: #ffffff;
  color: #1e293b;
}
body.light-mode .modal-content p, body.light-mode .modal-content div {
  color: #334155;
}
body.light-mode .cerrar-modal {
  color: #1e293b;
}



/* =========================================================
   POPUP PROMOCIONAL
   ========================================================= */
.promo-popup{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.promo-popup.active{
  display: flex;
}

.promo-popup-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

.promo-popup-content{
  position: relative;
  z-index: 2;
  width: min(92vw, 600px);
  max-height: 90vh;
  animation: promoFadeIn .28s ease;
}

.promo-popup-content a{
  display: block;
  line-height: 0;
}

.promo-popup-content img{
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 22px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.promo-popup-close{
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(15,23,42,0.92);
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  transition: transform .2s ease, background .2s ease;
}

.promo-popup-close:hover{
  transform: scale(1.08);
  background: #ff3b3b;
}

@keyframes promoFadeIn{
  from{
    opacity: 0;
    transform: translateY(10px) scale(.96);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 600px){
  .promo-popup{
    padding: 16px;
  }

  .promo-popup-content{
    width: min(94vw, 420px);
  }

  .promo-popup-close{
    top: -10px;
    right: -2px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* ================= SLIDER HOME COMBO PREVIEW ================= */
.combo-hero{
  width:100%;
  height:250px;

  display:flex;
  align-items:center;
  justify-content:center;

  position:relative;
  overflow:hidden;

  background:
    radial-gradient(circle at 50% 40%, rgba(0,170,255,0.25), transparent 60%),
    radial-gradient(circle at 20% 60%, rgba(0,255,200,0.15), transparent 60%),
    linear-gradient(180deg,#060b1a,#020617);
}

.combo-hero{
  padding:60px 20px;
}

.combo-overlay h2::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.25),
    transparent 60%
  );

  transform:translateX(-100%);
  animation:shine 3.5s infinite;
}
@keyframes shine{
  100%{
    transform:translateX(100%);
  }
}

@keyframes electricLine{
  0%{transform:translateX(-100%);}
  100%{transform:translateX(100%);}
}

.combo-overlay{
  width:100%;
  max-width:1200px;
  margin:0 auto;

  display:flex;
  flex-direction:column;
  align-items:center;

  text-align:center;
  padding:0 18px;
}

.combo-overlay h2{
  max-width:1100px;
  margin:0 auto 10px;
  text-wrap: balance;
  font-size:clamp(32px, 3.2vw, 52px);
  font-weight:800;
  line-height:1.1;
  text-align:center;

  /* 🔥 EFECTO PREMIUM STREAMING */
  background:linear-gradient(90deg,#ffffff,#b6faff,#00d9ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  position:relative;

  /* glow suave (no gamer) */
  text-shadow:
    0 0 8px rgba(0,170,255,0.4),
    0 0 20px rgba(0,255,200,0.25);
}

.combo-overlay p{
  max-width:900px;
  margin:16px auto 0;
  font-size:20px;
  line-height:1.5;
  text-align:center;
}

.combo-overlay p:last-child{
  margin-top:28px;
  font-size:18px;
  opacity:.85;
}
@keyframes electricMove{
  0%{background-position:0%;}
  50%{background-position:150%;}
  100%{background-position:300%;}
}
#particles-canvas{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:0;
}

.logo-wrapper{
  position:relative;
  z-index:2;
}

@media(min-width:1200px){
  .combo-overlay h2{
    max-width:1000px;
  }
}
/*--FIN DEL SLIDER HOME*/

/*------BANNER GLOBAL--*/
/* =========================================================
   🎞️ BANNER SCROLL (OPTIMIZADO)
   ========================================================= */

.banner-track{
  display: flex;
  gap: 20px;
  width: max-content;
 animation: scrollBanner 6s linear infinite;
}

.banner-item{
  white-space: nowrap;
  flex-shrink: 0;
}

/* contenedor padre */
.banner-wrapper{
  overflow: hidden;
}

/* animación */
@keyframes scrollBanner{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}
.banner-track{
  will-change: transform;
  display: inline-flex; /* 🔥 clave */
}
.banner-track{
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollBanner 20s linear infinite;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*----FIN----*/
/* ===== FOOTER PRO ===== */

.footer{
  width:100%;
  background:#020617;
  margin-top:80px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:30px;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-logo{
  font-size:22px;
  font-weight:700;
}

.footer-logo span{
  color:#00aaff;
}

.footer-text{
  font-size:13px;
  color:#9ca3af;
  line-height:1.5;
}

.footer-col h4{
  font-size:14px;
  margin-bottom:5px;
  color:#e5e7eb;
}

.footer-col a{
  text-decoration:none;
  color:#9ca3af;
  font-size:13px;
  transition:0.2s;
}

.footer-col a:hover{
  color:#00aaff;
}

.footer-col p{
  font-size:13px;
  color:#9ca3af;
}

.footer-bottom{
  text-align:center;
  padding:15px;
  font-size:12px;
  background:#01030a;
  color:#9ca3af;
}

/* RESPONSIVE */
@media(max-width:800px){
  .footer-container{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:500px){
  .footer-container{
    grid-template-columns:1fr;
  }
}
.perfil-clientes{
  font-size:12px;
  color:#cbd5e1;
  line-height:1.4;
  margin-top:5px;
}


/* =========================================================
   BOTÓN VENDE CON NOSOTROS
   ========================================================= */

.btn-vende {
  background: linear-gradient(135deg, #7c3aed, #00aaff);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.24);
}

.btn-vende:hover {
  background: linear-gradient(135deg, #8b5cf6, #00ffcc);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 170, 255, 0.25);
}

/* =========================================================
   FOOTER RESPONSIVE + HORARIO DE ATENCIÓN
   ========================================================= */

.footer{
  width:100%;
  background:#020617;
  margin-top:80px;
  padding-bottom:0;
}

.footer-bar{
  max-width:1200px;
  margin:0 auto;
  padding:28px 20px;
  display:grid;
  grid-template-columns:1.2fr auto 1.2fr;
  gap:24px;
  align-items:center;
}

.footer-left,
.footer-center,
.footer-right{
  min-width:0;
}

.footer-logo{
  font-size:24px;
  font-weight:800;
  line-height:1.1;
  white-space:nowrap;
}

.footer-logo span{
  color:#0251fd;
}

.footer-desc{
  color:#cbd5e1;
  font-size:14px;
  margin-top:4px;
  line-height:1.4;
}

.footer-trust{
  margin-top:10px;
  color:#94a3b8;
  font-size:12px;
  line-height:1.5;
}

.footer-center{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-center a{
  color:#ffffff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:.2s;
}

.footer-center a:hover{
  color:#00aaff;
}

.footer-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:7px;
  color:#e5e7eb;
  font-size:13px;
  line-height:1.4;
  word-break:break-word;
}

.footer-bottom{
  text-align:center;
  padding:15px;
  font-size:12px;
  background:#01030a;
  color:#9ca3af;
}

/* Evita que WhatsApp tape contenido al final */
body{
  padding-bottom:0;
}

/* =========================================================
   WHATSAPP FLOTANTE RESPONSIVE
   ========================================================= */

.wa-soporte{
  bottom:24px;
  right:24px;
}

/* TABLET */
@media(max-width:900px){
  .footer-bar{
    grid-template-columns:1fr;
    text-align:center;
    gap:20px;
    padding:32px 18px 110px;
  }

  .footer-left,
  .footer-right{
    align-items:center;
    text-align:center;
  }

  .footer-center{
    order:3;
  }

  .footer-right{
    order:2;
    font-size:13px;
  }

  .footer-logo{
    white-space:normal;
  }

  .wa-soporte{
    bottom:90px;
    right:16px;
    width:56px;
    height:56px;
  }

  .wa-soporte img{
    width:28px;
    height:28px;
  }
}

/* MÓVIL */
@media(max-width:600px){
  .footer{
    margin-top:55px;
  }

  .footer-bar{
    padding:28px 14px 120px;
  }

  .footer-logo{
    font-size:26px;
  }

  .footer-desc{
    font-size:13px;
  }

  .footer-trust{
    font-size:12px;
    max-width:300px;
    margin-left:auto;
    margin-right:auto;
  }

  .footer-center{
    gap:12px;
  }

  .footer-center a{
    font-size:13px;
  }

  .footer-right{
    width:100%;
    max-width:330px;
    margin:0 auto;
    font-size:12.5px;
  }

  .footer-bottom{
    padding:14px 12px;
    font-size:11px;
  }

  .wa-soporte{
    bottom:92px;
    right:14px;
    width:54px;
    height:54px;
  }
}

/* =========================================================
   FIX FINAL FOOTER STREAMZONE
   ========================================================= */

.footer{
  width:100%;
  background:#020617;
  margin-top:80px;
}

.footer-bar{
  max-width:1200px;
  margin:0 auto;
  padding:32px 22px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:30px;
  align-items:start;
}

/* IZQUIERDA */
.footer-left{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  min-width:0;
}

.footer-logo{
  font-size:24px;
  font-weight:800;
  line-height:1.1;
  white-space:nowrap;
}

.footer-logo span{
  color:#0251fd;
}

.footer-desc{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.4;
  margin:0;
}

.footer-trust{
  color:#93c5fd;
  font-size:13px;
  line-height:1.4;
  margin-top:4px;
  max-width:380px;
}

/* CENTRO */
.footer-center{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  padding-top:2px;
}

.footer-center a{
  color:white;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}

.footer-center a:hover{
  color:#00aaff;
}

/* DERECHA */
.footer-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  text-align:right;
  gap:9px;
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  line-height:1.4;
  min-width:0;
}

.footer-right div{
  word-break:break-word;
}

.footer-bottom{
  text-align:center;
  padding:15px;
  font-size:12px;
  background:#01030a;
  color:#9ca3af;
}

/* TABLET Y MÓVIL */
@media(max-width:900px){
  .footer-bar{
    grid-template-columns:1fr;
    text-align:center;
    gap:24px;
    padding:32px 18px 120px;
  }

  .footer-left,
  .footer-right{
    align-items:center;
    text-align:center;
  }

  .footer-trust{
    max-width:340px;
  }

  .footer-center{
    order:3;
    gap:16px;
  }

  .footer-right{
    order:2;
  }

  .footer-logo{
    white-space:normal;
  }

  .wa-soporte{
    bottom:92px;
    right:16px;
    width:56px;
    height:56px;
  }
}

@media(max-width:600px){
  .footer{
    margin-top:55px;
  }

  .footer-bar{
    padding:28px 14px 125px;
  }

  .footer-logo{
    font-size:26px;
  }

  .footer-desc,
  .footer-trust{
    font-size:13px;
  }

  .footer-center a{
    font-size:13px;
  }

  .footer-right{
    max-width:340px;
    margin:0 auto;
    font-size:12.5px;
  }

  .wa-soporte{
    bottom:95px;
    right:14px;
    width:54px;
    height:54px;
  }
}

/* =========================================================
   FIX FINAL FOOTER MÓVIL - NO TAPAR CON WHATSAPP / CARRITO
   ========================================================= */

@media (max-width: 600px){

  .footer{
    margin-top:55px;
    padding-bottom:115px;
  }

  .footer-bar{
    padding:32px 16px 24px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    text-align:center !important;
    gap:18px !important;
  }

  .footer-left{
    order:1;
    width:100%;
    align-items:center !important;
    text-align:center !important;
  }

  .footer-logo{
    font-size:24px !important;
    margin-bottom:8px;
  }

  .footer-desc{
    font-size:13px !important;
    line-height:1.4;
  }

  .footer-trust{
    font-size:13px !important;
    margin-top:8px;
    max-width:280px;
    line-height:1.4;
  }

  .footer-center{
    order:2;
    width:100%;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    flex-wrap:wrap !important;
    gap:16px !important;
    margin-top:4px;
  }

  .footer-center a{
    font-size:14px !important;
    font-weight:800;
  }

  .footer-right{
    order:3;
    width:100%;
    max-width:330px;
    align-items:center !important;
    text-align:center !important;
    gap:10px !important;
    font-size:13px !important;
    line-height:1.45;
  }

  .footer-bottom{
    padding:16px 12px !important;
    font-size:12px !important;
  }

  /* WhatsApp más arriba y a la izquierda */
  .wa-soporte{
    left:16px !important;
    right:auto !important;
    bottom:92px !important;
    width:54px !important;
    height:54px !important;
  }

  .wa-soporte img{
    width:27px !important;
    height:27px !important;
  }

  /* Carrito abajo a la derecha, sin tapar contenido */
  .carrito-flotante{
    right:14px !important;
    bottom:18px !important;
  }

  .btn-ver-carrito{
    min-height:46px !important;
    padding:0 18px !important;
    font-size:14px !important;
  }
}

.btn-mis-servicios {
  background: linear-gradient(135deg, #00ffc8, #0077ff) !important;
  color: #020617 !important;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(0, 255, 200, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.btn-mis-servicios:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(0, 255, 200, 0.42);
}

/* ==============================
   LOADER TIENDA TENANT
   ============================== */

.loader-tienda-tenant{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background:#050816;
  color:white;
}

.loader-logo-tenant{
  font-size:46px;
  font-weight:900;
  letter-spacing:2px;
  animation:pulseTenantLoader 1.4s infinite;
}

.loader-logo-tenant span{
  color:#00aaff;
  text-shadow:0 0 18px rgba(0,170,255,.75);
}

.loader-tienda-tenant p{
  margin-top:14px;
  color:#9ca8c7;
}

@keyframes pulseTenantLoader{
  0%,100%{
    opacity:.45;
    transform:scale(.96);
  }

  50%{
    opacity:1;
    transform:scale(1);
  }
}

/* ==============================
   TIENDA NO DISPONIBLE
   ============================== */

.tienda-no-disponible{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:24px;
  background:
    radial-gradient(circle at top left, rgba(0,170,255,.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,59,95,.12), transparent 30%),
    #050816;
  color:white;
}

.tienda-no-card{
  width:min(460px, 100%);
  padding:34px;
  border-radius:24px;
  text-align:center;
  background:linear-gradient(145deg, rgba(13,18,40,.96), rgba(7,11,29,.96));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.tienda-no-card h1{
  margin:0 0 12px;
  font-size:2rem;
}

.tienda-no-card p{
  color:#9ca8c7;
  line-height:1.5;
}
.hero-banner{

    width:100%;
    margin:0 auto;
    padding:0;

}


.hero-right{

    width:100%;

}


.banner-slider{

    width:100%;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

/* ================= VIDEO COVER NETFLIX STYLE ================= */
.hero-video-container {
  width: 100%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 21 / 9; /* Aspect ratio ultra-wide para escritorio */
  min-height: 400px;
}
@media(max-width: 768px) {
  .hero-video-container {
    aspect-ratio: 4 / 5; /* Aspect ratio vertical para móviles */
    min-height: unset;
  }
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.youtube-wrapper {
  pointer-events: none;
  overflow: hidden;
}
.youtube-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media(max-width: 768px) {
  .youtube-wrapper iframe {
    width: 250vw;
    height: 140.625vw;
  }
}
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.1) 80%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.hero-mute-btn:hover {
  background: rgba(255,255,255,0.2);
}



.banner-slider picture{

    display:block;

}

.banner-slider img{

width:100%;

height:auto;

min-height:550px;

object-fit:cover;

object-position:center center;

display:block;

border-radius:18px;



opacity:1;

transition:
opacity .8s ease;



}

@media(max-width:768px){

  .banner-slider{
      height:auto;
  }

  .banner-slider img{
      min-height: unset !important;
      object-fit: contain !important;
      border-radius: 12px;
  }

}



.top-navbar{
    width:100%;
    height:70px;

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

    padding:0 30px;

    background:#020617;

    border-bottom:1px solid rgba(255,255,255,.08);
}


.nav-logo{
    font-size:28px;
    font-weight:800;
    color:white;
}

.nav-logo span{
    color:#00cfff;
}

.nav-links{
    display:flex;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

.nav-links a:hover{
    color:#00cfff;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.nav-actions select{
    background:#0f172a;
    color:white;
    border:1px solid #1e293b;
    border-radius:8px;
    padding:8px 10px;
}

.nav-cart{
    background:#0251fd;
    color:white;
    border:none;
    width:42px;
    height:42px;
    border-radius:10px;
    cursor:pointer;
}

/* Las reglas móviles se movieron al final del archivo para respetar la cascada CSS */

@media(max-width:480px){

  .nav-actions{
      width:100%;
      justify-content:center;
  }

  .nav-actions select{
      flex:1;
  }

}
.nav-links{
    display:flex;
    gap:15px;
    align-items:center;
}

.nav-links .btn-menu{
    text-decoration:none;
}

.nav-top-row {
    display: contents;
}

/* =========================================================
   SIDEBAR MÓVIL
   ========================================================= */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hamburger-btn svg {
    width: 28px;
    height: 28px;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #020617;
    z-index: 100000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    padding: 20px;
    display: none;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: none;
    backdrop-filter: blur(4px);
}

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

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header .nav-logo {
    font-size: 22px;
}

.close-sidebar {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-links .btn-menu {
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: background 0.2s;
}

.sidebar-links .btn-menu:hover {
    background: rgba(255,255,255,0.1);
}

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

    padding:20px 40px;

    background:#041127;

    border-bottom:1px solid rgba(255,255,255,.05);
}

.hero-indicators{

position:absolute;

bottom:20px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:10px;

z-index:20;

}


.hero-dot{

width:12px;
height:12px;

border-radius:50%;

background:rgba(255,255,255,.35);

cursor:pointer;

transition:.3s;

}


.hero-dot.active{

background:#00d9ff;

box-shadow:
0 0 15px #00d9ff;

transform:scale(1.15);

}



.banner-slider{

position:relative;

}

/* ========= DEMO WIN ========= */

.promo-popup{
position:fixed;
inset:0;
z-index:99999;

display:none;

justify-content:center;
align-items:center;

padding:20px;
}


.promo-popup.active{
display:flex;
}



.promo-popup-overlay{

position:absolute;
inset:0;

background:rgba(0,0,0,.80);

backdrop-filter:blur(5px);

}



.promo-card {
  position: relative;
  z-index: 10;
  width: 95%;
  max-width: 365px; /* Tamaño optimizado y compacto */
  background: #09162e;
  border: 1px solid rgba(255, 91, 0, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 25px rgba(255, 91, 0, 0.15);
  animation: popup .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


@keyframes popup{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}



.promo-image img {
  width: 100%;
  height: 260px; /* Limitar la altura de la imagen para que sea responsivo */
  object-fit: cover;
  object-position: center;
  display: block;
}



.promo-info{

padding:25px;

text-align:center;

}



.promo-info h2{

margin:0;

font-size:30px;

color:#ff5b00;

}



.promo-info p{
  margin:15px 0 22px;
  font-size:16px;
  color:#94a3b8;
  line-height:1.5;
}



.promo-demo-btn{
  display:block;
  width:100%;
  padding:15px;
  border-radius:14px;
  text-decoration:none;
  background:linear-gradient(135deg, #ff5b00, #ff7a00);
  color: #ffffff;
  font-weight:700;
  font-size:17px;
  transition:.3s;
  box-shadow: 0 5px 15px rgba(255, 91, 0, 0.3);
  box-sizing: border-box;
}
.promo-demo-btn:hover{
  filter: brightness(1.15);
  box-shadow: 0 8px 20px rgba(255, 91, 0, 0.45);
  transform: translateY(-2px);
}



.promo-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.promo-popup-close:hover {
  background: rgba(220, 38, 38, 0.95);
  transform: scale(1.1);
}



@media(max-width:768px){

.promo-card{

max-width:360px;

}


.promo-info h2{

font-size:24px;

}


.promo-info p{

font-size:16px;

}

}

/*====================================
PARTNER LOADER
====================================*/

#partnerLoader{

position:fixed;
inset:0;

display:none;

justify-content:center;
align-items:center;

background:rgba(3,7,18,.92);

backdrop-filter:blur(12px);

z-index:999999;

}


.partner-card{

width:420px;

padding:40px;

border-radius:24px;

text-align:center;

background:rgba(15,23,42,.95);

border:1px solid rgba(0,170,255,.20);

box-shadow:
0 0 40px rgba(0,170,255,.15);

}



.partner-card h2{

margin:0;

font-size:38px;

font-weight:800;

letter-spacing:3px;

background:linear-gradient(
90deg,
#ffffff,
#00aaff,
#00ffcc
);

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

}


.partner-card p{

margin-top:15px;

color:#94a3b8;

font-size:15px;

}



.partner-progress{

margin-top:40px;

position:relative;

height:60px;

display:flex;

justify-content:space-between;

align-items:center;

}



.partner-progress::before{

content:"";

position:absolute;

left:0;
right:0;

height:3px;

background:

rgba(255,255,255,.08);

top:50%;

transform:translateY(-50%);

}



.partner-line{


position:absolute;

left:0;

top:50%;

transform:translateY(-50%);


height:3px;

width:0%;


background:linear-gradient(
90deg,
#00aaff,
#00ffcc
);

transition:2s;

}



.partner-node{


width:22px;

height:22px;

border-radius:50%;

background:#1e293b;

border:2px solid #334155;

z-index:2;

transition:.4s;


}



.partner-node.active{


background:#00ffcc;


box-shadow:

0 0 20px #00ffcc;


}

/* =========================================================
   ANIMACION COPA MUNDIAL (COLOMBIA)
========================================================= */
.nav-logo span.logo-colombia,
.mis-servicios-logo span.logo-colombia {
    background: linear-gradient(90deg, #FFCD00 0%, #FFCD00 40%, #003087 40%, #003087 70%, #C8102E 70%, #C8102E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.balon-container {
    display: inline-block;
    animation: rebote-balon 0.5s cubic-bezier(0.28, 0.84, 0.42, 1) infinite alternate;
    margin-left: 6px;
    vertical-align: baseline;
}

.balon-animado {
    display: inline-block;
    animation: giro-balon 2s linear infinite;
    font-size: 26px;
    line-height: 1;
}

@keyframes rebote-balon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes giro-balon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================================
   STICKY HEADER (INCLUYE BANNER Y NAVBAR)
========================================================= */
#header-global {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.banner-wrapper {
    background: #0b1220;
    height: 36px;
    display: flex;
    align-items: center;
    width: 100%;
}

#header-global .top-navbar {
    background: #041127;
}

/* El body ya no necesita padding porque el header es sticky y ocupa espacio natural en el DOM, pero si está al principio no hay problema. */

/* =========================================================
   MOBILE OVERRIDES (MUST BE AT THE END)
========================================================= */
@media(max-width:768px){

    .top-navbar{
        flex-direction: column;
        align-items: stretch;
        height:auto;
        padding:15px;
        gap:15px;
    }

    .nav-top-row {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-sidebar, .sidebar-overlay {
        display: flex;
    }

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

    .nav-links{
        width:100%;
        justify-content:space-between;
        gap:10px;
        flex-wrap: nowrap;
    }

    .nav-links .btn-menu {
        flex: 1;
        text-align: center;
        padding: 10px;
        font-size: 13px;
        justify-content: center;
    }

    .nav-actions{
        width:100%;
        justify-content:space-between;
        gap: 10px;
    }
} /* Fin de @media(max-width:768px) */

/* ================= TESTIMONIOS ================= */
/* ================= TESTIMONIOS (DOUBLE MARQUEE INFINITO) ================= */
.testimonios-double-marquee {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}
.marquee-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #090e1a, transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #090e1a, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.track-left {
  animation: marquee-scroll-left 55s linear infinite;
}
.track-right {
  animation: marquee-scroll-right 55s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}
@keyframes marquee-scroll-right {
  0% {
    transform: translateX(calc(-50% - 10px));
  }
  100% {
    transform: translateX(0);
  }
}
.testimonio-card {
  flex: 0 0 300px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .testimonios-carousel {
    grid-auto-columns: 260px;
  }
  .testimonio-card {
    padding: 20px;
  }
}
.testimonio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.3);
}
.testimonio-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.testimonio-texto {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonio-cliente {
  font-weight: bold;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonio-cliente::before {
  content: '👤';
  font-size: 1.2rem;
}
.testimonios-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
  z-index: 10;
}
.testimonios-control:hover {
  background: #00e5ff;
  color: black;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
  border-color: #00e5ff;
}
.testimonios-control.prev {
  left: 0;
}
.testimonios-control.next {
  right: 0;
}
@media (max-width: 900px) {
  .testimonios-control {
    display: none; /* Swipe on mobile */
  }
}

/* ================= TARGETAS DE PELICULAS EN HERO BANNER ================= */
.custom-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: linear-gradient(to right, rgba(4,17,39,0.92) 30%, rgba(4,17,39,0.3) 100%);
  display: flex;
  align-items: center;
  padding: 40px 60px;
  box-sizing: border-box;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.banner-movie-card {
  position: relative;
  width: 160px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s, box-shadow 0.3s;
}
.banner-movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.banner-movie-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #00e5ff;
  box-shadow: 0 15px 30px rgba(0, 229, 255, 0.3);
}
.banner-movie-card:hover img {
  transform: scale(1.05);
}
.banner-movie-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
  box-sizing: border-box;
}
.banner-movie-info h4 {
  color: white;
  font-size: 0.85rem;
  margin: 0 0 3px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.banner-movie-info span {
  color: #facc15;
  font-size: 0.75rem;
  font-weight: 800;
}
@media(max-width:768px) {
  .custom-hero-overlay {
    padding: 20px;
    background: linear-gradient(to top, rgba(4,17,39,0.95) 60%, rgba(4,17,39,0.5) 100%);
    align-items: flex-start;
  }
  .banner-movie-card {
    width: 90px;
    height: 135px;
    border-radius: 8px;
  }
  .banner-movie-info {
    padding: 10px 5px 5px;
  }
  .banner-movie-info h4 {
    font-size: 0.65rem;
  }
  .banner-movie-info span {
    font-size: 0.6rem;
  }
}
    
    .nav-actions select {
        flex: 1;
    }

}
