 /* Estilos globales */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Orbitron', sans-serif;
      background-color: #0e0e0e;
      color: #fff;
    }


    .imagen-fondo {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
        pointer-events: none; /* evita que interfiera con clics */

      
    }


    header {
      padding: 20px;
      text-align: center;
      border-bottom: 3px solid #ffd700;
    }

    header h1 {
      color: #ffd700;
      font-size: 2em;
    }

    nav {
      background: rgba(218, 208, 208, 0.123);
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    nav a {
      color: white;
      padding: 10px 90px;
      text-decoration: none;
      transition: background 0.10s;
    }

    nav a:hover {
      background-color: #444;
    }

    .hero {
      background-image: url('https://cdn.wallpapersafari.com/58/11/iCz43m.jpg');
      background-size: cover;
      background-position: center;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero h2 {
      background: rgba(0, 0, 0, 0.6);
      padding: 20px;
      border-radius: 10px;
    }

    .content {
      padding: 20px;
      max-width: 1000px;
      margin: auto;
    }

    .content h3 {
      margin-bottom: 10px;
      color: #ffd700;
    }

    .content p {
      line-height: 1.6;
    }

    footer {
      background: #020202;
      text-align: center;
      padding: 15px;
      margin-top: 40px;
      color: #888;
    }

    /* Diseño adaptable */
    @media (max-width: 768px) {
      .hero {
        height: 200px;
      }

      header h1 {
        font-size: 1.5em;
      }

      .content {
        padding: 15px;
      }
    }

    .btn-evento {
      display: inline-block;
      margin: 0 15px 15px;
      padding: 10px 20px;
      background-color: #ffd700;
      color: #000;
      text-decoration: none;
      border-radius: 8px;
      font-family: 'Orbitron', sans-serif;
      transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
      animation: pulse 2s infinite;
    }

    .btn-evento:hover {
      background-color: #ffea00;
      color: #000;
      transform: scale(1.05);
      box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.7);
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
      }
      50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
      }
      100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
      }
    }

    .btn-centro {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }

    .reconocimiento {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      background: rgba(255, 215, 0, 0.05);
      border: 2px solid #ffd700;
      border-radius: 12px;
      padding: 20px;
      margin-top: 30px;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }

    .reconocimiento img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;
      margin-right: 20px;
      border: 3px solid #ffd700;
    }

    .texto-reconocimiento {
      flex: 1;
      color: #fff;
    }

    .texto-reconocimiento h3 {
      margin-bottom: 10px;
      color: #ffd700;
      font-size: 1.4em;
    }

    .texto-reconocimiento p {
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .btn-reconocimiento {
      margin-top: 15px;
    }

    .btn-unico {
      display: inline-block;
      padding: 10px 18px;
      background-color: #ffb700;
      color: #000;
      text-decoration: none;
      font-weight: bold;
      border-radius: 10px;
      font-family: 'Orbitron', sans-serif;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(255, 183, 0, 0.4);
      animation: brillar 2s infinite;
    }

    .btn-unico:hover {
      background-color: #ffdf00;
      transform: scale(1.07);
      box-shadow: 0 0 20px rgba(255, 220, 0, 0.7);
    }

    @keyframes brillar {
      0% {
        box-shadow: 0 0 5px rgba(255, 183, 0, 0.4);
      }
      50% {
        box-shadow: 0 0 20px rgba(255, 183, 0, 0.8);
      }
      100% {
        box-shadow: 0 0 5px rgba(255, 183, 0, 0.4);
      }
    }

    .intro-video {
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: relative;
      z-index: 10;
      position: absolute;
      
    }

    .intro-video video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      pointer-events: none;
    }

    .cuadros-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    

    .cuadro {
      background-color: rgba(255, 215, 0, 0.05);
      border: 2px solid #ffd700;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }

    .cuadro:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }

    .cuadro h4 {
      color: #ffd700;
      margin-bottom: 10px;
      font-size: 1.2em;
    }

    .cuadro p {
      font-size: 0.95em;
      color: #ddd;
      line-height: 1.4;
    }

    @media (prefers-color-scheme: dark) {
      body {
        background-color: #0e0e0e;
        color: #fff;
      }
    }

    .redes-sociales {
      margin-bottom: 10px;
    }

    .redes-sociales a {
      color: #ffd700;
      margin: 0 10px;
      font-size: 24px;
      transition: color 0.3s, transform 0.3s;
    }

    .redes-sociales a:hover {
      color: #fff;
      transform: scale(1.2);
    }

    footer p {
      font-size: 14px;
      color: #aaa;
    }