/* ==========================================================
   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, #2a2e3a);
}

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: #2a2e3a;
  z-index: 9999;
}


/* 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: #ffffff;
  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: #ffffff;
  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;



  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
}


/* Hover blanco elegante */
.dropdown a:hover{
  background: rgba(255,255,255,.08);
  color: #ffffff;
}

/* 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 #ffffff;
  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;
}

.nav-social a{
  background: #fff;
  color: #111;             /* icono oscuro por defecto */
}
.nav-social a:hover svg{
  fill: #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 */




/* ================= 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: .5s 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: #2d3680;
  }

  /* Dropdown móvil */
 .dropdown{
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  background: #1f2430;              /* oscuro */
  border-radius: 14px;
  padding: 10px 0;
  list-style: none;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
}

  .nav-item.is-open > .dropdown{
    display: block;
  }

.dropdown a{
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 13px;
  color: #ffffff;                   /* SIEMPRE blanco */
}
  .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


/* ===================== MOSAICO SUBLIMACIÓN (como screenshot) ===================== */
.subli-mosaic{
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 18px 18px;
  background: #222734;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
}

.subli-title{
  margin: 0 0 12px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

/* 3 columnas x 2 filas */
.subli-grid{
  display: grid;
  grid-template-columns: 260px 1fr 1fr; /* tote bag + 2 columnas */
  grid-template-rows: 170px 170px;      /* alto de filas */
  gap: 14px;
}

/* tarjeta base */
.subli-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

/* imágenes llenan la card */
.subli-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* izquierda ocupa 2 filas */
.subli-left{
  grid-row: 1 / span 2;
}

/* ===================== SLIDER DTF (arriba: ocupa 2 columnas) ===================== */
.subli-dtf{
  grid-column: 2 / span 2; /* ocupa col 2 y 3 */
  background: #111;
  overflow: hidden;
  border-radius: 14px;
   min-height: 380px;
}

/* viewport + track */
.subli-dtf-viewport{ width:100%;  min-height: 380px;; overflow:hidden; }
.subli-dtf-track{
  display: flex;
  height: 100%;
  transition: transform .55s ease;
  will-change: transform;
}

/* cada slide */
.subli-dtf-slide{
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

/* imagen derecha */
.subli-dtf-photo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* panel amarillo izquierda */
.subli-dtf-yellow{
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 100%;
  background: #f3c300;
  display: grid;
  place-items: center;
  padding: 12px;
  z-index: 2;
}

/* caja negra */
.subli-dtf-box{
  width: 92%;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;

}

.subli-dtf-top{
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  opacity: .95;
}

.subli-dtf-top span{ opacity: .95; }

.subli-dtf-big{
  margin-top: 6px;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* flechas */
.subli-dtf-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.subli-dtf-arrow.prev{ left: 10px; }
.subli-dtf-arrow.next{ right: 10px; }

.subli-dtf-arrow:hover{ background: rgba(0,0,0,.55); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px){
  .subli-grid{
    grid-template-columns: 1fr;
    grid-template-rows: 260px 200px 200px 200px;
  }

  .subli-left{ grid-row: auto; }
  .subli-dtf{ grid-column: auto; } /* vuelve normal */
}

@media (max-width: 520px){
  .subli-grid{ gap: 12px; }
  .subli-dtf-yellow{ width: 70%; }
  .subli-dtf-big{ font-size: 20px; }
}



 inicio de slider 



 /* ================= SLIDER WMAX (FIX CLICK) ================= */

.section-slider{
  position: relative;
  width: 100%;
}

/* Alto del slide */
#carouselExampleIndicators .carousel-item{
  height: 68vh;
   min-height: 480px;
}

/* Imagen de fondo */
#carouselExampleIndicators .slide-bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay oscuro (NO bloquea clicks) fondo*/
#carouselExampleIndicators .carousel-item::after{
  content:"";
  position:absolute;
  inset:0;
 background: linear-gradient(135deg,#0b1c2d,#1b3b6f);
  z-index: 1;
  pointer-events: none;
}

/* Caption arriba del overlay pero sin bloquear flechas */
#carouselExampleIndicators .carousel-caption{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none; /* <- clave */
}

/* SOLO botones/links del texto sí clickeables */
#carouselExampleIndicators .carousel-caption a,
#carouselExampleIndicators .carousel-caption button{
  pointer-events: auto;
}

/* Flechas e indicadores SIEMPRE clickeables */
#carouselExampleIndicators .carousel-control-prev,
#carouselExampleIndicators .carousel-control-next,
#carouselExampleIndicators .carousel-indicators{
  z-index: 10 !important;
  pointer-events: auto !important;
}

/* GRID (texto izq / imagen der) */
.wmax-grid{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Texto */
.wmax-copy{
  color: #fff;
  text-align: left;
}
.wmax-copy h2{
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 18px;
}
.wmax-copy p{
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 22px;
}

/* Botón */
.wmax-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2ED3E6;
  color: #0b2a4a;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
}

/* imagenes de carusel  */
/* Visual derecha */
/* CONTENEDOR 3D */
#carouselExampleIndicators .wmax-visual{
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible; /* CLAVE: no corta la imagen */
}

/* IMAGEN PRINCIPAL */
#carouselExampleIndicators .wmax-fg{
  max-width: 120%;          /* 🔥 MÁS GRANDE */
  width: 120%;
  height: auto;

  transform-style: preserve-3d;
  transform: translateZ(80px) scale(1.15); /* SALE DEL SLIDER */
  
  filter:
    drop-shadow(0 40px 70px rgba(0,0,0,.75))
    drop-shadow(0 0 40px rgba(46,211,230,.25));

  transition: transform .25s ease, filter .25s ease;
}


