/* ==========================================================
   WMAX - styles.css (LIMPIO / ORGANIZADO)
   - Sin reglas repetidas
   - Header responsive con: logo + hamburguesa + Colombia + redes
   - Slider Bootstrap visible (corrige el bug de height:10px / opacity:0)
   ========================================================== */

/* =========================
   0) RESET + BASE
   ========================= */
*,
*::before,
*::after{ box-sizing: border-box; }

html, body{ margin: 0; padding: 0; }

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
  background: linear-gradient(to right, #1F355E, #5F8FB6, #8FAEC7);
}

img{ max-width: 100%; height: auto; display: block; }

/* Compensación del header fijo */
main{ padding-top: 98px; }

/* =========================
   1) HEADER (fixed)
   ========================= */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 9999;
}

.wmax-hero{
  padding: 0 16px; /* quita altura extra */
}



/* CONTENEDOR */
.header-inner{
  max-width: 1600px;
  margin: 0 auto;
  height: 96px;
  padding: 0 60px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

/* ================= LOGO ================= */
.logo img{
  height: 50px;
  width: auto;
  display: block;
}

/* ================= BOTÓN HAMBURGUESA ================= */
.menu-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span{
  display: block;
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 999px;
  margin: 5px auto;
}


/* ================= NAV DESKTOP ================= */
.main-nav{
  display: flex;
  align-items: center;
  justify-content: center; /* 🔥 CENTRADO */
  gap: 40px;
}
.nav-list{
  display: flex;
  align-items: center;
  gap: 36px;              /* 🔥 ESPACIO ENTRE ITEMS */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item{ position: relative; }

.nav-link{
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 8px 4px;
}
.nav-item.has-dropdown > .nav-link::after{
  content: "▾";
  margin-left: 6px;
  font-size: 12px;
}


/* ================= DROPDOWN DESKTOP ================= */
.dropdown{
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 0;
  list-style: none;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
}

.dropdown a{
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 13px;
  color: #333;
}
.dropdown a:hover{
  background: #f5f5f5;
}

/* Hover desktop */
@media (min-width: 901px){
  .nav-item:hover .dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }}

/* ================= BLOQUE DERECHO ================= */
.nav-extra{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* País */
.country-box{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.country-flag img{
  width: 26px;
  height: 18px;
  border-radius: 3px;
}


/* Botones */
.nav-buttons{
  display: flex;
  gap: 10px;
}
.btn{
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.btn-outline{
  background: #fff;
  border: 1px solid #0c4452;
  color: #0c4452;
}
.btn-primary{
  background:#314f8f;
  border: 1px solid #314f8f;
  color:#ffffff;
}
/* Redes */
.nav-social{
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-social li{
  display: flex;
}

/* ICONOS REDES (outline, sin deformar) */
.nav-social a{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  color: #111;
  text-decoration: none;
}


/* SVG normalizado */
.nav-social a svg{
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
  fill: currentColor;
}


/* Hover general */
.nav-social a:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.15);
  color:#fff;
}



/* Colores por red en hover */
.nav-social a[aria-label="Facebook"]:hover{ background:#1877f2; }
.nav-social a[aria-label="Instagram"]:hover{
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
}
.nav-social a[aria-label="WhatsApp"]:hover{ background:#25d366; }
/* Icono blanco al hover */
.nav-social a:hover svg{
  fill: #ffffff;
}


/* ================= MÓVIL ================= */
@media (max-width: 900px){

  .header-inner{
    grid-template-columns: auto auto;
    padding: 0 16px;
  }

  .menu-toggle{
    display: block;
  }

  .main-nav{
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 20px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .25s ease;
  }

  .site-header.is-open .main-nav{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list{
    flex-direction: column;
    gap: 10px;
  }

  .nav-link{
    width: 100%;
    text-align: left;
    padding: 14px;
    border-radius: 12px;
    background: #f7f7f9;
  }

  /* Dropdown móvil */
  .dropdown{
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
  }

  .nav-item.is-open > .dropdown{
    display: block;
  }

  .dropdown a{
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
  }

  .nav-extra{
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-top: 1px solid #eee;
    padding-top: 16px;
  }

  .nav-buttons{
    flex-direction: column;
  }

  .nav-buttons a{
    width: 100%;
    text-align: center;
  }

  .nav-social{
    justify-content: center;
  }
}
 /* final del header



/* ====== COMIENZO DE FOOTER   ====== */
/* ================= FOOTER WMAX ================= */



.site-footer{
  background:#fff;
  border-top:1px solid #e6e9ef;
}

/* CONTENEDOR PRINCIPAL */
.footer-inner{
  max-width:1400px;
  margin:0 auto;
  padding:70px 40px;   /* ⬅️ MÁS GRANDE */
  display:grid;
  grid-template-columns: 260px 1.6fr 1.2fr 260px;
  gap:60px;
  align-items:flex-start;
}

/* LOGO */
.footer-logo img{
  max-width:200px;
}

/* DIRECCIÓN */
.footer-location h4,
.footer-social h4{
  font-size:16px;
  font-weight:800;
  margin-bottom:14px;
}

.footer-location p{
  font-size:14.5px;
  line-height:1.6;
  color:#2f3646;
}

/* LINK MAPA */
.footer-map-link{
  display:inline-block;
  margin-top:10px;
  font-weight:700;
  color:#1d4ed8;
  text-decoration:none;
}

/* =========================
   MENÚ ORGANIZADO (PRODUCTOS)
   ========================= */
.footer-menu-strip{
  display:flex;
  align-items:flex-start;
}

.footer-menu-links{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;            /* ⬅️ orden vertical */
}

.footer-menu-links a{
  font-size:15px;
  font-weight:600;
  color:#1b1f2a;
  text-decoration:none;
  position:relative;
  padding-left:14px;
  transition:all .25s ease;
}

/* pequeño indicador visual */
.footer-menu-links a::before{
  content:"›";
  position:absolute;
  left:0;
  color:#2563eb;
  font-weight:800;
}

.footer-menu-links a:hover{
  color:#2563eb;
  transform:translateX(4px);
}

/* =========================
   REDES SOCIALES
   ========================= */
.social-footer{
  display:flex;
  gap:14px;
  list-style: none;/* =========================
   quitar lista
   ========================= */
}

.social-footer a{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid #d6dbe6;
  display:grid;
  place-items:center;
  font-weight:800;
  color:#1b1f2a;
  text-decoration:none;
  transition:all .25s ease;

}

.social-footer a:hover{
  transform:translateY(-3px) scale(1.05);
  border-color:#2563eb;
  color:#2563eb;
}

/* =========================
   BARRA INFERIOR
   ========================= */
.footer-bottom{
  border-top:1px solid #e6e9ef;
  padding:22px;
  text-align:center;
  font-size:14px;
  color:#3b4456;
}

/* =========================
   RESPONSIVE
   ========================= */
@media(max-width:1100px){
  .footer-inner{
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:60px 28px;
  }
}

@media(max-width:640px){
  .footer-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-menu-links{
    align-items:center;
  }

  .footer-menu-links a::before{
    display:none;
  }

  .social-footer{
    justify-content:center;
  }
}


/* ================= RESPONSIVE ================= */




/* ================= HERO TILES CON IMAGEN portada  ================= */

.hero-tiles{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:32px;
  padding: 80px 8%;
}

/* Tile base */
.tile{
  border-radius:22px;
  padding:50px;
  min-height:300px;
  display:grid;
  align-items:center;
}

/* Layout texto + imagen */
.tile-media{
  grid-template-columns: 1.1fr 0.9fr;
  gap:30px;
}

/* Colores */
.tile.dark{
  background: linear-gradient(135deg,#1e293b,#0f172a);
  color:#fff;
}

.tile.light{
  background:#f4f6f8;
  color:#111;
}

/* Texto */
.tile-text h2{
  font-size:1.9rem;
  margin-bottom:12px;
}

.tile-text p{
  font-size:1rem;
  opacity:.85;
}

/* Imagen */
.tile-image{
  display:flex;
  justify-content:center;
  align-items:center;
}

.tile-image img{
  max-width:260px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.35));
  transition: .4s ease;
}

/* Hover sutil tipo Apple */
.tile:hover .tile-image img{
  transform: rotate(-3deg) scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width:900px){
  .hero-tiles{
    grid-template-columns:1fr;
  }

  .tile-media{
    grid-template-columns:1fr;
    text-align:center;
  }

  .tile-image img{
    max-width:220px;
    transform:none;
  }
}


/* =================  fin de hero portada  ================= */


/* whatsapp intereactive en todas las paginas                */

/* ================= BOTÓN WHATSAPP GLOBAL ================= */

.btn-whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;
  background: #25D366;
  color: #fff;
  text-decoration: none;

  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;

  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);

  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-whatsapp-float svg{
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-whatsapp-float:hover{
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

/* Móvil: solo icono */
@media (max-width: 520px){
  .btn-whatsapp-float span{
    display: none;
  }
  .btn-whatsapp-float{
    padding: 14px;
  }
}
/* ================= fin de icono whatsapp================= */
/* ===================== TODAS LAS TARJETAS COTE  TECNO CREATIVE ===================== */
/* ===== SECCIÓN ===== */
/* ================== CATÁLOGO TECNO TARJETAS ================== */
.tcatalog{
  padding: 56px 20px;
  background: radial-gradient(circle at top, #1a2440, #070a12);
}

.tcatalog-head{
  max-width: 1400px;
  margin: 0 auto 22px;
}

.tcatalog-title{
  margin: 0 0 8px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}

.tcatalog-sub{
  margin: 0;
  color: rgba(255,255,255,.74);
  max-width: 920px;
  line-height: 1.4;
}

/* GRID como catálogo (muchos productos) */
.tcatalog-grid{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
}

/* Card estilo segunda foto */
.tcard{
  background: radial-gradient(circle at top, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.tcard:hover{
  transform: translateY(-6px);
  box-shadow: 0 40px 110px rgba(0,0,0,.70);
}

.tcard-title{
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  text-align: center;
}

.tcard-desc{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.35;
  text-align: center;
  min-height: 44px; /* mantiene orden */
}

/* Caja de imagen grande como mockup */
.tcard-media{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow: hidden;
  padding: 10px;
  display: grid;
  place-items: center;
  min-height: 230px;
}

.tcard-media img{
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.55));
}

/* Botón verde como tu foto */
.tcard-btn{
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #35d07b, #1fb463);
  color: #062315;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
}

.tcard-btn:hover{
  filter: brightness(1.05);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1200px){
  .tcatalog-grid{ grid-template-columns: repeat(3, minmax(220px, 1fr)); }
}

@media (max-width: 900px){
  .tcatalog-grid{ grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}

@media (max-width: 520px){
  .tcatalog{ padding: 44px 14px; }
  .tcatalog-grid{ grid-template-columns: 1fr; }
  .tcard-media{ min-height: 210px; }
}


/* ===================== AHORA SECTION VOLANTES ITEM   ===================== */

/* ===================== VOLANTES TECNO ===================== */
.volantes-tech{
  padding: 90px 8%;
  background:
    radial-gradient(900px 450px at 18% 10%, rgba(90,130,255,.13), transparent 60%),
    radial-gradient(780px 420px at 85% 20%, rgba(120,220,255,.14), transparent 55%),
    linear-gradient(180deg, #070b18, #0c1228 60%, #070b18);
}

.volantes-head{
  text-align:center;
  margin-bottom: 42px;
}

.volantes-title{
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 2px;
  color:#eaf1ff;
  margin:0 0 10px;
  text-shadow: 0 0 14px rgba(120,220,255,.22);
}

.volantes-sub{
  max-width: 760px;
  margin:0 auto;
  color: rgba(234,241,255,.78);
  line-height:1.6;
}

.volantes-block-title{
  margin: 40px 0 18px;
  font-size: 1.1rem;
  color: #eaf1ff;
  letter-spacing: .6px;
}
.volantes-block-title span{
  color: rgba(234,241,255,.65);
  font-weight: 500;
  font-size: .95rem;
  margin-left: 8px;
}

.volantes-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

/* Card */
.vol-card{
  position:relative;
  border-radius: 35px;
  padding: 18px;
  background: rgba(15,22,55,.55);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(120,220,255,.08);
  overflow:hidden;
  transition: .35s ease;
}

.vol-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 24px;
  background: linear-gradient(120deg,
    rgba(120,220,255,0),
    rgba(120,220,255,.45),
    rgba(90,130,255,.45),
    rgba(120,220,255,0)
  );
  filter: blur(14px);
  opacity: .35;
  pointer-events:none;
}

.vol-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 30px 70px rgba(0,0,0,.60),
    0 0 28px rgba(120,220,255,.14);
}

/* Imagen + HUD */

/* Imagen + HUD (RESPONSIVE) */
.vol-media{
  position: relative;
  width: 100%;
  border-radius: 18px;
  display: grid;
  place-items: center;

  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
  overflow: hidden;

  /* ✅ responsive: altura adaptable */
  min-height: 200px;
  height: clamp(200px, 28vw, 320px);

  /* ✅ mantiene una proporción agradable (ajusta si quieres) */
  aspect-ratio: 16 / 9;
}

/* Imagen responsive dentro del contenedor */
.vol-media img{
  position: relative;
  z-index: 2;

  /* ✅ no se sale y escala bien */
  width: min(95%, 320px);
  height: auto;
  max-height: 95%;

  object-fit: contain;

  filter: drop-shadow(0 22px 30px rgba(0,0,0,.55));
  transition: transform .35s ease, filter .35s ease;
}

/* Hover (opcional) */
.vol-media:hover img{
  transform: translateY(-4px) scale(1.03);
}

/* Extra: en pantallas muy pequeñas */
@media (max-width: 520px){
  .vol-media{
    aspect-ratio: 4 / 3;
    height: clamp(200px, 55vw, 300px);
  }
  .vol-media img{
    width: 92%;
    max-height: 88%;
  }
}

.vol-hud::after{
  inset:-26px;
  border: 1px solid rgba(255,255,255,.08);
  opacity: .55;
}


.vol-card:hover .vol-media img{
  transform: scale(1.08);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.65));
}

/* Texto */
.vol-body{
  padding: 14px 6px 6px;
}

.vol-body h4{
  margin: 10px 0 6px;
  font-size: 1.1rem;
  color:#fff;
  letter-spacing: .3px;
}

.vol-body p{
  margin:0 0 12px;
  font-size: .95rem;
  color: rgba(234,241,255,.75);
  line-height: 1.45;
}

/* Chip */
.vol-chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: 1.1px;
  font-weight: 900;
  text-transform: uppercase;
  color: #07101f;
  background: linear-gradient(90deg,#78dcff,#5a82ff);
  box-shadow: 0 0 18px rgba(120,220,255,.28);
}


/* ===================== FIN VOLANTES ===================== */


/* ===================== PLEGABLES - HERO TECNO ===================== */


.hero-plegables{
  
  position: relative;
  padding: 90px 8% 60px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 18% 20%, rgba(46,211,230,.18), transparent 60%),
    radial-gradient(800px 420px at 85% 30%, rgba(100,140,255,.16), transparent 55%),
    linear-gradient(180deg, #060913, #0b1024 55%, #060913);
} 

.hero-plegables-inner{
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  
  
}



.hero-plegables-copy{
  color: #eaf2ff;
}

.visual-card{
  width: min(820px, 95%);   /* antes 420px */
  padding: 22px;
}


.hero-badge{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: 1.4px;
  background: rgba(46,211,230,.12);
  border: 1px solid rgba(46,211,230,.25);
  color: rgba(234,242,255,.95);
  text-transform: uppercase;
}

.hero-plegables-copy h1{
  margin: 14px 0 12px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(46,211,230,.22);
}

.hero-plegables-copy p{
  margin: 0 0 18px;
  max-width: 640px;
  color: rgba(234,242,255,.80);
  line-height: 1.65;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.btn-neo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  color: #081220;
  background: linear-gradient(90deg, #2ED3E6, #7aa6ff);
  box-shadow: 0 14px 40px rgba(46,211,230,.15);
  transition: transform .2s ease, filter .2s ease;
}
.btn-neo:hover{ transform: translateY(-2px); filter: brightness(1.05); }

.btn-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  color: rgba(234,242,255,.92);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s ease, background .2s ease;
}
.btn-ghost:hover{ transform: translateY(-2px); background: rgba(255,255,255,.09); }

.hero-specs{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
}

.spec{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.spec-k{
  display:block;
  font-size: .72rem;
  opacity: .75;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.spec-v{
  display:block;
  font-weight: 800;
  margin-top: 3px;
}

/* Visual derecha */
.hero-plegables-visual{
  position: relative;
  display: grid;
  place-items: center;
}

.visual-orb{
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(46,211,230,.35), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(122,166,255,.28), transparent 55%);
  filter: blur(10px);
  opacity: .7;
  animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat{
  0%,100%{ transform: translateY(0) }
  50%{ transform: translateY(-14px) }
}

.visual-card{
   width: min(720px, 100%);   /* antes 420–620 */
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
  transform-style: preserve-3d;
    transform: translateY(-20px); /* sobresale del hero */
}


.visual-card img{
  width: 100%;
  height: auto;
  display: block;
  transform: translateZ(30px);
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.55));
}

.visual-glow{
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(46,211,230,.0), rgba(46,211,230,.45), rgba(122,166,255,.45), rgba(46,211,230,.0));
  filter: blur(14px);
  opacity: .55;
  pointer-events: none;
}

/* ===================== FORMATO CARDS ===================== */
/* ================= HERO BANNNERS GOTA (TECNO) ================= */

.hero-gota{
  position: relative;
  padding: 95px 8% 70px;
  overflow: hidden;

  color: #eaf2ff;/* ================= fondo banner ================= */
}

/* layout top */
.hero-gota-inner{
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

/* copy */
.hero-tag{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: 1.4px;
  background: rgba(46,211,230,.10);
  border: 1px solid rgba(46,211,230,.22);
  color: rgba(234,242,255,.95);
  text-transform: uppercase;
}

.hero-gota-copy h1{
  margin: 14px 0 12px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(46,211,230,.18);
}

.hero-desc{
  margin: 0 0 16px;
  max-width: 760px;
  color: rgba(234,242,255,.78);
  line-height: 1.75;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 16px;
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.hero-btn-primary{
  background: linear-gradient(90deg, #2ED3E6, #7aa6ff);
  color: #07111f;
  box-shadow: 0 14px 40px rgba(46,211,230,.14);
}
.hero-btn-primary:hover{ transform: translateY(-2px); filter: brightness(1.05); }

.hero-btn-ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(234,242,255,.92);
}
.hero-btn-ghost:hover{ transform: translateY(-2px); background: rgba(255,255,255,.09); }

.hero-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-chips .chip{
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(234,242,255,.85);
}

/* visual */
.hero-gota-visual{
  position: relative;
  display: grid;
  place-items: center;
}

.hero-orb{
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(46,211,230,.30), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(122,166,255,.22), transparent 55%);
  filter: blur(10px);
  opacity: .7;
  animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}

.hero-frame{
  width: min(540px, 95%);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
}

.hero-frame img{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.55));
}

/* cards inside hero */
.hero-gota-cards{
  max-width: 1500px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gota-hero-card{
  position: relative;
  border-radius: 20px;
  padding: 18px 18px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gota-hero-card:hover{
  transform: translateY(-8px);
  border-color: rgba(46,211,230,.35);
  box-shadow: 0 30px 90px rgba(0,0,0,.70),
              0 0 26px rgba(46,211,230,.12);
}

.gota-hero-card.is-highlight{
  border-color: rgba(46,211,230,.45);
  box-shadow:
    0 0 0 1px rgba(46,211,230,.22) inset,
    0 30px 90px rgba(0,0,0,.70);
}

.size-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  background: rgba(46,211,230,.12);
  border: 1px solid rgba(46,211,230,.25);
  color: rgba(234,242,255,.92);
}

.gota-hero-card h3{
  margin: 6px 0 12px;
  font-size: 2rem;
  font-weight: 900;
}

.gota-hero-card ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.gota-hero-card li{
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
  color: rgba(234,242,255,.82);
  font-size: .95rem;
}
.gota-hero-card li:last-child{ border-bottom: 0; }

/* responsive */
@media (max-width: 1100px){
  .hero-gota-cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px){
  .hero-gota{ padding: 78px 6% 55px; }
  .hero-gota-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .hero-gota-cards{ grid-template-columns: 1fr; }
}


/* ================= FIN GOTA TECNO ================= */




/* ================= INICO DE CARDS BANDERAS  TECNO ================= */

.hero-center-slider{
  position: relative;
  overflow: hidden;
}


@keyframes floatCenter{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* Contenedor slides */
.center-slides{
  position: relative;
  width: 100%;
  height: 100%;
}

/* Cada slide */
.center-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(.96);
  transition: opacity .55s ease, transform .55s ease;
  
}

/* Slide activo */
.center-slide.is-active{

  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Efecto 3D suave al pasar mouse */
.hero-center-slider:hover{
  transform: perspective(900px) rotateX(3deg) rotateY(-3deg);
}

/* Flechas */
.center-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 46px;
 
  background: rgba(10,14,30,.55);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;
 
}
.center-arrow:hover{
  transform: translateY(-50%) scale(1.06);
  background: rgba(10,14,30,.75);
  border-color: rgba(46,211,230,.35);
}

.center-arrow.prev{ left: 10px; }
.center-arrow.next{ right: 10px; }

/* Dots */
.center-dots{
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}

.center-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.center-dots button.is-active{
  background: rgba(46,211,230,.88);
  transform: scale(1.35);
}

/* Responsive flechas más pequeñas */
@media (max-width: 900px){
  .center-arrow{
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
  .center-arrow.prev{ left: 6px; }
  .center-arrow.next{ right: 6px; }
}

/* ================= FIN DE CARDS BANDERAS  TECNO ================= */

 /* ================= HERO VISUAL (FONDO + SLIDER CENTRO) ================= */
.hero-gota-visual{
  position: relative;
  width: 100%;
  min-height: 100px;         /* ajusta si quieres */
  border-radius: 9px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

/* Fondo fijo */
.hero-gota-visual .hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
 



  justify-content: flex-end;
 
  z-index: 0;
  
}

/* Overlay opcional para que se vea más tecno */
.hero-bg-overlay{
  position: absolute;
  inset: 0;

  z-index: 2;
  pointer-events: none;
}

/* Contenedor del slider en el centro (la imagen que cambia) */
.hero-center-slider{
  position: relative;
  z-index: 7;
  width: min(240px, 55vw);
  height: 910px;
 
  display:grid;
  place-items: center;


 
 
 

  animation: floatHero 5.5s ease-in-out infinite;
}

@keyframes floatHero{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* Slides */
.center-slides{
  position: relative;
  width: 100%;
  height: 100%;
}

.center-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(.96);
  transition: opacity .55s ease, transform .55s ease;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.55));
}

.center-slide.is-active{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Flechas */
.center-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
}

.center-arrow.prev{ left: 12px; }
.center-arrow.next{ right: 12px; }

.center-arrow:hover{
  background: rgba(0,0,0,.65);
}

/* Puntos */
.center-dots{
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 6;
}

.center-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.18);
  cursor: pointer;
}

.center-dot.is-active{
  background: rgba(46,211,230,.9);
  border-color: rgba(46,211,230,.9);
}

/* Responsive */
@media (max-width: 900px){
  .hero-gota-visual{ min-height: 420px; border-radius: 18px; }
  .hero-center-slider{ height: 300px; }
}


/* ===================== TIPOS DE BANDERAS (CARDS TECNO) ===================== */


/* ================= EMPEZAR BANNER DE BANDERAS  ================= */
/* ===================== TIPOS DE BANDERAS (CARDS TECNO) ===================== */

.flags-tech{ 
  padding: 90px clamp(14px, 3vw, 46px);
  position: relative;
  overflow: hidden;

}

.flags-tech-head{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.flags-tech-title{
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  letter-spacing: 2px;
  color: #eaf2ff;
  text-shadow: 0 0 14px rgba(46,211,230,.18);
}

.flags-tech-sub{
  margin: 0 auto;
  color: rgba(234,242,255,.78);
  line-height: 1.65;
}

/* GRID */
.flags-tech-grid{
  width: 100%;
  max-width: 1700px;   /* antes 1400px */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}



/* CARD */
.flag-card{
  min-width: 0;
    
  width: 100%;
  position: relative;
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.flag-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(46,211,230,.0), rgba(46,211,230,.35), rgba(122,166,255,.28), rgba(46,211,230,.0));
  filter: blur(14px);
  opacity: .35;
  pointer-events:none;
}

.flag-card:hover{
  transform: translateY(-8px);
  border-color: rgba(46,211,230,.35);
  box-shadow: 0 30px 90px rgba(0,0,0,.65),
              0 0 26px rgba(46,211,230,.10);
}

.flag-card.is-highlight{
  border-color: rgba(46,211,230,.45);
  box-shadow:
    0 0 0 1px rgba(46,211,230,.18) inset,
    0 30px 90px rgba(0,0,0,.65);
}

/* Imagen */
.flag-media{
  height: 220px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}

.flag-media img{
  max-height: 210px;
  width: auto;
  transform: translateZ(0);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
  transition: transform .25s ease;
}

.flag-card:hover .flag-media img{
  transform: scale(1.06);
}

/* Texto */
.flag-body{
  padding: 14px 6px 6px;
}

.flag-body h3{
  margin: 10px 0 8px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .4px;
  color: #eaf2ff;
}

.flag-body p{
  margin: 0 0 12px;
  color: rgba(234,242,255,.75);
  line-height: 1.55;
  font-size: .95rem;
}

/* Chips */
.flag-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flag-chip{
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .6px;
  background: rgba(46,211,230,.10);
  border: 1px solid rgba(46,211,230,.18);
  color: rgba(234,242,255,.92);
}

/* CTA */
.flags-tech-cta{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.flags-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(90deg, #2ED3E6, #7aa6ff);
  color: #07111f;
  box-shadow: 0 14px 40px rgba(46,211,230,.14);
  transition: transform .18s ease, filter .18s ease;
}
.flags-btn:hover{ transform: translateY(-2px); filter: brightness(1.05); }


.banner-pluma{
  background-image: url("img/banner-pluma.jpg");
}


/* RESPONSIVE */
@media (max-width: 1100px){
  .flags-tech-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .flags-tech{ padding: 70px 6%; }
  .flags-tech-grid{ grid-template-columns: 1fr; }
  .flag-media{ height: 210px; }
}

/* ================== SLIDER SOLO CENTRO (hero-frame) ================== */
/* ===== Secciones tech (FULL WIDTH) ===== */
.section-tech{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 90px clamp(14px, 3vw, 46px);
  position: relative;
  overflow: hidden;

}

/* Banner por sección */
.section-banner{
  text-align: center;
  max-width: 920px;
  margin: 0 auto 34px;
}

.section-title{
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 2px;
  color: #eaf2ff;
  text-shadow: 0 0 14px rgba(46,211,230,.18);
}

.section-sub{
  margin: 0 auto;
  color: rgba(234,242,255,.78);
  line-height: 1.65;
}

/* Grid 4 cards */
.tech-grid{
  width: min(1700px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Card */
.tech-card{
  position: relative;
 
padding:28px 22px;

 backdrop-filter: blur(12px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(120,220,255,.12);
  transition:.35s ease;
  overflow:hidden;

 
  
}

.tech-card{
     background:
    radial-gradient(900px 450px at 18% 10%, rgba(90,130,255,.13), transparent 60%),
    radial-gradient(780px 420px at 85% 20%, rgba(120,220,255,.14), transparent 55%),
    linear-gradient(180deg, #070b18, #0c1228 60%, #070b18); /* 👈 FONDO */

 
  border-radius: 22px;
}

.tech-card::before{
  content:"";
  position:absolute;
  inset:-2px;
   filter: blur(14px);
  

}

.tech-card:hover{
  transform: translateY(-8px);
  border-color: rgba(170, 191, 194, 0.35);
  
 
}

.tech-card.is-highlight{
 color: rgba(255, 255, 255, 0.18) inset,;
}

/* Imagen */
.tech-media{
  height: 220px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;hero-gota
  
}

.tech-media img{
    max-height: 220px;
  width:auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));


 
}

.tech-card:hover .tech-media img{
  transform: scale(1.06);

  
}

/* Texto */
.tech-body{ padding: 14px 6px 6px; }

.tech-body h3{
  margin: 10px 0 8px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .4px;
  color: #eaf2ff;
  
}

.spec-list{

color: #ffffff;
  }
.tech-body p{
  margin: 0 0 12px;
  color: rgba(234,242,255,.75);
  line-height: 1.55;
  font-size: .95rem;
}

/* Chips */
.tech-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-chip{
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .6px;
  background: rgba(46,211,230,.10);
  border: 1px solid rgba(46,211,230,.18);
  color: rgba(234,242,255,.92);
}

/* CTA */
.section-cta{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.section-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(90deg, #2ED3E6, #7aa6ff);
  color: #07111f;
  box-shadow: 0 14px 40px rgba(46,211,230,.14);
  transition: transform .18s ease, filter .18s ease;
}

.section-btn:hover{ transform: translateY(-2px); filter: brightness(1.05); }

/* Responsive */
@media (max-width: 1200px){
  .tech-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .section-tech{ padding: 70px 16px; }
  .tech-grid{ grid-template-columns: 1fr; }
  .tech-media{ height: 210px; }
}
/* card con imagen y banner  */

.section-banner{
  position: relative;
  height: 280px;
  width: 100%;
 
aspect-ratio: 1920 / 500;  /* ✅ misma proporción del gif */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  overflow: hidden;
  
}

/* Imagen como portada */
.banner-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
/* Overlay para legibilidad */
.banner-overlay{
  position: absolute;
  inset: 0;

  z-index: 1;
}

/* Texto encima */
.section-title,
.section-sub{
  position: relative;
  z-index: 2;
}

.section-title{
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  letter-spacing: 3px;
  color: #eaf2ff;
  text-shadow: 0 0 22px rgba(46,211,230,.35);
}

.section-sub{
  max-width: 820px;
  font-size: 1.05rem;
  color: rgba(234,242,255,.85);
}

/* fin con imagen y banner  */


@media (max-width:560px){
  .section-banner{ aspect-ratio: 16 / 9; } /* o 4/3 según te guste */
}


imagen 

/* imagen banderas  */
.hero-title-img{
  display: block;
  margin: 14px auto 10px;
  width: 120px;        /* ajusta tamaño aquí */
  max-width: 60%;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.45));
}

/* Animación flotante */
.floating{
  animation: floatHero 4s ease-in-out infinite;
}

@keyframes floatHero{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
/* fin  banderas  */
/* =========================
   RETRO-TECH CARDS (WMAX)
========================= */
:root{
  --rtx-bg: #05070f;
  --rtx-bg2:#090f24;
  --rtx-card:#0a1533;
  --rtx-cyan:#00f6ff;
  --rtx-green:#39ff14;
  --rtx-purple:#7b2cff;
  --rtx-text:#eaf2ff;
  --rtx-muted:#c7d3ff;
}

.rtx-section{
  padding: 90px 18px;
  background:
    radial-gradient(circle at 15% 0%, rgba(123,44,255,0.20), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(0,246,255,0.16), transparent 52%),
    radial-gradient(circle at 50% 120%, rgba(57,255,20,0.12), transparent 55%),
    linear-gradient(180deg, var(--rtx-bg), #02030a);
  color: var(--rtx-text);
  overflow: hidden;
}

.rtx-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.rtx-head{
  text-align: center;
  margin-bottom: 34px;
}

.rtx-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,246,255,0.25);
  background: rgba(10,21,51,0.55);
  box-shadow: 0 0 18px rgba(0,246,255,0.12);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rtx-head h2{
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  margin: 14px 0 10px;
  letter-spacing: .04em;
  text-shadow: 0 0 18px rgba(0,246,255,0.22);
}

.rtx-head p{
  max-width: 760px;
  margin: 0 auto;
  color: var(--rtx-muted);
  line-height: 1.65;
  font-size: 1rem;
}

/* GRID */
.rtx-grid{
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px){
  .rtx-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .rtx-grid{ grid-template-columns: 1fr; }
}

/* CARD */
.rtx-card{
  background: linear-gradient(160deg, rgba(123,44,255,0.10), rgba(0,246,255,0.06), rgba(57,255,20,0.05)),
              linear-gradient(180deg, var(--rtx-card), rgba(5,7,15,0.88));
  border: 1px solid rgba(0,246,255,0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 22px rgba(0,246,255,0.12),
    inset 0 0 24px rgba(0,246,255,0.05);
  position: relative;
  transform: translateZ(0);
}

/* HUD line sweep */
.rtx-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg,
    transparent 35%,
    rgba(0,246,255,0.22),
    transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events:none;
}

.rtx-card:hover::before{
  opacity: 1;
}

/* MEDIA */
.rtx-media{
  position: relative;
  height: 210px;
  background: linear-gradient(180deg, rgba(0,246,255,0.08), transparent);
  overflow: hidden;
}

.rtx-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.35) contrast(1.15) drop-shadow(0 0 14px rgba(0,246,255,0.35));
}

/* Scanlines */
.rtx-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(2,3,10,0.95)),
    repeating-linear-gradient(to bottom,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.035) 1px,
      transparent 1px,
      transparent 3px);
  pointer-events:none;
}

