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


/* 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{
    width: 180px;   /* tamaño fijo */
  height: auto;   /* mantiene proporción */
  
  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: .3s 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: .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: #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






 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;
}
.wmax-btn:hover{
  transform: translateY(-2px);
}
/* 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;
}

/* HOVER 3D (desktop) */
@media (hover:hover){
  #carouselExampleIndicators .wmax-visual:hover .wmax-fg{
    transform: translateZ(120px) scale(1.22);
    filter:
      drop-shadow(0 55px 95px rgba(0,0,0,.85))
      drop-shadow(0 0 60px rgba(46,211,230,.35));
  }
}

/* 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 */
#carouselExampleIndicators .carousel-control-prev-icon,
#carouselExampleIndicators .carousel-control-next-icon{
  background-color: rgba(0,0,0,.55);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  background-size: 60% 60%;
}
/* 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) */
@media (hover:hover){
  #carouselExampleIndicators .wmax-visual:hover .wmax-fg{
    transform: translateZ(70px) scale(1.10);
    filter:
      drop-shadow(0 40px 80px rgba(0,0,0,.75))
      drop-shadow(0 0 45px rgba(46,211,230,.22));
  }
}

/* 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);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  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);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 0 26px rgba(0,229,255,.18);
  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);
}

/* Hover 3D */
.tech-card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 50px rgba(0,229,255,.45),
    0 22px 50px rgba(0,0,0,.75);
}
.tech-card:hover img{
  transform: rotateY(-10deg) rotateX(6deg) scale(1.06);
}

/* 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;
  box-shadow:
    0 10px 22px rgba(0,0,0,.35),
    0 0 18px rgba(123,92,255,.18);
  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);
  box-shadow:
    0 16px 30px rgba(0,0,0,.45),
    0 0 26px rgba(46,211,230,.35);
  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;
  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================= */


/* =========== 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;
  box-shadow:
    0 20px 50px rgba(0,0,0,.6),
    0 0 40px rgba(46,211,230,.25);
}

.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;
  box-shadow: 0 22px 55px rgba(0,0,0,.55);
  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);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    0 0 40px rgba(123,92,255,.35);
  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);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 0 22px rgba(123,92,255,.18);
  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);
  box-shadow:
    0 16px 34px rgba(0,0,0,.55),
    0 0 22px rgba(46,211,230,.25);
}

.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 ================= */

/* =========================
   FOOTER BLANCO GRANDE
   ========================= */
.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
   ========================= */
/* ===============================
   FOOTER RESPONSIVE – SIN CAMBIOS VISUALES
   =============================== */

/* Desktop: NO se toca nada */