/* MOBILE: grande pero sin exagerar */
@media (max-width: 900px){
  #carouselExampleIndicators .wmax-fg{
    max-width: 105%;
    width: 105%;
    transform: translateZ(0) scale(1.05);
  }
}

/* fin de las imagenes del carrusel */

/* Flechas estilo */

/* efecto carrusel */
/* ====== 3D POP OUT (imagen sale del slider) ====== */
#carouselExampleIndicators .wmax-visual{
  perspective: 900px;                 /* profundidad 3D */
  perspective-origin: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen con “volumen” */
#carouselExampleIndicators .wmax-fg{
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .20s ease, filter .20s ease;
  transform: translateZ(40px) scale(1.06);   /* sale hacia el frente */
  filter:
    drop-shadow(0 28px 55px rgba(0,0,0,.70))
    drop-shadow(0 0 30px rgba(46,211,230,.16));
}

/* Hover (desktop) */


/* Mobile: sin exagerar */
@media (max-width: 900px){
  #carouselExampleIndicators .wmax-fg{
    transform: translateZ(0) scale(1.02);
  }
}

/* fin de efecto carrusel */


/* Indicadores visibles */
#carouselExampleIndicators .carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 900px){
  #carouselExampleIndicators .carousel-item{
    height: 90vh;
  }

  .wmax-grid{
    grid-template-columns: 1fr;
    padding: 0 18px;
    gap: 18px;
    text-align: center;
  }

  .wmax-copy{
    text-align: center;
  }

  .wmax-copy h2{
    font-size: 2.2rem;
  }

  .wmax-fg{
    max-width: 80%;
  }
}
/* =============== poner aqui efectos de slider  =============== */

/* FORZAR que la imagen y su contenedor sí reciban hover */
#carouselExampleIndicators .wmax-visual,
#carouselExampleIndicators .wmax-visual *{
  pointer-events: auto !important;
}

/* =============== fin  slider============ */


/*  tarjetas de nuestrosproductos  */


/* ============ SLIDER CARTAS TECNO (MISMO ESTILO) + LOOP ============ */

.tech-cards-section{
  padding: 72px 18px;
  background: radial-gradient(circle at top, #0b0f2a, #020311 70%);
  text-align: center;
}

.tech-title{
  font-family: "Bebas Neue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(36px, 5.2vw, 72px);
  color: #fff;
  margin: 0 0 38px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0,229,255,.45), 0 0 25px rgba(123,92,255,.35);
}
.tech-title span{ color:#7b5cff; }

/* Slider layout */
.tech-slider{
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 12px;
}

.tech-viewport{
  overflow: hidden;
  border-radius: 18px;
}

.tech-track{
  display: flex;
  align-items: stretch;
  will-change: scroll-position;
}

/* Layer: agrupa tarjetas */
.tech-layer{
  display: flex;
  gap: 18px;
  padding: 10px 6px 18px;
}

/* Flechas */
.tech-arrow{
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  background: rgba(255,255,255,.06);
 
  color: #fff;
  font-size: 34px;
  line-height: 1;
  transition: transform .2s ease, background .15s ease;
  user-select: none;
  position: relative;
  z-index: 5;
}
.tech-arrow:hover{
  transform: translateY(-2px);
  background: rgba(0,229,255,.12);
}

/* Card (MISMO look) */
.tech-card{
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 300px);
  padding: 20px 18px 22px;
  border-radius: 20px;
  background: linear-gradient(160deg, #0f103c, #1a145f);

  transition: transform .2s ease, box-shadow .5s ease;
  overflow: hidden;
  text-align: left;
  position: relative;
}

.tech-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 22px;
     background: linear-gradient(160deg, #0f103c, #1a145f);
  opacity:.35;
  filter: blur(10px);
  z-index: -1;
}

.tech-frame{
  height: 190px;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective: 900px;
}

.tech-frame img{
  width: 100%;
  max-width: 220px;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.65));
  transition: transform .2s ease;
}

.tech-card h3{
  margin: 14px 0 6px;
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-size: 28px;
  letter-spacing: 1.2px;
  color: #ffffff;
}

.tech-card p{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,.82);
}



/* Responsive */
@media (max-width: 520px){
  .tech-slider{
    grid-template-columns: 1fr;
  }
  .tech-arrow{ display:none; }
  .tech-card{ width: 85vw; }
  .tech-layer{ padding: 12px; }
}

/*  fin     tarjetas de nuestrosproductos  */


/*  INICO DE NUESTRAS MARCAS                                     */

/* ================= CINTA MARCAS ALIADAS (CHAIN / LOOP) ================= */

.marcas{
  width: 100%;
  padding: 65px 0 55px;
  position: relative;
  background: radial-gradient(circle at top, rgba(15,16,60,.35), rgba(0,0,0,0));
  overflow: hidden;
}

.titulo-marcas{
  text-align: center;
  margin: 0 0 26px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 1.5px;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(46,211,230,.45);
}

/* contenedor tipo cinta */
.marcas-slider{
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 14px 0;
}

