* {
    padding: 0;
    margin: 0;
    
}

body {
    background-color: #111111;
    font-family: "Montserrat Alternates", sans-serif;
}


a {
  color: rgb(255, 153, 0);
}

a:hover {
  color: rgb(255, 136, 0);
}


/* Estilos para el menú hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}



/* Estilos para mobile */
@media screen and (max-width: 768px) {
  nav {
    justify-content: space-between;
    padding: 5px 20px;
    gap: 0;
  }

  .hamburger {
    display: flex;
  }

 

  /* Animación del hamburguesa cuando está activo */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Mantener los estilos existentes del nav */

.contenido-carrusel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 0;
}

.texto-superpuesto {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 100px 50px 40px 50px;
  font-size: 15mm;
  font-family: "Bebas Neue", sans-serif;
  height: 100%; 
  border-radius: 0; 
  box-shadow: none; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; 
}

.texto-superpuesto .titulo-corto {
  color: rgb(255, 153, 0);
}

.carrusel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.carrusel-imagenes {
  display: flex;
  width: max-content;
  animation: scrollCinta 30s linear infinite;
  height: 100%;
}

.carrusel-imagenes img {
  width: 500px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scrollCinta {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.seccion-nueva {
    padding: 40px;
    color: white;
    background-color: #111111;
    
}

.seccion-nueva h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: rgb(255, 153, 0);
    text-align: center;
}




/* ===== INSCRIPCIONES ===== */
.cta-inscripcion {
  background: linear-gradient(135deg, #111111, #1a1a1a);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 153, 0, 0.3);
  position: relative;
}

.cta-contenido {
  max-width: 700px;
  margin: 0 auto;
}

.cta-inscripcion h2 {
  color: rgb(255, 153, 0);
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "Montserrat Alternates", sans-serif;
  letter-spacing: 1px;
}

.cta-inscripcion p {
  color: #cccccc;
  font-size: 1.2rem;
  margin-bottom: 35px;
}

/* BOTÓN FORM */
.btn-cta-inscribirse {
  display: inline-block;
  background: linear-gradient(135deg, rgb(255, 153, 0), rgb(255, 136, 0));
  color: black;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-inscribirse:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
  color: white;
}

.cta-extra-texto {
  margin-top: 25px;
  color: #aaaaaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* BOTÓN BASES */
.btn-cta-secundario {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgb(255, 153, 0);
  border: 2px solid rgb(255, 153, 0);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-cta-secundario:hover {
  background: rgb(255, 153, 0);
  color: black;
  transform: translateY(-2px);
}




@media screen and (max-width: 600px) {
    .formulario-inscripcion {
        width: 90%;
        padding: 20px;
    }

    .formulario-inscripcion button {
        font-size: 15px;
    }
}

html, body {
    overflow-x: hidden;
}

/* SCROLLBAR CON EFECTOS DE LUZ */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgb(255, 153, 0), rgb(255, 136, 0));
  border-radius: 10px;
  border: 2px solid #0a0a0a;
  position: relative;
}

::-webkit-scrollbar-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 10px 10px 0 0;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgb(255, 170, 51), rgb(255, 153, 0));
  box-shadow: 
    0 0 10px rgba(255, 153, 0, 0.8),
    inset 0 0 5px rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, rgb(255, 136, 0), rgb(255, 153, 0));
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(255, 153, 0) #1a1a1a;
}


/* Ex-style html */