/* Tablets */
@media (max-width: 992px){
  .footer-inner{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-brand,
  .footer-location,
  .footer-menu-strip,
  .footer-social{
    flex: 1 1 45%;
  }
}

/* Móvil */
@media (max-width: 640px){
  .footer-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-location,
  .footer-menu-strip,
  .footer-social{
    width: 100%;
  }

  .footer-menu-links{
    justify-content: center;
    flex-wrap: wrap;
  }

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


/* ====== inicio de nuestros productos   ====== */
/* ================== NUESTROS PROYECTOS ================== */

.projects-game{
  padding: 80px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centra todo */
}

/* Encabezado centrado */
.projects-head{
  text-align: center;
  max-width: 900px;
  margin-bottom: 40px;
}

/* GRID DE CARDS */
.game-cards-grid{
  width: 100%;
  max-width: 1400px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;

  justify-items: center; /* 🔥 centra cada card */
  align-items: start;
}

/* CARD */
.game-card{
  width: 100%;
  max-width: 430px; /* controla el tamaño */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .game-cards-grid{
    gap: 26px;
  }
}

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

  .game-card{
    max-width: 92vw;
  }
}


/* ====== fin de nuestros productos   ====== */

/* ================== ESTAMOS EN CONSTRUCCIÓN ================== */

.under-construction{
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: radial-gradient(circle at top, #1b1f2a, #0d0f16);
}

.uc-card{
  max-width: 520px;
  width: 100%;
  padding: 46px 32px;
  text-align: center;

  background: linear-gradient(160deg, #0f103c, #1a145f);
  border-radius: 26px;

  box-shadow:
    0 30px 80px rgba(0,0,0,.65),
    0 0 40px rgba(46,211,230,.25);

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

/* Muñequito */
.uc-icon{
  font-size: 64px;
  margin-bottom: 20px;
  animation: floatWorker 3.5s ease-in-out infinite;
}

/* Texto */
.uc-title{
  margin: 0 0 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.uc-text{
  margin: 0 0 22px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.5;
}

.uc-brand{
  display: inline-block;
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #2ED3E6;
}

/* Animación suave */
@keyframes floatWorker{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0); }
}

/* Responsive */
@media (max-width: 520px){
  .uc-icon{ font-size: 52px; }
  .uc-card{ padding: 36px 22px; }
}

.pq-hero-right img{
  width: 100%;
  max-width: 720px;   /* 🔥 MÁS GRANDE (antes 560px) */
  object-fit: contain;

  transform: scale(1.15); /* 🔥 agranda visualmente */
  
  filter:
    drop-shadow(0 55px 100px rgba(0,0,0,.85))
    drop-shadow(0 0 60px rgba(46,211,230,.45));

  animation: floatHero 6s ease-in-out infinite;
}
/* ===================== HERO GRANDE POR QUÉ PRINT ===================== */


.hero-content h1{
  font-size: clamp(34px, 4.2vw, 56px); /* más elegante */
}

.hero-content p{
  font-size: 16px;
  max-width: 480px;
}


.pq-hero{
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0f1a;
}

/* Fondo tecnológico */
.pq-hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(46,211,230,.25), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(123,92,255,.25), transparent 45%),
    linear-gradient(120deg, #070816, #13103d 60%, #0a0b1d);
  z-index: 0;
}

/* Contenido */
.pq-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

/* TEXTO */
.pq-hero-left{
  color: #fff;
}

.pq-badge{
  display: inline-block;
  padding: 6px 14px;
  background: rgba(46,211,230,.18);
  color: #2ED3E6;
  font-weight: 800;
  font-size: 12px;
  border-radius: 999px;
  letter-spacing: .6px;
  margin-bottom: 14px;
}

.pq-title{
  margin: 0 0 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: 2px;
  line-height: 1.05;
}

.pq-title span{
  color: #2ED3E6;
  text-shadow:
    0 0 12px rgba(46,211,230,.45),
    0 0 30px rgba(123,92,255,.35);
}

.pq-text{
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin-bottom: 26px;
}

/* BOTÓN */
.pq-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: #2ED3E6;
  color: #0b2a4a;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .6px;
  box-shadow: 0 18px 40px rgba(46,211,230,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pq-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(46,211,230,.65);
}

/* IMAGEN */
.pq-hero-right{
  display: flex;
  justify-content: center;
  align-items: center;
}

.pq-hero-right img{
  width: 100%;
  max-width: 560px;
  object-fit: contain;
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,.75))
    drop-shadow(0 0 40px rgba(46,211,230,.35));
  animation: floatHero 6s ease-in-out infinite;
}

