/* RESET */ 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CUERPO Y FONDO */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* FONDO ANIMADO */
.fondo-animado {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #072268, #e6f0ff, #072268, #e6f0ff);
  background-size: 400% 400%;
  animation: fondoMovimiento 15s ease infinite;
  z-index: -1;
}

@keyframes fondoMovimiento {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #072268;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  animation: deslizarNavbar 1s ease forwards;
  transform: translateY(-100%);
}

@keyframes deslizarNavbar {
  to {
    transform: translateY(0);
  }
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e6f0ff;
}

.navbar nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #e6f0ff;
  transition: width 0.3s ease;
}

.navbar nav a:hover::after {
  width: 100%;
}

.navbar nav a:hover {
  color: #e6f0ff;
}

/* REDES SOCIALES NAVBAR */
.nav-social {
  display: flex;
  gap: 1rem;
}

.nav-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.3s;
}

.nav-social a:hover {
  color: #e6f0ff;
  transform: scale(1.2);
}

/* SECCIONES */
.seccion {
  padding: 100px 20px 80px;
  max-width: 1100px;  /* 👈 MÁS ESPACIO */
  margin: 0 auto;
  text-align: center;
}

.inicio {
  margin-top: 80px;
}

/* BOTÓN 3D */
.boton-3d {
  display: inline-block;
  padding: 15px 30px;
  margin-top: 20px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(145deg, #e6f0ff, #072268);
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(230, 240, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.boton-3d:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(230, 240, 255, 0.6);
}

/* ANIMACIÓN DE ENTRADA */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: aparecer 1s ease-out forwards;
}

@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTADOR */
.contador {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.contador div {
  background: #072268cc;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(230, 240, 255, 0.3);
  min-width: 70px;
}

.contador span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

.contador small {
  font-size: 0.9rem;
  color: #e6f0ff;
}

/* HERO (BANNER CORREGIDO) */
.hero {
  position: relative;

  width: 100%;
  height: 700px;

  background-image: url('img/BANNER COMPU.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.overlay-con-imagen {
  background-color: rgba(0, 0, 0, 0.4); /* 👈 más transparente */
  border-radius: 20px;
  padding: 40px;

  max-width: 800px; /* 👈 un poco más grande */
  width: 90%;

  margin: 0 auto;

  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

  text-align: center;
}

/* INFORMACIÓN DEL EVENTO */
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e6f0ff;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e6f0ff;
  margin: 10px auto 0;
  border-radius: 5px;
}

h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #fff;
}

/* CATEGORÍAS Y PREMIOS */
.categorias-premios {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.categorias-premios .categorias,
.categorias-premios .premios {
  flex: 1;
}

@media(min-width: 768px) {
  .categorias-premios {
    flex-direction: row;
  }
}

/* KITS */
.fondo-azul {
  background-color: rgba(7, 34, 104, 0.2);
  border-top: 2px solid #e6f0ff33;
  border-bottom: 2px solid #e6f0ff33;
}

.imagen-kit,
.imagen-ruta {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin-top: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FOOTER - BANNER FINAL */
.footer-banner {
  background-color: #000;
  padding: 40px 20px 20px;
  text-align: center;
  color: #ccc;
}

.contenedor-banner-final {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
  background-color: #072268;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.banner-final-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.footer-banner p {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #e6f0ff;
}

/* BOTÓN HAMBURGUESA */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* NAV LINKS DESKTOP */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* MENÚ RESPONSIVE */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
    z-index: 11;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #072268;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
    transition: max-height 0.3s ease;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.show {
    max-height: 500px;
    padding-bottom: 1rem;
  }

  .nav-social {
    display: none;
  }
}

/* CAJA TRANSPARENTE - CATEGORÍAS */
.glass-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  color: #fff;
  text-align: justify;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.categorias-premios {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .categorias-premios {
    flex-direction: row;
  }

  .glass-box {
    margin: 0;
  }
}

.glass-box ul {
  padding-left: 20px;
}

.glass-box li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.contenedor-kit {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(230, 240, 255, 0.2);
  text-align: justify;
}

.lista-kit {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.lista-kit li {
  margin-bottom: 8px;
  color: #e6f0ff;
  font-weight: 500;
  font-size: 1rem;
}

.nota-kit {
  font-size: 0.9rem;
  color: #e6f0ff;
  margin-top: 10px;
}

.lista-kit {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #e6f0ff;
}

.lista-kit li {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1rem;
}

.nota-kit {
  font-size: 0.9rem;
  color: #e6f0ff;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.footer-banner {
  background: linear-gradient(to right, #041c48, #072268);
  padding: 40px 20px 30px;
  text-align: center;
  color: #e6f0ff;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.4);
  border-top: 2px solid #e6f0ff33;
}

.contenedor-banner-final {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
  background-color: #00143c;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.banner-final-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.footer-banner p {
  margin-top: 15px;
  font-size: 1rem;
  color: #e6f0ff;
}

/* REDES SOCIALES FOOTER */
.footer-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  color: #e6f0ff;
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #00d4ff;
}

/* SOMBRA PARA VISIBILIDAD DEL TEXTO */
body, h1, h2, h3, h4, h5, h6, p, a, span, li {
  text-shadow: 1px 1px 3px #000;
}
/* SOMBRA NEGRA PARA TODO EL TEXTO VISIBLE */
h1, h2, h3, h4, h5, h6,
p, a, li, span, strong, small, .logo,
.overlay-con-imagen, .glass-box, .nota-kit, .lista-kit, .seccion {
  text-shadow: 1px 1px 4px black !important;
}
/* FORZAR SOMBRA NEGRA A TODO EL TEXTO VISIBLE */
body {
  color: #fff;
}

/* SOLO TEXTO IMPORTANTE */
h1, h2, h3, h4, h5, h6,
p, a, li, span, strong, small {
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}
/* ===============================
   CATEGORÍAS 5K Y 10K NUEVAS
================================= */

.categorias-distancias {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: nowrap; /* 👈 IMPORTANTE */
}

.caja-categoria {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  width: 420px;        /* 👈 TAMAÑO REAL */
  max-width: 100%;     /* 👈 para que no se rompa en pantallas pequeñas */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.caja-categoria:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.caja-categoria h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.caja-categoria ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.caja-categoria li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.caja-categoria p {
  font-size: 0.85rem;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .categorias-distancias {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap; /* solo en móvil */
  }

  .caja-categoria {
    max-width: 95%;
  }
}

.imagen-ruta {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.imagen-ruta:hover {
  transform: scale(1.03);
}

/* 📱 BANNER PARA MÓVIL */
@media (max-width: 768px) {
  .hero {
    height: 900px;

    background-image: url('img/BANNER TELEFONO.png');
    background-size: cover;

    /* 👇 ESTO ES LA CLAVE */
    background-position: center top;

    display: flex;
    justify-content: center;

    /* 👇 SUBE el contenido hacia arriba */
    align-items: flex-start;

    padding-top: 120px; /* ajusta si quieres subir/bajar */
  }
}
@media (max-width: 768px) {
  .overlay-con-imagen {
    margin-top: 0;

    padding: 30px 20px;

    max-width: 95%;

    background-color: rgba(0, 0, 0, 0.35); /* más transparente */
  }
}
.hero.seccion {
  max-width: 100% !important;
  padding: 0 !important;
}
.imagen-premios {
  display: flex;
  justify-content: center;   /* centra horizontalmente */
  align-items: center;       /* alinea verticalmente */
  gap: 20px;                 /* espacio entre imágenes */
  margin-top: 30px;
  flex-wrap: wrap;           /* para que en celular se acomoden */
}

.imagen-premios img {
  width: 45%;                /* tamaño equilibrado */
  max-width: 500px;          /* evita que sean muy grandes */
  border-radius: 12px;
}
.titulo-premios {
  text-align: center;
  font-size: 32px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #ffffff; /* ajusta según tu fondo */
  letter-spacing: 2px;
}

.imagen-premios {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.bloque-premio {
  text-align: center;
}

.bloque-premio h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #ffffff;
}

.bloque-premio img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
}
/* ===============================
   EFECTOS SUAVES PRO (II EDICIÓN)
================================= */

/* ✨ Animación suave de aparición con delay */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: aparecerSuave 1s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }

@keyframes aparecerSuave {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌟 Efecto hover elegante para secciones */
.seccion {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seccion:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* 🧊 Glass-box más elegante al pasar */
.glass-box:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transform: scale(1.01);
}

/* 🖼️ Imágenes con efecto suave */
.imagen-kit,
.imagen-ruta {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imagen-kit:hover,
.imagen-ruta:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* 🎥 Video elegante */
video {
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

video:hover {
  transform: scale(1.02);
}

/* 🔥 Botón con glow */
.boton-3d {
  position: relative;
  overflow: hidden;
}

.boton-3d::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -100%;
  left: -100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.boton-3d:hover::after {
  top: 0;
  left: 0;
}
/* ===============================
   HERO EXCLUSIVO II EDICIÓN
================================= */

.hero-ii-edicion { 
  width: 100%;
  height: 700px;

  background-image: url("img/PORTADA_SEGUNDA_EDI.png") !important;


  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  margin-top: 80px;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .hero-ii-edicion {
    height: 600px;

     background-image: url("img/PORTADA_SEGUNDA_EDI_FONO.png") !important;


    background-position: center;
  }
}

.historia-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px;

  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.5);

  text-align: center;
  backdrop-filter: blur(8px);
}

/* Texto general */
.historia-box p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1rem;
}

/* Intro más grande */
.historia-box .intro {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Frase destacada */
.historia-box .frase {
  font-style: italic;
  font-size: 1.1rem;
  margin: 20px 0;
}

/* Texto final */
.historia-box .final {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
}

/* Iconos centrados */
.iconos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.iconos span {
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: transform 0.3s;
}

.iconos span:hover {
  transform: scale(1.1);
}
.personajes {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.personaje {
  text-align: center;
  transition: transform 0.3s ease;
}

/* 👇 TAMAÑO PERFECTO AUTOMÁTICO */
.personaje img {
  width: 180px;
  height: 180px;          /* 👈 mismo alto para todas */
  object-fit: contain;    /* 👈 ajusta sin deformar */
  
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.05); /* opcional, mejora visual */
}

/* Texto debajo */
.personaje p {
  margin-top: 8px;
  font-size: 0.9rem;
}

/* Hover elegante */
.personaje:hover {
  transform: translateY(-5px) scale(1.05);
}
.kit-items-2 {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: 15px 40px;
  margin-top: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .kit-items-2 {
    grid-template-columns: 1fr;
    text-align: start;
  }
}
/* 🎯 CENTRAR SOLO LA CAJA DE GALERÍA */
.galeria-box {
  margin: 0 auto;      /* 👈 centra horizontalmente */
  text-align: center;  /* 👈 centra el texto */
}
/* ===============================
   NAVBAR SOLO REDES (II EDICIÓN)
================================= */

.navbar-redes {
  justify-content: center !important;
}

.navbar-redes .nav-social {
  gap: 30px;
}

.navbar-redes .nav-social a {
  font-size: 1.8rem; /* 👈 tamaño más grande */
  transition: transform 0.3s ease, color 0.3s ease;
}

.navbar-redes .nav-social a:hover {
  transform: scale(1.3);
  color: #00d4ff;
}
/* ===============================
   HEADER SOLO II EDICIÓN (FIJO)
================================= */

.navbar-redes {
  display: flex;
  align-items: center;
  justify-content: center; /* redes centradas */
  position: fixed;         /* 👈 LO HACE FIJO */
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  z-index: 9999;
  background-color: #072268; /* puedes cambiar color */
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* TEXTO IZQUIERDA */
.logo-ii {
  position: absolute;
  left: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

/* REDES CENTRADAS */
.nav-social {
  display: flex;
  gap: 25px;
}

.nav-social a {
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-social a:hover {
  transform: scale(1.3);
  color: #00d4ff;
}

/* 👇 EVITA QUE EL CONTENIDO SE SUBA DEBAJO DEL HEADER */
body {
  padding-top: 80px;
}
/* ===============================
   BOTÓN DESTACADO II EDICIÓN
================================= */

.btn-edicion {
  background: linear-gradient(145deg, #00d4ff, #072268);
  padding: 8px 14px;
  border-radius: 12px;
  color: #fff !important;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
}
/* ===============================
   BOTÓN DESTACADO II EDICIÓN
================================= */

.btn-edicion {
  background: linear-gradient(145deg, #00d4ff, #072268);
  padding: 8px 14px;
  border-radius: 12px;
  color: #fff !important;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* ===============================
   PUNTO ANIMADO EN EL BORDE
================================= */

.btn-edicion::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00d4ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00d4ff;

  top: 0;
  left: 0;

  animation: recorrerBorde 3s linear infinite;
  pointer-events: none;
}

/* recorrido del punto */
@keyframes recorrerBorde {
  0% {
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }

  25% {
    top: 0;
    left: 100%;
    transform: translate(-100%, 0);
  }

  50% {
    top: 100%;
    left: 100%;
    transform: translate(-100%, -100%);
  }

  75% {
    top: 100%;
    left: 0;
    transform: translate(0, -100%);
  }

  100% {
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}

/* hover animado */
.btn-edicion:hover {
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.8);
  background: linear-gradient(145deg, #072268, #00d4ff);
}
.galeria-prensa {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 450px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 15px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.galeria-prensa .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain; /* 🔥 CAMBIO CLAVE */
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.galeria-prensa .slide.active {
    opacity: 1;
}
.flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
}

.flecha:hover {
    background: rgba(0,0,0,0.7);
}

.flecha.izquierda {
    left: 10px;
}

.flecha.derecha {
    right: 10px;
}
.video-prensa {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.video-prensa video {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}
.video-prensa video {
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    background: rgb(19, 30, 97);
    padding: 10px;
}
/* =====================================
   📱 MEJORAS PROFESIONALES MOBILE
===================================== */
@media (max-width: 768px) {

  /* 🧭 NAVBAR */
  .navbar {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .menu-btn {
    font-size: 1.8rem;
  }

  /* 📱 MENÚ DESPLEGABLE */
  .nav-links {
    top: 60px;
  }

  .nav-links ul {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  /* ❌ ocultar redes arriba (mejor UX) */
  .nav-social {
    display: none;
  }

  /* 🎯 BOTONES */
  .boton-3d {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 20px;
  }

  /* 🧱 SECCIONES */
  .seccion {
    padding: 80px 15px 60px;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* 🧊 CAJAS (glass, kit, etc) */
  .glass-box,
  .contenedor-kit {
    padding: 20px;
    border-radius: 15px;
  }

  /* 📦 CATEGORÍAS (MUY IMPORTANTE) */
  .categorias-distancias {
    gap: 25px;
  }

  .caja-categoria {
    width: 100%;
    padding: 20px;
  }

  /* 🖼️ IMÁGENES */
  .imagen-kit,
  .imagen-ruta {
    margin-top: 10px;
  }

  /* 🏆 PREMIOS */
  .imagen-premios img {
    width: 100%;
  }

  /* 👥 PERSONAJES */
  .personaje img {
    width: 120px;
    height: 120px;
  }

  /* 🎥 GALERÍA */
  .galeria-prensa {
    height: 250px;
  }

  .flecha {
    font-size: 20px;
    padding: 8px 10px;
  }

  /* 🎥 VIDEO */
  .video-prensa video {
    max-width: 100%;
  }

  /* 📦 FOOTER */
  .footer-banner {
    padding: 30px 15px;
  }

  .footer-social {
    gap: 15px;
  }

  .footer-social a {
    font-size: 1.2rem;
  }

}
.nav-links {
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {

  .navbar-redes {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 8px;
    text-align: center;
  }

  .logo-ii {
    position: static; /* 🔥 clave */
    font-size: 1.1rem;
    line-height: 1.3;
    max-width: 95%;
  }

  .nav-social a {
    font-size: 1.4rem;
  }

}
.logo-ii {
  font-weight: 600;
}
@media (max-width: 768px) {

  .navbar-redes .nav-social {
    display: flex !important;
    justify-content: center;
  }

}