/* fade en bordes para efecto cinta */
.marcas-slider::before,
.marcas-slider::after{
  content:"";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.marcas-slider::before{
  left: 0;
  background: linear-gradient(to right, rgba(11,15,42,.95), rgba(11,15,42,0));
}
.marcas-slider::after{
  right: 0;
  background: linear-gradient(to left, rgba(11,15,42,.95), rgba(11,15,42,0));
}

/* pista moviéndose */
.marcas-track{
  display: flex;
  width: max-content;
  gap: 18px;
  align-items: center;
  animation: marcasMove 22s linear infinite;
  transform: skewX(-10deg);  /* look de cinta */
}

/* pausa al hover */
.marcas-slider:hover .marcas-track{
  animation-play-state: paused;
}

/* sets */
.marcas-set{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 8px;
}

/* cada logo como “eslabón” */
.marcas-set img{
  width: 140px;
  height: 70px;
  object-fit: contain;
  background: rgba(255,255,255,.85);
  border-radius: 14px;
  padding: 10px 14px;

  filter: saturate(1.15);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  transform: skewX(10deg); /* corrige la inclinación del track */
}

/* hover creativo */
.marcas-set img:hover{
  transform: skewX(10deg) translateY(-4px) scale(1.04);
 
  filter: saturate(1.35) contrast(1.05);
}

/* animación loop infinito */
@keyframes marcasMove{
  0%   { transform: translateX(0) skewX(-10deg); }
  100% { transform: translateX(-50%) skewX(-10deg); }
}

/* responsive */
@media (max-width: 900px){
  .marcas-set img{
    width: 120px;
    height: 60px;
  }
  .marcas-track{
    animation-duration: 18s;
  }
  .marcas-slider::before,
  .marcas-slider::after{
    width: 70px;
  }
}

@media (max-width: 520px){
  .marcas-set img{
    width: 105px;
    height: 52px;
    border-radius: 12px;
    padding: 8px 10px;
  }
  .marcas-track{
    animation-duration: 15s;
  }
}

/* FIN DE LAS MARCAS                 */


/* 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;
 

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

/* Móvil: solo icono */
@media (max-width: 520px){
  .btn-whatsapp-float span{
    display: none;
  }
  .btn-whatsapp-float{
    padding: 14px;
  }
}
/* ================= fin de icono whatsapp================= */


/* =========== inicio de maps                                           ========== */

/* ================= MAPA TECNOLÓGICO WMAX ================= */

.map-hero{
  position: relative;
  padding: 90px 18px;
  overflow: hidden;
  background: radial-gradient(circle at top, #0b0f2a, #020311 70%);
}

/* Fondo mundo flotante */
.map-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(46,211,230,.25), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(123,92,255,.25), transparent 45%),
    linear-gradient(120deg, rgba(0,0,0,.4), rgba(0,0,0,.8));
  z-index: 0;
}

/* Contenido */
.map-content{
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

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

.map-header h2{
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 2px;
  color: #fff;
  text-shadow:
    0 0 12px rgba(46,211,230,.5),
    0 0 30px rgba(123,92,255,.35);
}

.map-header p{
  max-width: 520px;
  margin: 10px auto 0;
  font-size: 16px;
  color: rgba(255,255,255,.85);
}

/* Layout */
.map-wrapper{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* Mundo flotante */
.map-visual{
  position: relative;
  display: grid;
  place-items: center;
}

.map-world{
  width: 260px;
  height: 260px;
  object-fit: contain;
  border-radius: 50%;
  background: radial-gradient(circle, #1c1f5f, #05061a);
  padding: 40px;
  animation: floatWorld 6s ease-in-out infinite;
  box-shadow:
    0 0 40px rgba(46,211,230,.45),
    0 0 80px rgba(123,92,255,.35);
}

/* Brillo */
.map-glow{
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,211,230,.35), transparent 65%);
  filter: blur(25px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.map-label{
  margin-top: 18px;
  font-weight: 700;
  color: #2ED3E6;
  letter-spacing: .5px;
}

/* MAPA */
.map-frame{
  position: relative;
  border-radius: 22px;
  overflow: hidden;

}

.map-frame iframe{
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(1.1) contrast(1.05);
}

/* Animaciones */
@keyframes floatWorld{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
  100%{ transform: translateY(0); }
}

@keyframes pulseGlow{
  0%{ opacity:.6; transform: scale(1); }
  50%{ opacity:1; transform: scale(1.1); }
  100%{ opacity:.6; transform: scale(1); }
}

/* Responsive */
@media (max-width: 900px){
  .map-wrapper{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .map-world{
    width: 220px;
    height: 220px;
  }

  .map-frame iframe{
    height: 360px;
  }
}

@media (max-width: 520px){
  .map-header h2{ font-size: 34px; }
  .map-world{
    width: 190px;
    height: 190px;
  }
}

/* =========== fin de maps                                         ========== */



/* =========== inicio de nuestros proyectos                                   ========== */

/* ================== GAME CARD WMAX (FLIP 3D) ================== */
.game-card-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.game-card{
  width: min(430px, 92vw);
  height: 520px;
  perspective: 1200px; /* profundidad 3D */
}

.game-card-inner{
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .2s cubic-bezier(.2,.8,.2,1);
}

/* flip en hover */
.game-card:hover .game-card-inner{
  transform: rotateY(180deg);
}

/* caras */
.game-card-face{
  position: absolute;
  inset: 0;
  border-radius: 26px;
  backface-visibility: hidden;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.10);
}

/* look gamer / techno morado */
.game-front{
  background:
    radial-gradient(circle at 30% 25%, rgba(123,92,255,.35), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(0,229,255,.20), transparent 45%),
    linear-gradient(160deg, #0f103c, #1a145f 60%, #090a1f);
  display: grid;
  place-items: center;
  padding: 26px;
  text-align: center;
}

.game-front::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg, rgba(0,229,255,.35), rgba(123,92,255,.35), rgba(255,77,240,.25));
  filter: blur(18px);
  opacity: .55;
}

.game-frame{
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);

  position: relative;
  z-index: 1;
}

.game-logo{
  width: 150px;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.65));
}