/* Animación flotante */
@keyframes floatHero{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
  100%{ transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px){
  .pq-hero{
    min-height: 95vh;
  }

  .pq-hero-inner{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pq-text{
    margin: 0 auto 26px;
  }

  .pq-hero-right img{
    max-width: 420px;
  }
}



/* =========================
   HERO GRANDE ORGANIZADO
   ========================= */
:root{
  --header-h: 98px; /* altura de tu header fijo */
}

.hero-apple{
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  padding-top: var(--header-h);
  background: linear-gradient(135deg,#0b1220,#101a34);
  display: flex;
  align-items: center;
}

.hero-apple-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.hero-content h1{
  margin: 0 0 20px;
  font-size: clamp(42px,5vw,78px);
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
}

.hero-content h1 span{
  color: #7b5cff;
}

.hero-content p{
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}

/* BOTONES */
.hero-actions{
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.hero-btn{
  padding: 14px 26px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.hero-btn.primary{
  background: #fff;
  color: #0b1220;
}

.hero-btn.ghost{
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

/* IMAGEN */
.hero-media{
  display: flex;
  justify-content: center;
}

.hero-media img{
  width: 100%;
  max-width: 720px;     /* 🔥 GRANDE */
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,.6))
    drop-shadow(0 0 60px rgba(123,92,255,.4));
  animation: heroFloat 6s ease-in-out infinite;
}

/* ANIMACIÓN SUAVE */
@keyframes heroFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}

/* =========================
   RESPONSIVE
   ========================= */
@media(max-width: 980px){
  .hero-apple-inner{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
  }

  .hero-content p{
    margin: 0 auto;
  }

  .hero-actions{
    justify-content: center;
  }

  .hero-media img{
    max-width: 520px;
    margin-top: 30px;
  }
}


/* =========================
   HERO ORGANIZADO (FIX)
   ========================= */
.hero-apple{
  width: 100%;
  background: #0b1220;
  padding: 80px 0 60px;
}

/* CONTENEDOR CENTRADO */
.hero-apple-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* TEXTO */
.hero-content h1{
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
}

.hero-content h1 span{
  color: #7b5cff;
}

.hero-content p{
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 480px;
}

/* IMAGEN */
.hero-visual{
  display: flex;
  justify-content: center;
}

.hero-visual img{
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;

  filter:
    drop-shadow(0 35px 70px rgba(0,0,0,.6))
    drop-shadow(0 0 40px rgba(123,92,255,.35));
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px){
  .hero-apple-inner{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p{
    margin: 0 auto;
  }

  .hero-visual img{
    max-width: 420px;
    margin-top: 30px;
  }
}

/* =========================
   HERO APPLE – ROLL UP
   ========================= */
.hero-apple{
  width: 100%;
  background: linear-gradient(135deg, #0b1220, #121c38);
  padding: 70px 0 60px;
}

/* CONTENEDOR */
.hero-apple-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.hero-content h1{
  margin: 0 0 18px;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
}

.hero-content h1 span{
  color: #7b5cff;
}

.hero-content p{
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}

/* BADGES */
.hero-badges{
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges .badge{
  background: rgba(123,92,255,.15);
  color: #ffffff;
  border: 1px solid rgba(123,92,255,.45);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* IMAGEN */
.hero-visual{
  display: flex;
  justify-content: center;
}

.hero-visual img{
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;

  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,.6))
    drop-shadow(0 0 60px rgba(123,92,255,.35));
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .hero-apple-inner{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content p{
    margin: 0 auto;
  }

  .hero-badges{
    justify-content: center;
  }

  .hero-visual img{
    max-width: 420px;
  }
}

.rollup-title{
  font-family: "Bebas Neue", "Montserrat", Arial, sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  letter-spacing: 6px;
  color: #ffffff;
  margin: 0 0 12px;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(123,92,255,.45),
    0 0 28px rgba(0,229,255,.25);
}

/* =========================
   HERO PORTAPENDÓN ARAÑA
   ========================= */
.hero-arana{
  width: 100%;
  background: linear-gradient(135deg, #0b1220, #141f3f);
  padding: 80px 0 70px;
  overflow: hidden;
}

/* CONTENEDOR */
.hero-arana{
  display: flex;
  justify-content: center;
}

.hero-arana-content,
.hero-arana-img{
  max-width: 1200px;
}

.hero-arana{
  align-items: center;
}

/* GRID INTERNO */
.hero-arana{
  gap: 60px;
}

.hero-arana{
  flex-wrap: wrap;
}

/* TEXTO */
.hero-arana-content{
  max-width: 520px;
  padding: 0 32px;
}

.hero-arana-content h1{
  margin: 0 0 18px;
  font-family: "Bebas Neue", "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 78px);
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(123,92,255,.45),
    0 0 26px rgba(0,229,255,.25);
}

.hero-arana-content p{
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 26px;
}

/* TAGS */
.hero-arana-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-arana-tags span{
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(123,92,255,.15);
  border: 1px solid rgba(123,92,255,.45);
  border-radius: 999px;
}

/* IMAGEN */
.hero-arana-img{
  padding: 0 32px;
  display: flex;
  justify-content: center;
}

.hero-arana-img img{
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;

  filter:
    drop-shadow(0 35px 70px rgba(0,0,0,.6))
    drop-shadow(0 0 55px rgba(123,92,255,.35));

  animation: aranaFloat 6s ease-in-out infinite;
}

/* ANIMACIÓN SUAVE */
@keyframes aranaFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px){
  .hero-arana{
    text-align: center;
  }

  .hero-arana-content{
    margin: 0 auto;
  }

  .hero-arana-tags{
    justify-content: center;
  }

  .hero-arana-img img{
    max-width: 420px;
    margin-top: 40px;
  }
}

.map-hero{
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

/* CAPA DE FONDO */
.map-bg{
  position: absolute;
  inset: 0;
  background-image: url("img/fondo-mapa.jpg"); /* TU IMAGEN */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25; /* 👉 ajusta la opacidad aquí */
  z-index: 0;
}

/* CONTENIDO POR ENCIMA */
.map-content{
  position: relative;
  z-index: 2;
}
.map-hero{
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

/* CAPA DE FONDO */
.map-bg{
  position: absolute;
  inset: 0;
  background-image: url("img/fondo-mapa.jpg"); /* TU IMAGEN */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25; /* 👉 ajusta la opacidad aquí */
  z-index: 0;
}

/* CONTENIDO POR ENCIMA */
.map-content{
  position: relative;
  z-index: 2;
}

.reviews{
  text-align: center;
  padding: 40px 20px;
}

.review-card{
  background:#f9f9f9;
  border-radius:12px;
  padding:20px;
  margin:15px auto;
  max-width:600px;
  border:1px solid #ddd;
}

.review-card .stars{
  font-size:20px;
  color:#f5c518;
  margin-bottom:8px;
}

/* =========================
   SECCIÓN PRECIOS APARTE
   ========================= */
.pricing-section{
  padding: 70px 16px;
  background: linear-gradient(180deg, #050511, #070a18);
  text-align: center;
}

.pricing-title{
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 8px;
}

.pricing-sub{
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin: 0 auto 40px;
}

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

.price-card{
  background: rgba(0,0,0,.55);
  border-radius: 16px;
  padding: 26px 22px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
  transition: transform .2s ease;
}

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

.price-card.featured{
  border: 2px solid #ff26d4;
}

.price-card h3{
  margin-bottom: 12px;
  letter-spacing: .6px;
}

.price{
  font-size: 34px;
  font-weight: 900;
  color: #ff26d4;
  margin-bottom: 16px;
}

.price-card ul{
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.price-card li{
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.price-btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: #ff26d4;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.pricing-note{
  margin-top: 30px;
  color: #ff26d4;
  font-weight: 800;
}

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

/* =========================
   HERO COUNTERS
   ========================= */
.counter-hero{
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
  overflow: hidden;
}

.counter-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(5,10,30,.85), rgba(5,10,30,.95)),
    radial-gradient(circle at top, #1b2c5b, #020416);
  z-index:-1;
}

.counter-hero-content h1{
  color:#fff;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 1px;
}

.counter-hero-content p{
  color: rgba(255,255,255,.8);
  max-width: 620px;
  margin: 14px auto 22px;
  line-height: 1.6;
}

.counter-hero-btn{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  background: #e21c2a;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

/* =========================
   COUNTER CARDS
   ========================= */
.counter-cards{
  padding: 70px 16px;
  background: #f6f7fb;
}

.counter-section-title{
  text-align: center;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  margin-bottom: 40px;
}

.counter-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.counter-card{
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  text-align: center;
}

.counter-card.featured{
  border: 3px solid #ffffff;
}

.counter-card img{
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
}

.counter-card h3{
  margin: 10px 0;
  font-size: 18px;
}

.counter-card ul{
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

.counter-card li{
  font-size: 14px;
  padding: 4px 0;
}

.counter-size{
  display: block;
  font-size: 12px;
  color: #555;
}

.counter-cta{
  margin-top: 40px;
  text-align: center;
}

.counter-cta a{
  padding: 14px 24px;
  background: #e21c2a;
  color: #fff;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
}

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

.counter-hero{
  position: relative;
  min-height: 520px;              /* portada grande */
  display: grid;
  place-items: center;
  padding: 80px 18px;
  overflow: hidden;
  border-radius: 22px;            /* quítalo si no quieres bordes redondeados */
  margin: 24px auto;
  max-width: 1200px;
  background: #0b1220;
}

/* Imagen de fondo */
.counter-hero-bg{
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  z-index: 0;
}

/* Capa oscura para que el texto se lea */
.counter-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(5,10,25,.78) 0%,
    rgba(5,10,25,.55) 45%,
    rgba(5,10,25,.25) 100%
  );
  z-index: 1;
}

/* Contenido */
.counter-hero-content{
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  text-align: left;
  color: #fff;
}

.counter-hero-content h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.counter-hero-content p{
  margin: 0 0 22px;
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 620px;
  opacity: .95;
}

/* Botón */
.counter-hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: #18e08a;
  color: #071018;
  transition: transform .15s ease, filter .15s ease;
}

.counter-hero-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 600px){
  .counter-hero{
    min-height: 460px;
    border-radius: 16px;
  }
  .counter-hero-content{
    text-align: center;
  }
  .counter-hero-content p{
    margin-left: auto;
    margin-right: auto;
  }
  .counter-hero::after{
    background: rgba(5,10,25,.65);
  }
}

/*
/* =========================
   BACKINGS: HERO + CARDS
   ========================= */

.bk-hero{
  background: #ffffff;
  padding: clamp(26px, 4vw, 52px) 0;
}

.bk-hero-inner{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
}

.bk-kicker{
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: #6b7280;
}

.bk-title{
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #111827;
}

.bk-sub{
  margin: 14px 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  max-width: 60ch;
}

.bk-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.bk-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e5e7eb;
}

.bk-btn-primary{
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.bk-btn-ghost{
  background: #fff;
  color: #111827;
}

.bk-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bk-badge{
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  background: #fff;
}

.bk-hero-media{




  overflow: hidden;
}

.bk-hero-media img{
  width: 100%;
  height: clamp(240px, 30vw, 380px);
  object-fit: contain; /* si quieres que llene, cambia a cover */
  display: block;
}

/* --------- Catálogo --------- */

.bk-section{
  background: #ffffff;
  padding: clamp(24px, 4vw, 46px) 0 clamp(34px, 5vw, 60px);
}

.bk-head{
  width: min(1180px, 92vw);
  margin: 0 auto 16px;
}

.bk-h2{
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  color: #111827;
}

.bk-p{
  margin: 8px 0 0;
  color: #6b7280;
  line-height: 1.6;
}

.bk-grid{
  width: min(1180px, 92vw);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bk-card{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 280px auto;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
      
 
}

.bk-card-wide{
  grid-column: span 2;
  align-items: center;
}

.bk-thumb{
  background: #f3f4f6;
  display: grid;
  place-items: center;
  padding: 12px;
}

.bk-thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bk-body{
  padding: 14px 14px 16px;
}

.bk-name{
  margin: 0 0 6px;
  font-size: 16px;
  color: #111827;
}

.bk-size{
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 13px;
}

.bk-wa{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #111827;
  color: #111827;
  background: #fff;
}

/* --------- Responsive --------- */
@media (max-width: 980px){
  .bk-hero-inner{ grid-template-columns: 1fr; }
  .bk-grid{ grid-template-columns: repeat(2, 1fr); }
  .bk-card-wide{ grid-column: span 2; }
}

@media (max-width: 520px){
  .bk-grid{ grid-template-columns: 1fr; }
  .bk-card-wide{ grid-column: span 1; }
}
/* =========================
   HERO ROMPETRAFICOS
   ========================= */

.hero-rompe{
  position: relative;
  min-height: 520px;

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

  text-align: center;

  background-image: url("img/rompetrafico-banner.jpg"); /* cambia por tu imagen */
  background-size: cover;
  background-position: center;

  padding: 80px 20px;
  overflow: hidden;
}

/* capa oscura */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.45)
  );
}

/* contenido */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #fff;
}

.hero-content h1{
  font-size: clamp(36px,5vw,60px);
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-content p{
  font-size: 18px;
  margin-bottom: 20px;
}

/* etiquetas publicitarias */
.hero-tags{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.hero-tags span{
  background: rgba(255,255,255,.15);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

/* botón */
.hero-btn{
  display: inline-block;
  padding: 14px 30px;
  background: #00e676;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: .3s;
}

.hero-btn:hover{
  transform: translateY(-3px);
  background: #00c853;
}

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

.hero-rompe{
  min-height:420px;
}

.hero-tags{
  flex-wrap: wrap;
}

}
/* =========================
   HERO ROMPETRAFICOS
   ========================= */

.hero-rompe{
  position: relative;
  min-height: 520px;

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

  text-align: center;

  background-image: url("img/rompetrafico-banner.jpg"); /* cambia por tu imagen */
  background-size: cover;
  background-position: center;

  padding: 80px 20px;
  overflow: hidden;
}

/* capa oscura */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.45)
  );
}

/* contenido */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #fff;
}

.hero-content h1{
  font-size: clamp(36px,5vw,60px);
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-content p{
  font-size: 18px;
  margin-bottom: 20px;
}

/* etiquetas publicitarias */
.hero-tags{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.hero-tags span{
  background: rgba(255,255,255,.15);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

/* botón */
.hero-btn{
  display: inline-block;
  padding: 14px 30px;
  background: #00e676;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: .3s;
}

.hero-btn:hover{
  transform: translateY(-3px);
  background: #00c853;
}

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

.hero-rompe{
  min-height:420px;
}

.hero-tags{
  flex-wrap: wrap;
}

}

/* =========================
   HERO ROMPETRAFICOS
   ========================= */

.hero-rompe{
  position: relative;
  min-height: 520px;

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

  text-align: center;

  background-image: url("img/rompetrafico-banner.jpg"); /* cambia por tu imagen */
  background-size: cover;
  background-position: center;

  padding: 80px 20px;
  overflow: hidden;
}

/* capa oscura */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.45)
  );
}

/* contenido */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #fff;
}