/* CHIP */
.rtx-chip{
  position:absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #031018;
  background: linear-gradient(90deg, var(--rtx-green), var(--rtx-cyan));
  box-shadow: 0 0 18px rgba(0,246,255,0.35);
}

.rtx-chip-alt{
  background: linear-gradient(90deg, var(--rtx-purple), var(--rtx-cyan));
}

/* BODY */
.rtx-body{
  padding: 18px 18px 20px;
}

.rtx-body h3{
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--rtx-text);
  text-shadow: 0 0 14px rgba(0,246,255,0.50), 0 2px 10px rgba(0,0,0,0.75);
}

.rtx-body p{
  margin: 0 0 12px;
  color: var(--rtx-muted);
  line-height: 1.65;
  font-size: 1rem; /* legible */
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
}

.rtx-list{
  margin: 0 0 16px;
  padding-left: 18px;
  color: rgba(234,242,255,0.92);
}

.rtx-list li{
  margin: 7px 0;
}

/* ACTIONS */
.rtx-actions{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.rtx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,246,255,0.45);
  background: rgba(0,246,255,0.06);
  color: var(--rtx-cyan);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}

.rtx-btn:hover{
  transform: translateY(-2px);
  background: rgba(0,246,255,0.12);
  box-shadow: 0 0 22px rgba(0,246,255,0.45);
}