.game-title{
  margin: 18px 0 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 16px rgba(0,229,255,.35);
  position: relative;
  z-index: 1;
}

.game-sub{
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.game-hint{
  margin-top: 18px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: .6px;
  color: #2ED3E6;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  z-index: 1;
  opacity: .9;
}

/* BACK */
.game-back{
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.16), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 50%),
    linear-gradient(160deg, #070816, #13103d 55%, #0a0b1d);
  padding: 18px;
}

.cards-grid{
  height: calc(100% - 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-card{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);

  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mini-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}

.mini-card:hover{
  transform: translateY(-4px) scale(1.02);


}

.back-footer{
  height: 56px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.tag{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}

.mini-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .4px;
  color: #0b2a4a;
  background: #2ED3E6;
  transition: transform .5 ease;
}
.mini-btn:hover{ transform: translateY(-2px); }

/* Mobile: que sea touch-friendly */
@media (max-width: 520px){
  .game-card{ height: 480px; }
  .game-title{ font-size: 38px; }
  .game-frame{ width: 200px; height: 200px; }
  .game-logo{ width: 130px; }
}



/* Si hay muchas cartas (8 o más), que el grid tenga scroll interno */
.cards-grid{
  overflow: auto;
  padding-right: 6px;
}

/* Scroll bonito */
.cards-grid::-webkit-scrollbar{
  width: 8px;
}
.cards-grid::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 10px;
}
.cards-grid::-webkit-scrollbar-track{
  background: rgba(255,255,255,.06);
  border-radius: 10px;
}
.game-cards-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: start;
  justify-items: center;
  padding: 10px 0 30px;
}

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

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


/* =========== final  de nuestros proyectos                                   ========== */

/* ====== TÍTULO NUESTROS PROYECTOS ====== */
.projects-game{
  padding: 70px 18px 30px;
}

.projects-head{
  text-align: center;
  margin: 0 auto 28px;
  max-width: 900px;
}

.projects-title{
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(38px, 5vw, 78px);
  letter-spacing: 2px;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(46,211,230,.55),
    0 0 26px rgba(123,92,255,.35);
}

.projects-sub{
  margin: 10px auto 0;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}
/* ====== FIN DEL TITULO  ====== */


/* ====== COMIENZO DE FOOTER   ====== */
/* ================= FOOTER WMAX ================= */

/* ================= FOOTER WMAX ================= */

.site-footer{
  background: #f5f7f8;
  border-top: 1px solid #e2e4e7;
  margin-top: 80px;
  font-size: 14px;
  color: #444;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */
.footer-logo img{
  height: 42px;
  margin-bottom: 12px;
}

.footer-brand p{
  max-width: 280px;
  line-height: 1.6;
}

/* DIRECCIÓN */
.footer-location h4,
.footer-social h4{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
 justify-content: center;
}

.footer-location p{
  line-height: 1.6;
}

.footer-map-link{
  display: inline-block;
  margin-top: 8px;
  color: #0051b2;
  text-decoration: none;
  font-weight: 600;
}

.footer-map-link:hover{
  text-decoration: underline;
}

/* REDES */
.social-footer{
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-footer a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.social-footer a:hover{
  transform: translateY(-3px);
  background: #0051b2;
  color: #fff;
}

/* BARRA INFERIOR */
.footer-bottom{
  border-top: 1px solid #e2e4e7;
  padding: 14px;
  text-align: center;
  font-size: 13px;
}

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

@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr;
    padding: 40px 20px;
    text-align: center;
  }

  .social-footer{
    justify-content: center;
  }
}

/* ====== TERMINA  DE FOOTER   ====== */

/* ====== inicio del slider   ====== */

/* ================== SLIDER BASE ================== */
.wmax-slider{ padding: 14px 0 26px; }

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

.wmax-slider-track{
  display: flex;
  transition: transform .55s ease;
  will-change: transform;
}

.wmax-slide{
  flex: 0 0 100%;
}

/* ================== SLIDE SPLIT FULL WIDTH ================== */
.wmax-split-slide{
  position: relative;
  width: 100vw;               /* full screen */
  left: 50%;
  margin-left: -50vw;

  min-height: 280px;
  height: clamp(280px, 20vw, 360px);
  overflow: hidden;
}

/* Fondo split rojo/azul */
.wmax-split-bg{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #e61f2d 0%,
    #e61f2d 62%,
    #fcfcfc 62%,
    #f7f7f7 100%
  );
}

/* Variante (opcional) si quieres otro orden de color */
.wmax-split-blue .wmax-split-bg{
  background: linear-gradient(
    90deg,
     #ff1f5a 55%,
    #ff1f5a 100%
    #ffffff 0%,
    #ffffff 55%,
   
  );
}

/* Contenido centrado */
.wmax-split-inner{
  position: relative;
  z-index: 2;
  height: 100%;
  
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 24px;

  display: grid;
  grid-template-columns: 1.6fr .4fr;
  gap: 18px;
  align-items: stretch;
}