.hero-content h1{
  font-size: clamp(36px,5vw,60px);
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-content p{
  font-size: 18px;
  margin-bottom: 20px;
}

/* etiquetas publicitarias */
.hero-tags{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.hero-tags span{
  background: rgba(255,255,255,.15);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

/* botón */
.hero-btn{
  display: inline-block;
  padding: 14px 30px;
  background: #00e676;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: .3s;
}

.hero-btn:hover{
  transform: translateY(-3px);
  background: #00c853;
}

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

.hero-rompe{
  min-height:420px;
}

.hero-tags{
  flex-wrap: wrap;
}

}

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

}

/* =========================
   HERO COUNTERS
   ========================= */

.hero-photo{
  padding: 80px 20px;
  background: #f5f7fb;
}

.hero-photo-container{
  max-width: 1200px;
  margin: auto;

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

/* TEXTO */

.hero-photo-content{
  flex: 1;
}

.hero-photo-content h1{
  font-size: clamp(36px,5vw,60px);
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-photo-content p{
  font-size: 18px;
  margin-bottom: 25px;
  color: #555;
}

/* BOTÓN */

.hero-btn{
  display: inline-block;
  padding: 14px 30px;
  background: #00e676;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
}

/* IMAGEN */

.hero-photo-img{
  flex: 1;
  text-align: center;
}

.hero-photo-img img{
  width: 100%;
  max-width: 420px;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-photo-container{
  flex-direction: column;
  text-align: center;
}

.hero-photo-img img{
  max-width: 320px;
}

}

/* ===== BOTÓN DESCUENTO WMAX ===== */

/* ===== BOTÓN DESCUENTO WMAX ===== */

.btn-descuento{
  position: fixed;
  bottom: 120px;
  left: 80px; ; /* 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); }
}

.banner-movimiento{
  position:relative;
  width:100%;
  height:85vh;
  overflow:hidden;
}

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

.banner-texto{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  color:white;
  max-width:600px;
}

.banner-texto h1{
  font-size:50px;
  font-weight:900;
  margin-bottom:10px;
}

.banner-texto p{
  font-size:20px;
  margin-bottom:20px;
}

.banner-btn{
  background:#25D366;
  color:white;
  padding:12px 25px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
}

.banner-btn:hover{
  background:#1ebe5d;
}



























/* WRAPPER */
.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* TRACK */
.slider-track-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* SLIDES */
.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  gap: 25px;
  
}

/* TARJETAS */
.logo-card {
  position: relative;
  width: 160px;
  height: 120px;

  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
  
}

/* EFECTO HOVER PRO */


/* IMÁGENES */
.logo-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: 0.4s ease;
  filter: grayscale(100%) brightness(1.2);
}

/* COLOR AL HOVER */
.logo-card:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

/* EFECTO BRILLO */
.logo-card::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;

  transform: rotate(25deg);
  top: -100%;
  left: -100%;
  transition: 0.6s;
}

.logo-card:hover::before {
  top: 100%;
  left: 100%;
}

/* SOMBRA INTERNA */
.shadow {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
 
}

/* BOTONES */
.slider-btn {
  background: rgba(255,255,255,0.05);
  border: none;
  color: white;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  backdrop-filter: blur(6px);
}

.slider-btn:hover {
  background: #00ffff;
  color: #000;
  transform: scale(1.1);
}

/* DOTS */
.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #555;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}

.dot.active {
  background: #00ffff;
  transform: scale(1.3);
}



/* BOTON */
.arana-btn{
display:inline-block;
background:#25D366;
color:#fff;
padding:12px 18px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.arana-btn:hover{
background:#1da851;
}











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


/* =========================
   PLANES BRANDING NUEVOS
========================= */
.planes-branding {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f7f9fc, #eef3f9);
}

.planes-branding-head {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.planes-etiqueta {
  display: inline-block;
  padding: 8px 18px;
  background: #e8f1ff;
  color: #0057d9;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 14px;
}

.planes-branding-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #111827;
  font-weight: 800;
}

.planes-branding-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #5b6474;
}

.planes-branding-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.branding-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(14, 30, 62, 0.08);
  border: 1px solid #e7ecf3;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.branding-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(14, 30, 62, 0.12);
}

.branding-card.recomendado {
  border: 2px solid #0057d9;
  transform: scale(1.03);
}

.branding-card.recomendado:hover {
  transform: scale(1.03) translateY(-8px);
}

.recomendado-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #0057d9;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 50px;
}

.branding-top {
  margin-bottom: 28px;
}

.branding-top h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: #111827;
  font-weight: 800;
}

.branding-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0057d9;
}

.branding-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.branding-card ul li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid #edf1f6;
  color: #4b5563;
  font-size: 15px;
}

.branding-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8f1ff;
  color: #0057d9;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branding-btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0057d9, #003ea8);
  color: #fff;
  font-weight: 700;
  transition: all .3s ease;
  box-shadow: 0 10px 24px rgba(0, 87, 217, 0.18);
}

.branding-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 87, 217, 0.28);
}

@media (max-width: 1024px) {
  .planes-branding-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }

  .branding-card.recomendado {
    transform: none;
  }

  .branding-card.recomendado:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 600px) {
  .planes-branding {
    padding: 70px 14px;
  }

  .branding-card {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .branding-top h3 {
    font-size: 1.35rem;
  }

  .branding-price {
    font-size: 2rem;
  }
}