.rtx-mini{
  font-size: .85rem;
  color: rgba(199,211,255,0.92);
}
/* inicia sellos */
/* =========================
   SELL0S: HERO + CARDS TECH
========================= */
:root{
  --bg: #05070f;
  --card: #0a1533;
  --card2:#0b0f2e;
  --cyan:#00f6ff;
  --laser:#39ff14;
  --text:#eaf2ff;
  --muted:#c7d3ff;
  --line: rgba(0,246,255,0.18);
}

.pq-hero-sellos{
  background:
    radial-gradient(circle at 10% 0%, rgba(0,246,255,0.12), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(57,255,20,0.08), transparent 55%),
    linear-gradient(180deg, #060818, #02030a);
  padding: 70px 18px;
}

.pq-hero-content{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 900px){
  .pq-hero-content{ grid-template-columns: 1fr; }
}

.pq-badge{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10,21,51,0.55);
  color: var(--text);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.pq-hero-left h1{
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text);
  text-shadow: 0 0 18px rgba(0,246,255,0.22);
}

.pq-hero-left p{
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
  max-width: 650px;
}

.pq-hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pq-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,246,255,0.45);
  background: rgba(0,246,255,0.08);
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  transition: .25s ease;
}

.pq-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(0,246,255,0.35);
}