/* IZQUIERDA */
.wmax-split-left{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 18px;
}

.wmax-split-copy{
  position: absolute;
  left: 24px;
  top: 20px;
  max-width: 50%;
  z-index: 3;
  color: #fff;
}

.wmax-split-title{
  margin: 0 0 6px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .02em;
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  text-transform: uppercase;
}

.wmax-split-sub{
  margin: 0;
  font-size: clamp(.9rem, 1.05vw, 1.1rem);
  line-height: 1.25;
  opacity: .95;
}

/* Imagen grande */
.wmax-split-main{
  width: min(100%, 980px);
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 48px rgba(0,0,0,.6));
  transform: translateX(10%);
}

/* DERECHA */
.wmax-split-right{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.wmax-split-thumb{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.18);

}

.wmax-split-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================== FLECHAS ================== */
.wmax-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;
}

.wmax-arrow.prev{ left: 14px; }
.wmax-arrow.next{ right: 14px; }



/* ================== DOTS ================== */
.wmax-dots{
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

.wmax-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);

  cursor: pointer;
}

.wmax-dots button.is-active{
  background: rgba(255,255,255,.95);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 900px){
  .wmax-split-inner{
    grid-template-columns: 1fr;
  }

  .wmax-split-copy{
    position: static;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .wmax-split-main{
    transform: none;
    max-height: 260px;
  }

  .wmax-split-right{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 560px){
  .wmax-split-right{
    grid-template-columns: 1fr;
  }
}

/* ===================== fin
 SPLIT ROJO/AZUL ===================== */

/* ===================== SLIDE MOSAICO (SUBLIMACION) ===================== */

/* ===== Contenedor general del mosaico ===== */
.subli-mosaic{
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px;
  background: #222734;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
}

/* ===== Grid: 3 columnas x 2 filas (altura fija) ===== */
.subli-grid{
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  grid-template-rows: 260px 260px;  /* 🔥 mismo alto arriba/abajo */
  gap: 14px;
}

/* ===== Cada cuadro ===== */
.subli-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden; /* 🔥 evita que “se salga lo blanco” */
  height: 100%;
  width: 100%;
  position: relative;
}

/* ===== Imágenes SIEMPRE llenan el cuadro ===== */
.subli-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 llena el cuadro y recorta */
  display: block;
}

/* ===== Columna izquierda ocupa 2 filas ===== */
.subli-left{
  grid-row: 1 / span 2; /* 🔥 ocupa ambas filas */
}

/* ===== Texto (si tienes título arriba) ===== */
.subli-title{
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 12px;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .subli-grid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .subli-left{
    grid-column: 1 / -1;   /* tote bag arriba en móvil */
    grid-row: auto;
    height: 260px;
  }
}




/* ===================== fin===================== */

/* ================== WRAP ================== */
.pp-wrap{
  padding: 18px 14px 26px;
  background: #222734;
  border-radius: 10px;
    max-width: 1400px;   /* controla el ancho total */
   margin: 80px auto;     /* 🔥 espacio arriba y abajo */  /* 🔥 centra todo */
}

.pp-head h2{
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
}

/* ================== SLIDER ================== */
.pp-slider{
  position: relative;
  overflow: hidden;
}

.pp-track{
  display: flex;
  gap: 14px;
  transition: transform .55s ease;
  will-change: transform;
    justify-content: center; /* 🔥 centra las cards */
}

/* Card */
.pp-card{
  flex: 0 0 220px;     /* ancho de cada card */
  background: #fff;
  border-radius: 6px;
  overflow: hidden;

  display: grid;
  grid-template-rows: 40px 1fr auto;
  min-height: 300px;
  transition: transform .3s ease, box-shadow .3s ease;
}



/* Barra arriba */
.pp-top{
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  letter-spacing: .02em;
  font-size: 1.15rem;
}

.pp-green .pp-top{ background: #158b2c; }
.pp-blue  .pp-top{ background: #006bb3; }

/* Imagen */
.pp-media{
  display: grid;
  place-items: center;
  padding: 14px;
}

.pp-media img{
  width: 100%;
  height: 140px;
  object-fit: contain;
}

/* Descripción */
.pp-body{
  padding: 12px 14px 16px;
  background: #f7f7f7;
  border-top: 1px solid rgba(0,0,0,.08);
}

.pp-body p{
  margin: 0;
  font-size: .92rem;
  line-height: 1.35;
  color: #222;
}

/* Flechas */
.pp-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.pp-arrow.prev{ left: 10px; }
.pp-arrow.next{ right: 10px; }


/* Dots */
.pp-dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  padding-top: 12px;
}

.pp-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.25);
  cursor: pointer;
}
.pp-dots button.is-active{
  background: rgba(255,255,255,.95);
}

/* Responsive */
@media (max-width: 720px){
  .pp-card{ flex-basis: 78vw; }
  .pp-media img{ height: 160px; }
}





/* ================== CTA 3 SLIDER ================== */
.cta3{
  padding: 24px 0;
}

.cta3-slider{
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f2f2f2;
}

.cta3-track{
  display: flex;
  transition: transform .55s ease;
  will-change: transform;
}

.cta3-slide{
  flex: 0 0 100%;
}

.cta3-inner{
  min-height: 220px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10px;
  align-items: center;
  padding: 20px 26px;
}

/* Texto izquierda */
.cta3-kicker{
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  color: #d82a2a;  /* rojo como la imagen */
  font-weight: 500;
}