:root {
      --nav-bg: rgba(17, 17, 17, 0.95);
      --nav-border: rgb(255, 153, 0);
      --nav-text: #ffffff;
      --nav-accent: rgb(255, 153, 0);
      --nav-hover: rgb(255, 170, 51);
      --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      --nav-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ===== ANIMACIONES ===== */
    .animacion-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-out;
    }

    .animacion-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .animacion-izquierda {
      opacity: 0;
      transform: translateX(-30px);
      transition: all 0.6s ease-out;
    }

    .animacion-izquierda.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .animacion-derecha {
      opacity: 0;
      transform: translateX(30px);
      transition: all 0.6s ease-out;
    }

    .animacion-derecha.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .animacion-escala {
      opacity: 0;
      transform: scale(0.9);
      transition: all 0.5s ease-out;
    }

    .animacion-escala.visible {
      opacity: 1;
      transform: scale(1);
    }

    .grid-animado .animacion-scroll {
      transition-delay: calc(var(--delay, 0) * 0.1s);
    }

    @keyframes entradaHero {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .contenido-carrusel {
      opacity: 0;
      transform: translateY(20px);
      animation: entradaHero 1s ease-out 0.2s forwards;
    }

    /* ===== NAVEGACIÓN ===== */
    .nav-mejorada {
      background: var(--nav-bg);
      backdrop-filter: blur(10px);
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      box-shadow: var(--nav-shadow);
      border-bottom: 2px solid var(--nav-border);
      transition: var(--nav-transition);
      animation: navEntrance 0.6s ease;
    }

    @keyframes navEntrance {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .nav-mejorada.scrolled {
      padding: 8px 20px;
      background: rgba(10, 10, 10, 0.98);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      padding: 5px;
      gap: 12px;
      text-decoration: none;
      transition: var(--nav-transition);
      position: relative;
      overflow: hidden;
    }

    .nav-logo::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.1), transparent);
      transition: var(--nav-transition);
    }

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

    .nav-logo img {
      height: 45px;
      width: auto;
      transition: var(--nav-transition);
      filter: drop-shadow(0 2px 4px rgba(255, 153, 0, 0.3));
    }

    .nav-logo:hover img {
      transform: scale(1.1) rotate(5deg);
    }

    .logo-text {
      color: var(--nav-text);
      font-size: 1.4rem;
      font-weight: 700;
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--nav-text), var(--nav-accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: var(--nav-transition);
    }

    .nav-logo:hover .logo-text {
      background: linear-gradient(135deg, var(--nav-accent), var(--nav-hover));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 8px;
      margin-left: auto;
    }

    .nav-item {
      position: relative;
      animation: navEntrance 0.6s ease;
      animation-fill-mode: both;
    }

    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-item:nth-child(4) { animation-delay: 0.4s; }

    .nav-link {
      display: flex;
      align-items: center;
      color: var(--nav-text);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 12px 20px;
      border-radius: 8px;
      transition: var(--nav-transition);
      position: relative;
      overflow: hidden;
      background: transparent;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.1), transparent);
      transition: var(--nav-transition);
    }

    .nav-link:hover::before {
      left: 100%;
    }

    .nav-link:hover {
      color: var(--nav-accent);
      background: rgba(255, 153, 0, 0.05);
      transform: translateY(-2px);
    }

    .nav-link.active {
      background: rgba(255, 153, 0, 0.1) !important;
    }

    .nav-link.active .nav-underline {
      width: 80% !important;
    }

    .nav-link.active:hover {
      color: var(--nav-accent) !important;
      background: rgba(255, 153, 0, 0.15) !important;
    }

    .nav-link[href="#contacto"] {
      background: transparent !important;
    }
    
    .nav-link[href="#contacto"] .nav-underline {
      width: 0 !important;
    }
    
    .nav-link[href="#contacto"]:hover {
      background: rgba(255, 153, 0, 0.05) !important;
    }
    
    .nav-link[href="#contacto"]:hover .nav-underline {
      width: 80% !important;
    }

    .nav-underline {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--nav-accent), var(--nav-hover));
      transition: var(--nav-transition);
      transform: translateX(-50%);
    }

    .nav-link:hover .nav-underline {
      width: 80%;
    }

    .nav-special {
      background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 136, 0, 0.05));
      border: 1px solid rgba(255, 153, 0, 0.3);
      position: relative;
    }

    .nav-special:hover {
      background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(255, 136, 0, 0.1));
      border-color: var(--nav-accent);
    }

    /* ===== MENÚ HAMBURGUESA ===== */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      position: relative;
      z-index: 1001;
    }

    .hamburger-line {
      display: block;
      height: 3px;
      width: 100%;
      background-color: rgb(255, 153, 0);
      border-radius: 3px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ===== PARTÍCULAS DECORATIVAS ===== */
    .nav-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--nav-accent);
      border-radius: 50%;
      opacity: 0;
      animation: floatParticle 6s infinite linear;
    }

    .particle:nth-child(1) {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .particle:nth-child(2) {
      top: 60%;
      left: 20%;
      animation-delay: 1.5s;
    }

    .particle:nth-child(3) {
      top: 40%;
      left: 30%;
      animation-delay: 3s;
    }

    .particle:nth-child(4) {
      top: 80%;
      left: 40%;
      animation-delay: 4.5s;
    }

    .particle:nth-child(5) {
      top: 30%;
      left: 50%;
      animation-delay: 6s;
    }

    @keyframes floatParticle {
      0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
      }
      10% {
        opacity: 0.3;
      }
      90% {
        opacity: 0.3;
      }
      100% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0;
      }
    }

    /* ===== BOTÓN VOLVER ARRIBA ===== */
    .btn-up {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, rgb(255, 153, 0), rgb(255, 136, 0));
      color: black;
      border: none;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    }

    .btn-up.show {
      opacity: 1;
      visibility: visible;
      z-index: 1;
    }

    .btn-up:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 153, 0, 0.5);
      color: white;
    }

    .btn-up-icon {
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    .btn-up:hover .btn-up-icon {
      transform: scale(1.2);
    }

    /* ===== DIVISOR NARANJA ===== */
    .divisor-naranja {
      width: 80%;
      height: 2px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(255, 153, 0) 20%, 
        rgb(255, 153, 0) 80%, 
        transparent 100%);
      margin: 0 auto 0 auto;
      border: none;
      border-radius: 2px;
      opacity: 0.7;
    }

    .sobre-nosotros .divisor-naranja,
    .fechas .divisor-naranja,
    .inscripcion .divisor-naranja,
    .descarga-permisos .divisor-naranja,
    .documentacion .divisor-naranja,
    .faq .divisor-naranja {
      margin: 40px auto 0 auto;
    }

    .contacto .divisor-naranja {
      margin: 60px auto 0 auto;
    }

    /* ===== SECCIONES ESPECÍFICAS ===== */
    /* SOBRE NOSOTROS */
    .sobre-nosotros {
      background-color: #111111;
      padding: 60px 20px;
    }

    .sobre-nosotros h2 {
      color: rgb(255, 153, 0);
      font-size: 2.5rem;
      margin-bottom: 30px;
      text-align: center;
      font-weight: bold;
    }

    .contenido-sobre-nosotros {
      max-width: 800px;
      margin: 0 auto;
    }

    .contenido-sobre-nosotros p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #ffffff;
      text-align: justify;
    }

    /* FAQ */
    .seccion-nueva.faq {
      background-color: #111111;
      padding: 100px 40px 60px;
      color: white;
    }

    .seccion-nueva.faq h2 {
      color: rgb(255, 153, 0);
      font-size: 2.5rem;
      margin-bottom: 40px;
      text-align: center;
      font-weight: bold;
    }

    .faq-container {
      display: flex;
      justify-content: space-between;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .columna-faq {
      flex: 1;
      min-width: 300px;
    }

    .pregunta-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 20px;
      border-left: 4px solid rgb(255, 153, 0);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .pregunta-item:not(.active):hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 153, 0, 0.2);
    }

    .pregunta-header {
      padding: 20px 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .pregunta-item:not(.active) .pregunta-header:hover {
      background-color: #222222;
    }

    .pregunta-header h3 {
      color: rgb(255, 255, 255);
      font-size: 1.3rem;
      margin: 0;
      font-weight: 600;
      flex: 1;
    }

    .pregunta-icon {
      color: rgb(255, 153, 0);
      font-size: 1.5rem;
      font-weight: bold;
      transition: transform 0.3s ease;
      margin-left: 15px;
    }

    .pregunta-respuesta {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      background-color: #222222;
    }

    .pregunta-respuesta p {
      color: #cccccc;
      font-size: 1rem;
      line-height: 1.6;
      margin-top: 10px;
      padding: 0 0 10px 0;
      opacity: 0;
      transition: opacity 0.3s ease 0.1s;
    }

    .pregunta-item.active {
      box-shadow: 0 4px 20px rgba(255, 153, 0, 0.3);
    }

    .pregunta-item.active .pregunta-respuesta {
      max-height: 200px;
      padding: 0 25px;
    }

    .pregunta-item.active .pregunta-respuesta p {
      opacity: 1;
    }

    .pregunta-item.active .pregunta-icon {
      transform: rotate(45deg);
    }

    .pregunta-item.active .pregunta-header {
      background-color: #252525;
    }

    /* ===== MODALIDAD HÍBRIDA - VERSIÓN MINIMALISTA CORREGIDA ===== */
    .modalidad-hibrida {
      background-color: #111111;
      padding: 80px 20px;
      position: relative;
    }

    .contenedor-minimalista {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Header */
    .header-modalidad {
      text-align: center;
      margin-bottom: 60px;
      width: 100%;
    }

    .modalidad-hibrida h2 {
      color: rgb(255, 153, 0);
      font-size: 2.5rem;
      margin-bottom: 15px;
      text-align: center;
      font-weight: bold;
      font-family: "Montserrat Alternates", sans-serif;
      letter-spacing: 1px;
      width: 100%;
    }

    .subtitulo-modalidad {
      color: #cccccc;
      font-size: 1.1rem;
      font-family: "Montserrat Alternates", sans-serif;
      margin: 0;
      text-align: center;
      width: 100%;
    }

    /* Selector Minimalista */
    .selector-minimalista {
      margin-bottom: 50px;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .selector-contenedor {
      display: inline-flex;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 6px;
      position: relative;
      border: 1px solid rgba(255, 153, 0, 0.2);
    }

    .btn-selector {
      display: flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: none;
      padding: 12px 30px;
      color: #888;
      font-family: "Montserrat Alternates", sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 8px;
      position: relative;
      z-index: 2;
      min-width: 140px;
      justify-content: center;
    }

    .btn-selector.active {
      color: #000;
    }

    .selector-slider {
      position: absolute;
      top: 6px;
      left: 0px;
      height: calc(100% - 12px);
      background: rgb(255, 153, 0);
      border-radius: 8px;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 1;
    }

    .selector-icono {
      font-size: 1.1rem;
    }

    /* Cartas de Modalidad - CORREGIDAS */
    .contenido-minimalista {
      position: relative;
      min-height: 400px;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .modalidad-carta {
      display: none;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: absolute;
      top: 0;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }

    .modalidad-carta.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
      position: relative;
    }

    .modalidad-carta {
      background: linear-gradient(145deg, #1a1a1a, #151515);
      border: 1px solid #333;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      width: 100%;
    }

    .modalidad-carta:hover {
      border-color: rgb(255, 153, 0);
      box-shadow: 0 8px 30px rgba(255, 153, 0, 0.1);
    }

    .carta-header {
      padding: 30px 30px 20px 30px;
      border-bottom: 1px solid #333;
      text-align: center;
    }

    .carta-badge {
      display: inline-block;
      background: rgba(255, 153, 0, 0.1);
      color: rgb(255, 153, 0);
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 15px;
      font-family: "Montserrat Alternates", sans-serif;
    }

    .carta-header h3 {
      color: #ffffff;
      font-size: 1.8rem;
      margin: 0;
      font-weight: 600;
      font-family: "Montserrat Alternates", sans-serif;
      letter-spacing: 0.5px;
    }

    .carta-contenido {
      padding: 30px;
    }

    /* Información Destacada */
    .info-destacada {
      margin-bottom: 30px;
    }

    .info-principal {
      margin-bottom: 25px;
    }

    .lugar-info h4,
    .plataforma-info h4 {
      color: #ffffff;
      font-size: 1.4rem;
      margin-bottom: 8px;
      font-weight: 600;
      font-family: "Montserrat Alternates", sans-serif;
      letter-spacing: 0.5px;
    }

    .lugar-info p,
    .plataforma-info p {
      color: #cccccc;
      font-size: 1rem;
      margin-bottom: 12px;
      font-family: "Montserrat Alternates", sans-serif;
    }

    .capacidad-tag,
    .plataforma-tag {
      background: rgba(255, 153, 0, 0.1);
      color: rgb(255, 153, 0);
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      font-family: "Montserrat Alternates", sans-serif;
    }

    /* Grid de Detalles */
    .detalles-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .detalle-mini {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      transition: all 0.3s ease;
      border: 1px solid transparent;
    }

    .detalle-mini:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 153, 0, 0.2);
    }

    .detalle-emoji {
      font-size: 1.2rem;
      width: 24px;
      text-align: center;
    }

    .detalle-mini div {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .detalle-mini strong {
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 600;
      font-family: "Montserrat Alternates", sans-serif;
      letter-spacing: 0.3px;
    }

    .detalle-mini span {
      color: #888;
      font-size: 0.85rem;
      font-family: "Montserrat Alternates", sans-serif;
    }

    /* Acciones */
    .acciones-carta {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
    }

    /* RESERVAR LUGAR (FORMULARIO) - VER UBICACIÓN TEATRO */
    .btn-inscribirse {
      background: linear-gradient(135deg, rgb(255, 153, 0), rgb(255, 136, 0));
      border: none;
      border-radius: 8px;
      padding: 10px 20px;
      color: black;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      min-width: 130px;
      font-family: "Montserrat Alternates", sans-serif;
      text-decoration: none;
      text-align: center;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1.2;
    }

    .btn-inscribirse:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
      color: white;
    }

    /* Nota Importante */
    .nota-importante {
      margin-top: 40px;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .nota-contenido {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      background: rgba(255, 153, 0, 0.05);
      border: 1px solid rgba(255, 153, 0, 0.3);
      border-radius: 12px;
      padding: 20px 25px;
      max-width: 600px;
      width: 100%;
    }

    .nota-icono {
      font-size: 1.3rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .nota-contenido p {
      color: #cccccc;
      margin: 0;
      line-height: 1.5;
      font-size: 0.95rem;
      font-family: "Montserrat Alternates", sans-serif;
    }

    .nota-contenido strong {
      color: rgb(255, 153, 0);
      font-family: "Montserrat Alternates", sans-serif;
    }

    /* Efecto hover mejorado en botones del selector */
    .btn-selector {
      transition: all 0.3s ease;
    }

    .btn-selector:not(.active):hover {
      background: rgba(255, 153, 0, 0.05);
      color: #cccccc;
    }

    /* ===== RESPONSIVE ===== */
    @media screen and (max-width: 768px) {
      .modalidad-hibrida {
        padding: 60px 15px;
      }
      
      .modalidad-hibrida h2 {
        font-size: 2rem;
      }
      
      .selector-contenedor {
        width: 100%;
        justify-content: center;
      }
      
      .btn-selector {
        flex: 1;
        min-width: auto;
        padding: 12px 20px;
      }
      
      .detalles-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      
      .detalle-mini {
        justify-content: center;
        text-align: center;
      }
      
      .acciones-carta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
      
      .btn-inscribirse,
      .btn-secundario-mini {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
      }
      
      .carta-header {
        padding: 25px 20px 15px 20px;
      }
      
      .carta-contenido {
        padding: 25px 20px;
      }
      
      .lugar-info h4,
      .plataforma-info h4 {
        font-size: 1.2rem;
      }

      .modalidad-carta {
        max-width: 100%;
        margin: 0 10px;
      }
      
      .nota-contenido {
        margin: 0 20px;
        padding: 15px 20px;
      }
    }

    @media screen and (max-width: 480px) {
      .modalidad-hibrida h2 {
        font-size: 1.8rem;
      }
      
      .carta-header h3 {
        font-size: 1.5rem;
      }
      
      .nota-contenido {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px 20px;
      }
      
      .selector-contenedor {
        flex-direction: column;
        padding: 8px;
      }
      
      .selector-slider {
        display: none;
      }
      
      .btn-selector.active {
        background: rgb(255, 153, 0);
        color: black;
      }
      
      .btn-inscribirse,
      .btn-secundario-mini {
        max-width: 220px;
        padding: 10px 16px;
        font-size: 0.85rem;
      }
      
      .detalle-mini strong {
        font-size: 0.85rem;
      }
      
      .detalle-mini span {
        font-size: 0.8rem;
      }

      .modalidad-hibrida {
        padding: 60px 15px;
      }
      
      .modalidad-hibrida h2 {
        font-size: 1.8rem;
      }
      
      .subtitulo-modalidad {
        font-size: 1rem;
      }
      
      .nota-contenido {
        margin: 0 10px;
        padding: 12px 15px;
      }
    }

    /* EDICIONES ANTERIORES */
    .seccion-ediciones {
      background-color: #111111;
      padding: 20px;
      color: white;
    }

    .seccion-ediciones h2 {
      color: rgb(255, 153, 0);
      font-size: 2.5rem;
      margin-bottom: 40px;
      text-align: center;
      font-weight: bold;
    }

    .intro-ediciones {
      text-align: center;
      color: #cccccc;
      font-size: 1.1rem;
      margin-bottom: 50px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .grid-ediciones {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .edicion-card {
      background: linear-gradient(145deg, #1a1a1a, #151515);
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid #333;
      position: relative;
    }

    .edicion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(255, 153, 0, 0.2);
      border-color: rgb(255, 153, 0);
    }

    .edicion-imagen {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .edicion-imagen::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(255, 153, 0, 0.1), transparent);
      z-index: 1;
    }

    .edicion-ano {
      position: absolute;
      top: 15px;
      left: 15px;
      background: rgba(0, 0, 0, 0.8);
      color: rgb(255, 153, 0);
      padding: 5px 12px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 0.9rem;
      z-index: 2;
    }

    .edicion-icono {
      font-size: 4rem;
      opacity: 0.7;
      z-index: 1;
    }

    .edicion-contenido {
      padding: 25px;
    }

    .edicion-titulo {
      color: #ffffff;
      font-size: 1.4rem;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .edicion-descripcion {
      color: #cccccc;
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .edicion-stats {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1;
      min-width: 70px;
    }

    .stat-numero {
      color: rgb(255, 153, 0);
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .stat-label {
      color: #888;
      font-size: 0.8rem;
    }

    .btn-ver-video {
      background: linear-gradient(135deg, rgb(255, 153, 0), rgb(255, 136, 0));
      border: none;
      border-radius: 8px;
      padding: 12px 25px;
      color: black;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn-ver-video:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
      color: white;
    }

    .btn-todas-ediciones {
      background: transparent;
      border: 2px solid rgb(255, 153, 0);
      border-radius: 8px;
      padding: 15px 30px;
      color: rgb(255, 153, 0);
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 50px auto 0;
      text-decoration: none;
    }

    .btn-todas-ediciones:hover {
      background: rgb(255, 153, 0);
      color: black;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
    }

    .centrar-boton {
      text-align: center;
      width: 100%;
    }

    /* FECHAS IMPORTANTES */
    .fechas-horizontal {
      background-color: #111111;
      padding: 80px 20px;
      overflow: hidden;
    }

    .fechas-horizontal h2 {
      color: rgb(255, 153, 0);
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-align: center;
      font-weight: bold;
    }

    .intro-fechas {
      text-align: center;
      color: #cccccc;
      font-size: 1.1rem;
      margin-bottom: 60px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .timeline-horizontal {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      min-height: 300px;
    }

    .timeline-horizontal::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 3px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(255, 153, 0) 20%, 
        rgb(255, 153, 0) 80%, 
        transparent 100%);
      z-index: 1;
    }

    .fecha-item-horizontal {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 2;
      padding: 0 15px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fecha-item-horizontal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fecha-item-horizontal:nth-child(1) { transition-delay: 0.1s; }
    .fecha-item-horizontal:nth-child(2) { transition-delay: 0.2s; }
    .fecha-item-horizontal:nth-child(3) { transition-delay: 0.3s; }
    .fecha-item-horizontal:nth-child(4) { transition-delay: 0.4s; }

    .fecha-marcador {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 25px;
      position: relative;
    }

    .fecha-icono {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, rgb(255, 153, 0), rgb(255, 136, 0));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 15px;
      box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
      transition: all 0.3s ease;
      position: relative;
      z-index: 3;
    }

    .fecha-item-horizontal:hover .fecha-icono {
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 8px 25px rgba(255, 153, 0, 0.5);
    }

    .fecha-item-horizontal.destacado .fecha-icono {
      background: linear-gradient(135deg, #ff6b00, #ff8c00);
      animation: pulse-destacado 2s infinite;
    }

    @keyframes pulse-destacado {
      0%, 100% {
        box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
      }
      50% {
        box-shadow: 0 5px 25px rgba(255, 153, 0, 0.8);
      }
    }

    .fecha-linea {
      width: 3px;
      height: 40px;
      background: rgb(255, 153, 0);
      opacity: 0.7;
    }

    .fecha-linea-final {
      width: 3px;
      height: 40px;
      background: transparent;
    }

    .fecha-contenido-horizontal {
      background: linear-gradient(145deg, #1a1a1a, #151515);
      border: 1px solid #333;
      border-radius: 15px;
      padding: 25px 20px;
      transition: all 0.3s ease;
      width: 100%;
      max-width: 250px;
    }

    .fecha-item-horizontal:hover .fecha-contenido-horizontal {
      transform: translateY(-5px);
      border-color: rgb(255, 153, 0);
      box-shadow: 0 10px 30px rgba(255, 153, 0, 0.2);
    }

    .fecha-fecha {
      color: rgb(255, 153, 0);
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .fecha-contenido-horizontal h3 {
      color: #ffffff;
      font-size: 1.3rem;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .fecha-contenido-horizontal p {
      color: #cccccc;
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
    }

    /* RECURSOS EDUCATIVOS */
    .recursos-educativos {
      background-color: #111111;
      padding: 80px 20px;
    }

    .recursos-educativos h2 {
      color: rgb(255, 153, 0);
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-align: center;
      font-weight: bold;
    }

    .intro-recursos {
      text-align: center;
      color: #cccccc;
      font-size: 1.1rem;
      margin-bottom: 50px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .recurso-item {
      background: linear-gradient(145deg, #1a1a1a, #151515);
      border: 1px solid #333;
      border-radius: 15px;
      padding: 30px 25px;
      text-align: center;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .recurso-item:hover {
      transform: translateY(-5px);
      border-color: rgb(255, 153, 0);
      box-shadow: 0 10px 30px rgba(255, 153, 0, 0.2);
    }

    .recurso-icono {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .recurso-contenido h3 {
      color: #ffffff;
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .recurso-contenido p {
      color: #cccccc;
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 20px;
      text-align: center;
    }

    .recurso-info {
      display: flex;
      gap: 10px;
      margin-bottom: 25px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .recurso-tipo, .recurso-nivel {
      background-color: #333;
      color: #ffffff;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .recurso-nivel {
      background-color: rgb(255, 153, 0);
      color: black;
    }

    .btn-descarga-recurso {
      background: linear-gradient(135deg, rgb(255, 153, 0), rgb(255, 136, 0));
      border: none;
      border-radius: 8px;
      padding-top: 10px;
      padding-bottom: 10px;
      color: black;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      justify-content: center;
      text-decoration: none;
    }

    .btn-descarga-recurso:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
      color: white;
    }

    /* PATROCINADORES */
    .patrocinadores {
      background-color: #111111;
      padding: 80px 20px;
    }

    .patrocinadores h2 {
      color: rgb(255, 153, 0);
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-align: center;
      font-weight: bold;
    }

    .intro-patrocinadores {
      text-align: center;
      color: #cccccc;
      font-size: 1.1rem;
      margin-bottom: 50px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .grid-patrocinadores {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .patrocinador-item {
      background: linear-gradient(145deg, #1a1a1a, #151515);
      border: 1px solid #333;
      border-radius: 15px;
      padding: 30px 25px;
      text-align: center;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .patrocinador-item:hover {
      transform: translateY(-5px);
      border-color: rgb(255, 153, 0);
      box-shadow: 0 10px 30px rgba(255, 153, 0, 0.1);
    }

    .patrocinador-logo {
      margin-bottom: 20px;
    }

    .logo-placeholder {
      width: 80px;
      height: 80px;
      background: rgba(255, 153, 0, 0.1);
      border: 2px solid rgb(255, 153, 0);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto;
    }

    .patrocinador-info h3 {
      color: #ffffff;
      font-size: 1.2rem;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .patrocinador-info p {
      color: #cccccc;
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 15px;
    }

    .btn-patrocinador {
      background: transparent;
      border: 2px solid rgb(255, 153, 0);
      border-radius: 8px;
      padding: 8px 16px;
      color: rgb(255, 153, 0);
      font-weight: 600;
      font-size: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-patrocinador:hover {
      background: rgb(255, 153, 0);
      color: black;
      transform: translateY(-2px);
    }

    /* CONTACTO */
    .contacto {
      background-color: #111111;
      padding: 60px 20px;
    }

    .contacto h2 {
      color: rgb(255, 153, 0);
      font-size: 2.5rem;
      margin-bottom: 15px;
      text-align: center;
      font-weight: bold;
    }

    .disclaimer-contacto {
      text-align: center;
      color: #cccccc;
      font-size: 1.1rem;
      margin-bottom: 50px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
    }

    .canales-contacto {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .canal-item {
      background: linear-gradient(145deg, #1a1a1a, #151515);
      border: 1px solid #333;
      border-radius: 15px;
      padding: 35px 30px;
      text-align: center;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .canal-item:hover {
      transform: translateY(-5px);
      border-color: rgb(255, 153, 0);
      box-shadow: 0 10px 30px rgba(255, 153, 0, 0.1);
    }

    .canal-icono {
      font-size: 3.5rem;
      margin-bottom: 20px;
    }

    .canal-item h3 {
      color: #ffffff;
      font-size: 1.4rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .canal-item p {
      color: #cccccc;
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 25px;
      text-align: center;
    }

    .btn-canal {
      background: linear-gradient(135deg, rgb(255, 153, 0), rgb(255, 136, 0));
      border: none;
      border-radius: 8px;
      padding: 12px 25px;
      color: black;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      
    }

    .btn-canal:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
      color: white;
    }

    .redes-contacto {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      max-width: 200px;
    }

    .btn-red-social {
      background: rgba(255, 153, 0, 0.1);
      border: 1px solid rgb(255, 153, 0);
      border-radius: 8px;
      padding: 10px 15px;
      color: rgb(255, 153, 0);
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s ease;
      text-align: center;
    }

    .btn-red-social:hover {
      background: rgb(255, 153, 0);
      color: black;
      transform: translateY(-1px);
    }

    .info-presencial {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .info-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
      text-align: left;
      width: 100%;
    }

    .info-item strong {
      color: rgb(255, 153, 0);
      font-size: 0.9rem;
    }

    .info-item span {
      color: #cccccc;
      font-size: 0.95rem;
    }

    /* FOOTER */
    .footer {
      background: #0a0a0a;
      padding: 40px 20px 30px 20px;
      border-top: 2px solid rgb(255, 153, 0);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-content {
      text-align: center;
    }

    .footer-info h4 {
      color: rgb(255, 153, 0);
      font-size: 1.5rem;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .footer-info p {
      color: #cccccc;
      font-size: 1rem;
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .footer-copyright {
      margin-top: 25px;
      padding-top: 20px;
      border-top: 1px solid #333;
    }

    .footer-copyright p {
      color: #888;
      font-size: 0.9rem;
      margin: 0;
      font-weight: 400;
    }

    /* BOTÓN FIXED CON SCROLL */
    .custom-btn-fixed-scroll {
      position: fixed;
      bottom: 30px;
      left: 30px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgb(255, 153, 0), rgb(255, 136, 0));
      color: black;
      text-decoration: none;
      border: none;
      border-radius: 25px;
      padding: 12px 20px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
    }

    .custom-btn-fixed-scroll.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .custom-btn-fixed-scroll:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
      color: white;
    }

    /* ===== MEDIA QUERIES ===== */
    /* Tablets (768px y menos) */
    @media screen and (max-width: 768px) {
      /* Navegación móvil */
      .hamburger {
        display: flex;
      }

      .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--nav-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 20px 20px 20px;
        box-shadow: var(--nav-shadow);
        border-left: 2px solid var(--nav-border);
        z-index: 999;
        transition: right 0.3s ease;
      }

      .nav-menu.active {
        display: flex;
        right: 0;
      }

      .nav-item {
        width: 100%;
        margin-bottom: 10px;
      }

      .nav-link {
        justify-content: flex-start;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 1rem;
      }

      .nav-link:hover {
        background: rgba(255, 153, 0, 0.1);
      }

      .nav-special {
        margin-top: 10px;
        border: 1px solid rgba(255, 153, 0, 0.5);
      }

      .logo-text {
        display: none;
      }

      .nav-particles {
        display: none;
      }

      body.menu-open {
        overflow: hidden;
      }

      /* Grids a una columna */
      .grid-modalidad,
      .grid-recursos,
      .grid-patrocinadores,
      .grid-ediciones,
      .grid-documentos {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      /* Secciones generales */
      .sobre-nosotros {
        padding: 40px 15px;
      }
      
      .sobre-nosotros h2 {
        font-size: 2rem;
      }
      
      .contenido-sobre-nosotros p {
        font-size: 1rem;
        text-align: center;
      }

      .seccion-nueva.faq {
        padding: 80px 20px 40px;
      }

      .seccion-nueva.faq h2 {
        font-size: 2rem;
        margin-bottom: 30px;
      }

      .faq-container {
        gap: 30px;
        flex-direction: column;
      }

      .columna-faq {
        min-width: 100%;
      }

      .pregunta-header {
        padding: 15px 20px;
      }

      .pregunta-header h3 {
        font-size: 1.2rem;
      }

      .pregunta-respuesta {
        padding: 0 20px;
      }

      .seccion-ediciones {
        padding: 20px;
      }
      
      .seccion-ediciones h2 {
        font-size: 2rem;
      }
      
      .grid-ediciones {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .edicion-contenido {
        padding: 20px;
      }
      
      .edicion-titulo {
        font-size: 1.3rem;
      }
      
      .btn-todas-ediciones {
        padding: 12px 25px;
        font-size: 14px;
      }

      .fechas-horizontal {
        padding: 60px 15px;
      }
      
      .fechas-horizontal h2 {
        font-size: 2rem;
      }
      
      .timeline-horizontal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        min-height: auto;
      }

      .timeline-horizontal::before {
        display: none;
      }

      .fecha-item-horizontal {
        flex: 0 0 calc(50% - 40px);
        margin-bottom: 30px;
      }

      .fecha-linea,
      .fecha-linea-final {
        display: none;
      }

      .recursos-educativos {
        padding: 60px 15px;
      }
      
      .recursos-educativos h2 {
        font-size: 2rem;
      }
      
      .grid-recursos {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .patrocinadores {
        padding: 60px 15px;
      }
      
      .patrocinadores h2 {
        font-size: 2rem;
      }
      
      .grid-patrocinadores {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .footer {
        padding: 30px 15px 25px 15px;
      }
      
      .footer-info h4 {
        font-size: 1.3rem;
      }
      
      .footer-info p {
        font-size: 0.95rem;
      }

      .btn-up {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
      }

      .custom-btn-fixed-scroll {
        bottom: 20px;
        left: 20px;
        padding: 10px 16px;
        font-size: 0.9rem;
      }

      .divisor-naranja {
        width: 90%;
        margin: 0px auto 0 auto;
      }
    }

    /* Móviles pequeños (480px y menos) */
    @media screen and (max-width: 480px) {
      .seccion-nueva.faq h2 {
        font-size: 1.8rem;
      }

      .pregunta-header {
        padding: 12px 15px;
      }

      .pregunta-header h3 {
        font-size: 1.1rem;
      }

      .pregunta-respuesta p {
        font-size: 0.9rem;
      }

      .seccion-ediciones h2 {
        font-size: 1.8rem;
      }
      
      .edicion-stats {
        gap: 10px;
      }
      
      .stat-item {
        min-width: 60px;
      }
      
      .stat-numero {
        font-size: 1.1rem;
      }
      
      .btn-ver-video {
        padding: 10px 20px;
        font-size: 13px;
      }

      .fechas-horizontal h2 {
        font-size: 1.8rem;
      }
      
      .intro-fechas {
        font-size: 1rem;
        margin-bottom: 40px;
      }
      
      .fecha-item-horizontal {
        flex: 0 0 100%;
        max-width: 300px;
      }
      
      .fecha-contenido-horizontal {
        padding: 20px 15px;
      }
      
      .fecha-icono {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
      
      .fecha-contenido-horizontal h3 {
        font-size: 1.2rem;
      }
      
      .fecha-contenido-horizontal p {
        font-size: 0.85rem;
      }

      .footer {
        padding: 25px 15px 20px 15px;
      }
      
      .footer-info h4 {
        font-size: 1.2rem;
      }
      
      .footer-info p {
        font-size: 0.9rem;
      }
      
      .footer-copyright {
        margin-top: 20px;
        padding-top: 15px;
      }
      
      .footer-copyright p {
        font-size: 0.85rem;
      }

      .btn-up {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.2rem;
      }

     .custom-btn-fixed-scroll {
    /* width: 45px; */
    /* height: 45px; */
    /* bottom: 15px; */
    left: 15px;
    /* font-size: 1.2rem; */
}

      .divisor-naranja {
        width: 95%;
        margin: 0 auto 0 auto;
      }
    }

    /* Áreas táctiles para móviles */
    @media (pointer: coarse) and (max-width: 768px) {
      .nav-link,
      .btn-descarga,
      .btn-ver-video,
      .btn-canal {
        min-height: 44px;
      }
      
      .hamburger {
        width: 44px;
        height: 44px;
        padding: 12px;
      }
    }