.pq-btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(199,211,255,0.25);
}

.pq-hero-specs{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

@media (max-width: 520px){
  .pq-hero-specs{ grid-template-columns: 1fr; }
}

.pq-spec{
  background: rgba(10,21,51,0.45);
  border: 1px solid rgba(0,246,255,0.12);
  border-radius: 14px;
  padding: 10px 12px;
}

.pq-spec .k{
  display:block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(234,242,255,0.75);
}

.pq-spec .v{
  display:block;
  margin-top: 4px;
  color: var(--text);
  font-weight: 700;
}

.pq-hero-image{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,246,255,0.18);
  box-shadow: 0 0 28px rgba(0,246,255,0.12);
  background: rgba(10,21,51,0.25);
}

.pq-hero-image img{
  width: 100%;
  height: auto;
  display:block;
}

/* ===== Catalogo / cards ===== */
.sellos-section{
  background: linear-gradient(180deg, #02030a, #060818);
  color: var(--text);
  padding: 75px 18px 90px;
}

.sellos-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.sellos-head{
  text-align:center;
  margin-bottom: 26px;
}

.sellos-head h2{
  margin:0 0 8px;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  text-shadow: 0 0 18px rgba(0,246,255,0.18);
}

.sellos-head p{
  margin:0 auto;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.sellos-block{
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,246,255,0.12);
  background: rgba(10,21,51,0.25);
}

.sellos-block-head{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

@media (max-width: 900px){
  .sellos-block-head{ grid-template-columns: 1fr; }
}

.sellos-block-head h3{
  margin:0 0 6px;
  font-size: 1.25rem;
}

.sellos-block-head p{
  margin:0;
  color: var(--muted);
  line-height: 1.55;
}

.sellos-catalogo-img{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,246,255,0.16);
  box-shadow: 0 0 22px rgba(0,246,255,0.10);
}

.sellos-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

@media (max-width: 980px){
  .sellos-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .sellos-grid{ grid-template-columns: 1fr; }
}

.sello-card{
  background: linear-gradient(160deg, rgba(0,246,255,0.06), rgba(57,255,20,0.04)),
              linear-gradient(180deg, var(--card), rgba(5,7,15,0.9));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: inset 0 0 18px rgba(0,246,255,0.05);
}

.sello-top{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  align-items:center;
  margin-bottom: 10px;
}

.sello-chip{
  display:inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--laser), var(--cyan));
  color: #001018;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .78rem;

}

