/* =========================================================
   🎯 BASE GENERAL
   ========================================================= */
body{
  margin:0;
  font-family:'Poppins', Arial;
  background:#0b0f1a;
  color:white;
  overflow-x: hidden; 
}
html, body{
  max-width:100%;
  overflow-x:hidden;
}
*{
  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:#141a2a;
  border-radius:16px;
  overflow:visible;
  text-align:center;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  display:flex;
  flex-direction:column;
  position: relative;
}

.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:hidden;
}

.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;
}

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

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

/* =========================================================
   🧩 GRID (PRODUCTOS)
   ========================================================= */
.grid{
  display:grid;
  grid-template-columns:repeat(4,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;
  }
}

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

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

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

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

  .acciones-card{
    gap:8px;
  }

  .btn-comprar{
    font-size:13px;
    padding:11px 14px;
  }

  .btn-info{
    width:40px;
    height:40px;
    font-size:15px;
  }

  .stock-disponible{
    font-size:12px;
    padding:7px 12px;
    margin-bottom:16px;
  }
}



/* =========================================================
   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,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,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);
  color: #020617 !important;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(0, 255, 200, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.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%;

}


.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;
  }

}



.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);
}
.top-navbar{
    position:sticky;
    top:0;
    z-index:9999;
}

.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;
}

@media(max-width:768px){

    .top-navbar{
        flex-wrap:wrap;
        height:auto;
        padding:15px;
        gap:15px;
    }

    .nav-links{
        width:100%;
        justify-content:center;
        gap:15px;
        flex-wrap:wrap;
    }

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

}

@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;
}
.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:100%;
max-width:420px;

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:

0 20px 80px rgba(0,0,0,.5);

animation:popup .4s ease;

}


@keyframes popup{

from{

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

}

to{

opacity:1;
transform:translateY(0);

}

}



.promo-image img{

width:100%;
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;

font-size:18px;

color:#111827;

}



.promo-demo-btn{

display:block;

width:100%;

padding:16px;

border-radius:12px;

text-decoration:none;

background:#ff5b00;

color: #ffffff;

font-weight:700;

font-size:18px;

transition:.3s;

}


.promo-demo-btn:hover{

background:#e54d00;

}



.promo-popup-close{

position:absolute;

top:10px;
right:10px;


width:40px;
height:40px;

border:none;

border-radius:50%;

cursor:pointer;


background:rgb(172, 19, 19);

font-size:18px;

z-index:20;

}



@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;


}