/* CSS COMPACTO & OPTIMIZADO */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
      cursor: none !important;
    }

    html {
      color-scheme: dark;
    }

    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: radial-gradient(circle at bottom right, #6a0f0f, #000 60%);
      color: #fff;
      overflow-x: hidden;
      scroll-behavior: smooth;
      cursor: none;
    }

    canvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none
    }

    /* --- HEADER (Consistente) --- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, .9);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 50px;
      z-index: 3002;
      box-shadow: 0 2px 8px rgba(255, 255, 255, .05)
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .logo img {
      width: 40px;
      height: 40px;
      border-radius: 50%
    }

    .logo span {
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      align-items: center
    }

    nav ul li {
      position: relative
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      position: relative;
      padding: 5px;
      transition: .3s
    }

    nav ul li a:hover {
      color: #ff3c3c
    }

    nav ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0;
      height: 2px;
      background: #ff3c3c;
      transition: width .3s
    }

    nav ul li a:hover::after {
      width: 100%
    }

    /* Submenú */
    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(0, 0, 0, .95);
      padding: 10px 0;
      border-radius: 8px;
      min-width: 200px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
      z-index: 25;
    }

    nav ul li:hover .submenu {
      display: block;
    }

    .submenu li {
      padding: 5px 20px;
    }

    .submenu li a {
      display: block;
      color: #fff;
      padding: 8px 10px;
      transition: .3s;
      position: relative;
      white-space: nowrap;
    }

    .submenu li a:hover {
      background: rgba(65, 11, 11, 0.8);
      color: #fff;
      border-radius: 5px;
      transform: translateX(3px);
    }

    /* Activos */
    /* --- Estilo activo como Marketing --- */

    /* Padre activo (Cartelera) */
    nav ul li.parent-active>a {
      color: #d4af37 !important;
      font-weight: 700;
    }

    nav ul li.parent-active>a::after {
      content: "";
      width: 100%;
      background: #ff3c3c;
      height: 2px;
      position: absolute;
      left: 0;
      bottom: -5px;
    }

    /* Hijo activo (En Estreno) */
    /* Hijo activo (En Estreno) */
    .submenu li a.active-page {
      background: #5c0c0c;
      color: #fff !important;
      border-radius: 10px;
      border-left: 5px solid #d4af37;
      border-bottom: none;
      margin: 5px 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }


    /* Móvil */
    

    

    

    

    

    

    


    

    

    /* Info Styles */
    section {
      padding: 130px 40px 80px;
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 5
    }

    h2 {
      color: #d4af37;
      text-align: center;
      margin-bottom: 40px;
      font-size: 2rem;
      letter-spacing: 1px
    }

    .info-page h1 {
      color: #fff;
      font-size: 2.8rem;
      margin-bottom: 20px;
      text-align: center;
      border-bottom: 2px solid #d4af37;
      padding-bottom: 15px;
      max-width: 700px;
      margin: 0 auto 20px
    }

    .intro-text {
      font-size: 1.15rem;
      font-weight: 500;
      color: #e4c96f;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
      line-height: 1.6
    }

    .highlight-glow {
      color: #ffecb3;
      font-weight: 700;
      text-shadow: 0 0 5px #d4af37, 0 0 10px #d4af37;
      animation: g 2s infinite alternate ease-in-out
    }

    @keyframes g {
      from {
        text-shadow: 0 0 5px #d4af37, 0 0 10px rgba(255, 236, 179, .4)
      }

      to {
        text-shadow: 0 0 8px #d4af37, 0 0 15px rgba(255, 236, 179, .7)
      }
    }

    .mission-vision-grid,
    .valores-grid,
    .caja-lideres {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 50px
    }

    .valores-grid {
      gap: 40px
    }

    .caja-lideres {
      gap: 40px;
      margin-top: 40px
    }

    .info-card {
      background: rgba(255, 255, 255, .08);
      padding: 30px;
      border-radius: 12px;
      max-width: 450px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, .4);
      text-align: center;
      transition: .3s
    }

    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(212, 175, 55, .3)
    }

    .info-card h3 {
      color: #d4af37;
      font-size: 1.5rem;
      margin-bottom: 15px
    }

    .info-card p {
      color: #ccc;
      font-size: 1rem;
      line-height: 1.6
    }

    .separator {
      width: 100px;
      height: 3px;
      background: #ff3c3c;
      margin: 50px auto;
      border-radius: 5px;
      box-shadow: 0 0 10px #ff3c3c
    }

    .valor-item {
      text-align: center;
      width: 120px
    }

    .valor-item i {
      font-size: 3rem;
      color: #ff3c3c;
      margin-bottom: 10px;
      transition: .3s
    }

    .valor-item:hover i {
      transform: scale(1.1);
      color: #d4af37
    }

    .valor-item p {
      font-weight: 600;
      color: #fff
    }

    .caja {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(212, 175, 55, .3);
      border-radius: 10px;
      padding: 25px;
      margin: 30px auto;
      max-width: 400px;
      text-align: left;
      box-shadow: 0 0 15px rgba(212, 175, 55, .1);
      height: fit-content
    }

    .nombre {
      font-weight: 700;
      color: #d4af37;
      font-size: 1.2rem;
      margin-bottom: 5px
    }

    .cargo {
      font-style: italic;
      color: #ff3c3c;
      margin-bottom: 15px
    }

    .image-placeholder {
      display: flex;
      justify-content: center;
      margin: 15px 0 25px
    }

    .image-placeholder img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #d4af37;
      box-shadow: 0 0 10px rgba(212, 175, 55, .5);
      cursor: pointer;
      transition: transform .2s
    }

    .image-placeholder img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(212, 175, 55, .8)
    }

    /* Resaltado de Texto en Tarjetas */
    .caja p {
      color: #ddd;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .caja strong {
      color: #ffecb3;
      font-weight: 700;
      text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }

    /* ESTILOS DE ZOOM MODAL CON TRANSICIÓN SUAVE (Copiado de Biblioteca) */
    .zoom-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .9);
      justify-content: center;
      align-items: center;
      z-index: 4000;
      /* Higher than header (3002) */
      backdrop-filter: blur(3px);
      opacity: 0;
      /* Inicialmente transparente */
      transition: opacity 0.3s ease-in-out;
      /* Transición suave para el fondo */
    }

    .zoom-modal.active {
      display: flex;
      opacity: 1;
      /* Transición de opacidad al abrir */
    }

    .zoom-content {
      max-width: 90vw;
      /* Constrain to viewport width */
      max-height: 90vh;
      /* Constrain to viewport height */
      border-radius: 10px;
      box-shadow: 0 0 35px rgba(212, 175, 55, .8);
      /* Glow más fuerte en el modal */
      border: 3px solid #d4af37;
      transform: scale(0.8);
      /* Inicia pequeño */
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      /* Suavidad al hacer zoom */
      object-fit: contain;
      /* Ensure Aspect Ratio */
    }

    .zoom-modal.active .zoom-content {
      transform: scale(1);
      /* Zoom al tamaño completo */
    }

    .close-zoom {
      position: absolute;
      top: 30px;
      right: 40px;
      color: #fff;
      font-size: 2.5rem;
      cursor: pointer;
      transition: .3s
    }

    .close-zoom:hover {
      color: #d4af37
    }

    /* Footer/Social */
    .social-links {
      position: fixed;
      bottom: 30px;
      left: 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 100
    }

    .social-links a {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, .15);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 22px;
      transition: .3s;
      backdrop-filter: blur(5px)
    }

    .social-links a:hover {
      background: linear-gradient(135deg, #d4af37, #ffecb3);
      color: #000;
      transform: scale(1.1);
      box-shadow: 0 0 15px #d4af37, 0 0 30px #ffecb3
    }

    footer {
      text-align: center;
      padding: 25px 10px;
      color: #d4af37;
      font-size: .95rem;
      width: 100%;
      margin-top: 50px
    }

    @media(max-width:900px) {
      nav {
        display: none
      }

      

      header {
        padding: 15px 20px
      }

      section {
        padding: 100px 20px 60px
      }

      .info-page h1 {
        font-size: 2rem
      }

      .mission-vision-grid,
      .caja-lideres {
        flex-direction: column;
        gap: 20px
      }

      .info-card {
        max-width: 100%
      }

      .valores-grid {
        gap: 20px 15px
      }

      .valor-item {
        width: 100px
      }
    }

    /* EFECTO DE SELECCIÓN MÁGICA */
    ::selection {
      background: rgba(106, 15, 15, 0.8);
      color: #ffffff;
      text-shadow: 0 0 5px #d4af37, 0 0 10px #d4af37, 0 0 20px #ffecb3;
    }

    ::-moz-selection {
      background: rgba(106, 15, 15, 0.8);
      color: #ffffff;
      text-shadow: 0 0 5px #d4af37, 0 0 10px #d4af37;
    }

    /* Estilo de la partícula mágica */
    .magic-star {
      position: fixed;
      pointer-events: none;
      background: #d4af37;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      box-shadow: 0 0 10px #ffecb3;
      animation: fadeOut 1s linear forwards;
      z-index: 9999;
    }

    @keyframes fadeOut {
      0% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }

      100% {
        opacity: 0;
        transform: scale(0) translateY(20px);
      }
    }
  
        /* Custom Animated Cursor */
        .custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.1s linear;
        }
        .custom-cursor svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.8));
        }

        /* Estilo de la partícula mágica */
        .magic-star {
            position: fixed;
            pointer-events: none;
            background: #d4af37;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            box-shadow: 0 0 10px #ffecb3;
            animation: fadeOutMagic 1s linear forwards;
            z-index: 9999;
        }

        @keyframes fadeOutMagic {
            0% { opacity: 1; transform: scale(1) translateY(0); }
            100% { opacity: 0; transform: scale(0) translateY(20px); }
        }

        /* Ocultar el cursor personalizado VIRTUAL enteramente en móviles */
        @media (pointer: coarse) {
            .custom-cursor {
                display: none !important;
            }
        }

    

    

    


    

    

    