.sello-size{
  color: rgba(234,242,255,0.85);
  font-weight: 700;
  font-size: .95rem;
}

.sello-desc{
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 10px;
}

.sello-subtitle{
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: .78rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(234,242,255,0.75);
}

.sello-colors{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.dot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 10px rgba(0,246,255,0.08);
}

/* Colores sólidos */
.c-black{ background:#0c0c10; }
.c-blue{ background:#116bff; }
.c-yellow{ background:#ffd400; }
.c-red{ background:#ff2d2d; }
.c-beige{ background:#d2b48c; }
.c-gray{ background:#b7bcc8; }

/* Transparentes (simulados) */
.c-tblue{ background: rgba(17,107,255,0.55); }
.c-purple{ background: rgba(160,70,255,0.55); }
.c-tyellow{ background: rgba(255,212,0,0.55); }
.c-tgreen{ background: rgba(57,255,20,0.55); }
.c-tred{ background: rgba(255,45,45,0.55); }
.c-lblue{ background: rgba(110,220,255,0.55); }
.c-pink{ background: rgba(255,90,200,0.55); }

.sello-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,246,255,0.45);
 
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .78rem;
  text-decoration:none;
  transition: .25s ease;
}

.sello-btn:hover{
  transform: translateY(-2px);

}

.sellos-note{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 10px;

}

.sellos-note .tag{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,246,255,0.18);

  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pq-hero-right{
  perspective: 1200px;
}

.pq-hero-image.pq-hero-anim{
  position: relative;
  border-radius: 22px;

  transform-style: preserve-3d;
}
.pq-main-img{
  width: 100%;
  display: block;


}
  .pq-hero-right{
  position: relative;
  perspective: 1200px;
}

.pq-hero-image.pq-mouse-area{
  position: relative;

  transform-style: preserve-3d;
}

/* Imagen principal */
.pq-main-img{
  width: 100%;
  display: block;

}

/* Cohete */
.pq-rocket{
  position: absolute;
  width: 70px;               /* tamaño discreto */
  bottom: 15%;
  right: 15%;
  transform: translateZ(60px);
  transition: transform 0.15s ease-out;

  pointer-events: none;      /* no bloquea mouse */
}

/* Mobile: cohete fijo */
@media (max-width:768px){
  .pq-rocket{
    display: none; /* o déjalo fijo si prefieres */
  }
}

/* fin de sellos */
/* agregar  botn de cotiza */
.btn-whatsapp-card{
  margin-top: 14px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  font-weight: 800;
  letter-spacing: .4px;

  background: linear-gradient(90deg, #25D366, #1ebe5d);
  color: #041b0f;

  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  transition: transform .2s ease, filter .2s ease;
}

.btn-whatsapp-card:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* fin   botn de cotiza */

/* =========================
   HERO ROMPETRAFICOS
   ========================= */

.hero-rompe{
  position: relative;
  height: 80vh;
  background: url('../img/rompetraficos-bg.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.hero-content{
  position:relative;
  max-width:800px;
  padding:20px;
}

.hero-content h1{
  font-size:3rem;
  color:#ff2b2b;
  margin-bottom:15px;
}

.hero-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 30px;
  background:#ff2b2b;
  color:white;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
  transition:0.3s;
}

.hero-btn:hover{
  background:#cc0000;
}

/* =========================
   CARDS
   ========================= */

.rompe-products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  padding:80px 8%;
  background:#f5f5f5;
}

.rompe-card{
  background:white;
  border-radius:15px;
  padding:25px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.rompe-card:hover{
  transform:translateY(-8px);
}

.rompe-img{
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
}

.rompe-img img{
  max-height:200px;
}

.rompe-card h3{
  color:#d40000;
  margin-bottom:10px;
}

.rompe-size{
  display:block;
  margin:10px 0;
  font-weight:bold;
}

.rompe-card a{
  display:inline-block;
  padding:10px 25px;
  background:#111;
  color:white;
  text-decoration:none;
  border-radius:25px;
  margin-top:10px;
  transition:0.3s;
}

.rompe-card a:hover{
  background:#d40000;
  color:white;
}

/* =========================
   RESPONSIVE
   ========================= */

@media(max-width:768px){
  .hero-content h1{
    font-size:2rem;
  }
}

/* =========================
   HERO PORTADA ROMPETRAFICOS
   ========================= */

.hero-rompe{
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* imagen portada */
.hero-rompe-img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

/* capa oscura */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.35)
  );
}

/* contenido */
.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1{
  font-size: clamp(36px,5vw,64px);
  font-weight: 900;
  margin-bottom: 15px;
}

.hero-content p{
  font-size: 18px;
  margin-bottom: 25px;
}

/* botón */
.hero-btn{
  padding: 14px 30px;
  background: #00e676;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: .3s;
}

.hero-btn:hover{
  background: #00c853;
}

/* responsive */
@media (max-width:768px){

.hero-rompe{
  height:420px;
}

.hero-content h1{
  font-size:34px;
}

.hero-content p{
  font-size:16px;
}

}


/* ===== BOTÓN DESCUENTO WMAX ===== */

.btn-descuento{
  position: fixed;
  bottom: 120px;
  left: 20px; /* ahora queda a la izquierda */
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,#ff0066,#ff3c00);
  color: white;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 40px;
  text-decoration: none;
   font-size:    35px; 
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(0,0,0,.35);
  animation: pulsePromo 2s infinite;
}

.btn-descuento:hover{
  transform: scale(1.05);
}

.icono-descuento{
  font-size: 18px;
  font-weight: bold;
}

@keyframes pulsePromo{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.08); }
  100%{ transform: scale(1); }
}

.volantes-cta{
  text-align:center;
  margin-top:40px;
}

.volantes-btn{
  background:#25D366;
  color:#fff;
  padding:14px 28px;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
  display:inline-block;
  transition:0.3s;
  box-shadow:0 10px 25px rgba(37,211,102,0.35);
}

.volantes-btn:hover{
  background:#1ebe5b;
  transform:translateY(-2px);
}

.membrete-productos{

padding:90px 20px;
background:#f3f3f3;
text-align:center;

}

.titulo-membrete{

font-size:44px;
font-weight:700;
margin-bottom:60px;

}

.titulo-membrete span{

background:linear-gradient(90deg,#6f4df5,#ff007a);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.grid-membrete{

max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;

}

.card-membrete{

background:white;
padding:35px;
border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,0.08);

transition:.3s;

}

.card-membrete:hover{

transform:translateY(-10px);

}

.tag-tinta{

display:inline-block;
padding:8px 20px;

background:linear-gradient(90deg,#6f4df5,#ff007a);
color:white;

border-radius:20px;
font-size:14px;
font-weight:700;

margin-bottom:20px;

}

.card-membrete img{

width:140px;
margin-bottom:20px;

}

.card-membrete h3{

font-size:18px;
margin-bottom:10px;

}

.precio{

font-size:38px;
font-weight:700;
margin-bottom:20px;
color:#333;

}

.card-membrete ul{

list-style:none;
padding:0;
margin-bottom:25px;

}

.card-membrete li{

padding:8px 0;
border-bottom:1px solid #eee;

}

.btn-cotizar{

display:inline-block;

background:linear-gradient(90deg,#6f4df5,#ff007a);
color:white;

padding:10px 28px;

border-radius:30px;
font-weight:600;
text-decoration:none;

transition:.3s;

}

.btn-cotizar:hover{

transform:scale(1.05);

}
.banner-membrete{
  position: relative;
  width: 100%;
  min-height: 650px;
  padding: 80px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('img/fondo-textura-negra.jpg') center/cover no-repeat;
  border-radius: 30px;
}

.banner-membrete-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.72) 45%, rgba(0,0,0,.25) 100%);
  z-index: 1;
}