.cta3-title{
  margin: 6px 0 14px;
  font-size: clamp(1.6rem, 2.6vw, 3rem);
  color: #1f3fb7;  /* azul */
  font-weight: 900;
  line-height: 1.05;
}

.cta3-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #0aa10a; /* botón verde */
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  min-width: 160px;
}

/* Imagen derecha */
.cta3-right{
  display: grid;
  place-items: end;
}

.cta3-right img{
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
}

/* Flechas */
.cta3-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.cta3-arrow.prev{ left: 10px; }
.cta3-arrow.next{ right: 10px; }

/* Dots */
.cta3-dots{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.cta3-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.25);
  background: rgba(255,255,255,.55);
  cursor: pointer;
}

.cta3-dots button.is-active{
  background: rgba(0,0,0,.75);
}

/* Responsive */
@media (max-width: 860px){
  .cta3-inner{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta3-right{
    place-items: center;
  }
  .cta3-right img{
    width: min(280px, 100%);
  }
}
/* fin de slider  */




/* ================== SECCIÓN TECNOLOGÍA ================== */
.wmax-tech{
  padding: 60px 24px;
  background: radial-gradient(circle at top, #1b1f2a, #0d0f16);
}

.wmax-tech-title{
  max-width: 1400px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

/* GRID */
.wmax-tech-grid{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 22px;
}

/* CARD */
.wmax-tech-card{
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

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

.wmax-tech-card:hover{
  transform: translateY(-6px);
  
}

/* CARD GRANDE */
.wmax-tech-big{
  padding: 26px;
}

/* IMAGEN */
.wmax-tech-media{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.wmax-tech-media img{
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

/* TEXTO */
.wmax-tech-name{
  margin-top: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  letter-spacing: .5px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 900px){
  .wmax-tech-grid{
    grid-template-columns: 1fr;
  }

  .wmax-tech-media img{
    max-height: 280px;
  }
}
/* ================== fin seccion TECNOLOGÍA ================== */


/* ================== BANNER GRANDE DTF ================== */
.dtf-banner{
  width: 100%;
  padding: 26px 0;
  background: #0b0f1a; /* fondo oscuro exterior */
}

.dtf-banner-inner{
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr .75fr; /* imagen grande + panel */
  min-height: 320px;

  border: 1px solid rgba(255,255,255,.10);
}

/* izquierda */
.dtf-banner-left{
  background: #000;
}

.dtf-banner-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* como tu imagen */
  display: block;
}

/* derecha */
.dtf-banner-right{
  background: #42b9d6; /* azul */
  padding: 34px 28px;
  display: grid;
  align-content: center;
  gap: 10px;
}

/* Caja blanca DTF */
.dtf-badge{
  background: #fff;
  color: #42b9d6;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  padding: 10px 16px;
  width: fit-content;
  letter-spacing: .02em;
}

/* texto */
.dtf-title{
  margin: 2px 0 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.dtf-sub{
  margin: 0;
  color: rgba(255,255,255,.95);
  font-size: 1rem;
}

.dtf-btn{
  margin-top: 6px;
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  background: rgba(0,0,0,.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 900px){
  .dtf-banner-inner{
    grid-template-columns: 1fr;
  }

  .dtf-banner-left{
    height: 240px;
  }

  .dtf-banner-right{
    text-align: left;
  }
}

@media (max-width: 520px){
  .dtf-banner-right{
    padding: 22px 18px;
  }
}


/* ================== GRID CON MÁS ESPACIO ================== */
.wmax-items-grid{
  gap: 26px; /* 🔥 más espacio entre productos */
}

/* ================== CARD PRODUCTO ================== */
.wmax-item{
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;

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

.wmax-item:hover{
  transform: translateY(-6px);
 
}

/* ================== IMAGEN ================== */
.wmax-item-media{
  background: #fff;
  height: 170px;                /* altura uniforme */
  display: grid;
  place-items: center;
  padding: 14px;
}

.wmax-item-media img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ================== TEXTO ORDENADO ================== */
.wmax-item-body{
  flex: 1;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,.45),
    rgba(0,0,0,.75)
  );
}

/* TÍTULO */
.wmax-item-body h3{
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

/* DESCRIPCIÓN */
.wmax-item-body p{
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  line-height: 1.35;
  text-align: center;
}

/* ================== SEPARACIÓN ENTRE SECCIONES ================== */
.wmax-catalog-section{
  margin: 70px auto;   /* 🔥 espacio claro entre secciones */
}

/* ================== RESPONSIVE ================== */
@media (max-width: 900px){
  .wmax-item-media{
    height: 190px;
  }
}

@media (max-width: 560px){
  .wmax-items-grid{
    gap: 20px;
  }

  .wmax-item-body{
    padding: 14px;
  }
}





/* ================== SECCIÓN CATÁLOGO ================== */
.wmax-catalog-section{
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 20px;
}

/* Encabezado */
.wmax-sec-head{
  margin-bottom: 22px;
}

.wmax-sec-title{
  margin: 0 0 8px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.wmax-sec-sub{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .98rem;
  line-height: 1.35;
  max-width: 900px;
}

/* Separador */
.wmax-sec-divider{
  max-width: 1400px;
  margin: 0 auto;
  height: 1px;

}

/* ================== GRID ================== */
.wmax-items-grid{
  display: grid;
  gap: 26px; /* 🔥 espacio entre productos */
}

/* 6 arriba / 4 abajo */
.wmax-items-6{ grid-template-columns: repeat(6, 1fr); }
.wmax-items-4{ grid-template-columns: repeat(4, 1fr); }

/* ================== CARD ================== */
.wmax-item{

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
 
  transition: transform .35s ease, box-shadow .35s ease;
}

.wmax-item:hover{
  transform: translateY(-6px);
  
}

/* ================== IMAGEN ================== */
.wmax-item-media{
  background: #fff;
  height: 175px;
  display: grid;
  place-items: center;
  padding: 14px;
}

.wmax-item-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ================== TEXTO (BLANCO) ================== */
.wmax-item-body{
  flex: 1;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  
}

.wmax-item-body h3{
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.wmax-item-body p{
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: .92rem;
  line-height: 1.35;
  text-align: center;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1200px){
  .wmax-items-6{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px){
  .wmax-items-4{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .wmax-catalog-section{ padding: 44px 16px; }
  .wmax-items-6, .wmax-items-4{ grid-template-columns: 1fr; }
  .wmax-items-grid{ gap: 18px; }
  .wmax-item-media{ height: 200px; }
}

/* ============ SLIDER SOLO EN CUADRO DTF (mosaico sublimación) ============ */

.subli-dtf{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
 
}

/* Track */
.subli-dtf-viewport{ width:100%; height:100%; overflow:hidden; }
.subli-dtf-track{
  display: flex;
  height: 100%;
  transition: transform .55s ease;
  will-change: transform;
}

/* Cada slide ocupa 100% del cuadro */
.subli-dtf-slide{
  flex: 0 0 100%;
 min-height: 380px;
  position: relative;
}

.subli-dtf-photo{
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}
/* Panel amarillo a la izquierda */
.subli-dtf-yellow{
  position:absolute;
  left:0;
  top:0;
  width: 54%;
  height: 100%;
  background: #f3c300;  /* amarillo */
  display: grid;
  place-items: center;
  padding: 14px;
}

/* Caja negra con texto (igual al estilo screenshot) */
.subli-dtf-box{
  width: 92%;
  background: #000;
  color: #fff;
  padding: 14px 14px;
  border-radius: 10px;
  
}

.subli-dtf-top{
  font-weight: 900;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .95;
}
.subli-dtf-top span{ opacity: .95; }

.subli-dtf-big{
  margin-top: 6px;
  font-weight: 900;
  font-size: clamp(18px, 2.0vw, 26px);
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* Flechas */
.subli-dtf-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size: 24px;
  cursor:pointer;
}
.subli-dtf-arrow.prev{ left: 10px; }
.subli-dtf-arrow.next{ right: 10px; }

/* Dots */
.subli-dtf-dots{
  position:absolute;
  left: 14px;
  bottom: 12px;
  z-index: 6;
  display:flex;
  gap: 8px;
}
.subli-dtf-dots button{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.25);
  cursor:pointer;
}





/* ============ SLIDER SOLO EN CUADRO DTF (mosaico sublimación) ============ */




/* Cada slide ocupa 100% del cuadro */
.subli-dtf-slide{
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

/* Foto derecha (tipo tu ejemplo) */
.subli-dtf-photo{
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}
/* Panel amarillo a la izquierda */
.subli-dtf-yellow{
  position:absolute;
  left:0;
  top:0;
  width: 54%;
  height: 100%;
  background: #f3c300;  /* amarillo */
  display: grid;
  place-items: center;
  padding: 14px;
}

/* Caja negra con texto (igual al estilo screenshot) */


.subli-dtf-top{
  font-weight: 900;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .95;
}

.subli-dtf-big{
  margin-top: 6px;
  font-weight: 900;
  font-size: clamp(18px, 2.0vw, 26px);
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* Flechas */
.subli-dtf-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size: 24px;
  cursor:pointer;
}
.subli-dtf-arrow.prev{ left: 10px; }
.subli-dtf-arrow.next{ right: 10px; }


/* Dots */
.subli-dtf-dots{
  position:absolute;
  left: 14px;
  bottom: 12px;
  z-index: 6;
  display:flex;
  gap: 8px;
}
.subli-dtf-dots button{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.25);
  cursor:pointer;
}
.subli-dtf-dots button.is-active{
  background: rgba(255,255,255,.95);
}

/* Evita que overlays bloqueen click */
.subli-dtf *{ pointer-events:auto; }

@media (max-width: 980px){
  .subli-dtf-yellow{
    width: 55%;
  }
}

.wmax-slider-track{
  display: flex;
  transition: transform .55s ease;
  will-change: transform;
}
.wmax-slide{ flex: 0 0 100%; }
.subli-grid{
  grid-template-columns: 320px 1fr 1fr;
  grid-template-rows: 360px 360px;
}

/* ===================== MOSAICO SUBLIMACIÓN (como screenshot) ===================== */
.subli-mosaic{
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 18px 18px;
  background: #222734;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
}

.subli-title{
  margin: 0 0 12px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

/* 3 columnas x 2 filas */
.subli-grid{
  display: grid;
  grid-template-columns: 260px 1fr 1fr; /* tote bag + 2 columnas */
  grid-template-rows: 170px 170px;      /* alto de filas */
  gap: 14px;
}

/* tarjeta base */
.subli-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

/* imágenes llenan la card */
.subli-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* izquierda ocupa 2 filas */
.subli-left{
  grid-row: 1 / span 2;
}

/* ===================== SLIDER DTF (arriba: ocupa 2 columnas) ===================== */
.subli-dtf{
  grid-column: 2 / span 2; /* ocupa col 2 y 3 */
  background: #111;
  overflow: hidden;
  border-radius: 14px;
}

/* viewport + track */
.subli-dtf-viewport{ width:100%; height:100%; overflow:hidden; }
.subli-dtf-track{
  display: flex;
  height: 100%;
  transition: transform .55s ease;
  will-change: transform;
}

/* cada slide */
.subli-dtf-slide{
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

/* imagen derecha */
.subli-dtf-photo{
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}
/* panel amarillo izquierda */
.subli-dtf-yellow{
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 100%;
  background: #f3c300;
  display: grid;
  place-items: center;
  padding: 12px;
  z-index: 2;
}

/* caja negra */
.subli-dtf-box{
  width: 92%;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  
}

.subli-dtf-top{
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  opacity: .95;
}

.subli-dtf-top span{ opacity: .95; }

.subli-dtf-big{
  margin-top: 6px;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* flechas */
.subli-dtf-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.subli-dtf-arrow.prev{ left: 10px; }
.subli-dtf-arrow.next{ right: 10px; }

.subli-dtf-arrow:hover{ background: rgba(0,0,0,.55); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px){
  .subli-grid{
    grid-template-columns: 1fr;
    grid-template-rows: 260px 200px 200px 200px;
  }

  .subli-left{ grid-row: auto; }
  .subli-dtf{ grid-column: auto; } /* vuelve normal */
}

@media (max-width: 520px){
  .subli-grid{ gap: 12px; }
  .subli-dtf-yellow{ width: 70%; }
  .subli-dtf-big{ font-size: 20px; }
}

/* slider */
.subli-dtf{ position: relative; overflow: hidden; }
.subli-dtf-viewport{ width:100%; height:100%; overflow:hidden; }

.subli-dtf-track{
  display: flex;
  height: 100%;
  transition: transform .55s ease;
  will-change: transform;
}

.subli-dtf-slide{
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

/* para que la imagen se vea completa (no recortada) */
.subli-dtf-photo{
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}


/* ===== MOSAICO ===== */
.subli-mosaic{
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px;
  background: #222734;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
}

.subli-title{
  color: #fff;
  font-weight: 900;
  margin: 0 0 12px;
}

.subli-grid{
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}

.subli-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.subli-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subli-left{
  grid-row: 1 / span 2;
}

/* ================= SUBLI DTF SLIDER ================= */

.subli-dtf{
  position: relative;
  overflow: hidden;
}

/* Ventana */
.subli-dtf-viewport{
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Pista */
.subli-dtf-track{
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}

/* Cada slide */
.subli-dtf-slide{
  min-width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

/* Caja amarilla */
.subli-dtf-yellow{
  background: #FFD400;
  padding: 25px;
  border-radius: 14px;
}

.subli-dtf-photo{
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

/* Flechas */
.subli-dtf-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.subli-dtf-arrow.prev{ left: 10px; }
.subli-dtf-arrow.next{ right: 10px; }

/* Dots */
.subli-dtf-dots{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.subli-dtf-dots button{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #bbb;
  cursor: pointer;
}

.subli-dtf-dots button.active{
  background: #FFD400;
}

/* ====== FOOTER AZUL SIMPLE (como imagen) ====== */
.wmax-footer{
  background: #1f355e;              /* azul */
  color: #fff;
  margin-top: 80px;
}

.wmax-footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.wmax-footer-col h3{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
}

.wmax-footer-col p{
  margin: 0 0 10px;
  color: rgba(255,255,255,.88);
  line-height: 1.45;
}

.wmax-footer a{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.wmax-footer a:hover{
  text-decoration: underline;
}

.wmax-footer-map{
  display: inline-block;
  margin-top: 6px;
  opacity: .95;
}

.wmax-footer-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.88);
}
.wmax-footer-list li{ margin: 6px 0; }

.wmax-footer-social{
  display: grid;
  gap: 10px;
}

.wmax-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 14px 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

/* Responsive */
@media (max-width: 900px){
  .wmax-footer-inner{
    grid-template-columns: 1fr;
    text-align: left;
  }
}
/* ===== Iconos redes footer ===== */
.wmax-footer-social{
  display: flex;
  gap: 12px;
  align-items: center;
}

.wmax-soc{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.wmax-soc svg{
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* Hover */
.wmax-soc:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

/* Colores por red */
.wmax-soc.fb:hover{ background:#1877f2; border-color:#1877f2; }
.wmax-soc.ig:hover{
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
  border-color: transparent;
}
.wmax-soc.wa:hover{ background:#25d366; border-color:#25d366; }

/* =========================
   REDES SOCIALES – HEADER
   ========================= */

.nav-social{
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-social li a{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  transition: all .25s ease;
}

.nav-social svg{
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Hover general */
.nav-social li a:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

/* Colores por red */
.nav-social li a[aria-label="Facebook"]:hover{
  background: #1877f2;
  border-color: #1877f2;
}

.nav-social li a[aria-label="Instagram"]:hover{
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
  border-color: transparent;
}

.nav-social li a[aria-label="WhatsApp"]:hover{
  background: #25d366;
  border-color: #25d366;
}

/* Tamaño un poco menor en móvil */
@media (max-width: 900px){
  .nav-social li a{
    width: 32px;
    height: 32px;
  }
  .nav-social svg{
    width: 16px;
    height: 16px;
  }
}