.banner-membrete-content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}

.banner-membrete-texto{
  color: #fff;
  max-width: 620px;
}

.mini-tag{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ff2d55;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-membrete-texto h1{
  font-size: 4.2rem;
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 28px;
  color: #ffffff;
}

.precios-membrete{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.precio-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.precio-item strong{
  font-size: 1.3rem;
  color: #fff;
  font-weight: 800;
}

.precio-item span{
  font-size: 1.5rem;
  color: #ff2d55;
  font-weight: 900;
}

.precio-item.destacado{
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "small small"
    "strong span";
  gap: 8px 15px;
  border: 1px solid rgba(255,45,85,0.45);
  box-shadow: 0 10px 30px rgba(255,45,85,0.15);
}

.precio-item.destacado small{
  grid-area: small;
  color: #d9d9d9;
  font-size: 0.9rem;
}

.precio-item.destacado strong{
  grid-area: strong;
}

.precio-item.destacado span{
  grid-area: span;
}

.nota-membrete{
  font-size: 1rem;
  color: #f1f1f1;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-membrete{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(90deg, #7b2ff7, #ff2d55);
  box-shadow: 0 10px 30px rgba(123,47,247,.25);
  transition: 0.3s ease;
}

.btn-membrete:hover{
  transform: translateY(-3px);
  color: #fff;
}

.banner-membrete-img{
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-membrete-img img{
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.45));
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .banner-membrete-content{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-membrete-texto{
    max-width: 100%;
  }

  .banner-membrete-texto h1{
    font-size: 3.3rem;
  }

  .banner-membrete-img{
    margin-top: 20px;
  }
}

@media (max-width: 768px){
  .banner-membrete{
    min-height: auto;
    padding: 50px 20px;
    border-radius: 20px;
  }

  .banner-membrete-texto h1{
    font-size: 2.5rem;
  }

  .precio-item{
    padding: 15px 16px;
  }

  .precio-item strong{
    font-size: 1.05rem;
  }

  .precio-item span{
    font-size: 1.2rem;
  }

  .btn-membrete{
    width: 100%;
  }
}


.card-whatsapp-btn {
  margin-top: 15px;
  justify-content: center;
}



.card-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 15px;
  padding: 12px 18px;

  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 600;
  font-size: 14px;

  border-radius: 30px;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* ICONO automático */
.card-whatsapp-btn::before {
  content: "📲";
  font-size: 16px;
}

/* EFECTO HOVER */
.card-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, #128C7E, #25D366);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* EFECTO BRILLO */
.card-whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.card-whatsapp-btn:hover::after {
  left: 130%;
}





.btn-volante-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 12px;
  padding: 12px 20px;

  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 600;
  font-size: 14px;

  border-radius: 12px;
  text-decoration: none;

  box-shadow: 0 0 12px rgba(0,114,255,0.4);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* ICONO */
.btn-volante-wa::before {
  content: "📩";
  font-size: 16px;
}

/* EFECTO HOVER */
.btn-volante-wa:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 20px rgba(0,114,255,0.8),
              0 0 40px rgba(0,198,255,0.5);
}

/* EFECTO NEON LINE */
.btn-volante-wa::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, #00c6ff, transparent);
  transition: 0.4s;
}

.btn-volante-wa:hover::after {
  left: 100%;
}