﻿        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            overflow-y: auto;
            background: #000000;
            color: #ffffff;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 206, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%),
                linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, rgba(40, 20, 0, 0.8) 100%);
            pointer-events: none;
            z-index: 1;
            animation: backgroundPulse 8s ease-in-out infinite;
        }
        
        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }
        
        .golden-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 206, 0, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 206, 0, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 1;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        .main-container {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        h1 {
            background: linear-gradient(135deg, #000000 0%, #2a1a00 50%, #000000 100%);
        color: #ffce00;
        text-align: center;
            padding: 2rem 1rem;
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            text-shadow: 
                0 0 10px #ffce00,
                0 0 20px #ffce00,
                0 0 40px #ffce00,
                0 0 80px #ffce00;
            border-bottom: 2px solid #ffce00;
            box-shadow: 
                0 0 20px rgba(255, 206, 0, 0.5),
                inset 0 0 20px rgba(255, 206, 0, 0.1);
        }
        
        h1::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 206, 0, 0.3), transparent);
            animation: goldenShimmer 2s infinite;
        }
        
        h1::after {
            content: 'VIAJE DE CAMPEONES';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ffce00, #ffa500, #ffd700, #ffce00);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: goldenGlitch 3s ease-in-out infinite;
            z-index: -1;
        }
        
        @keyframes goldenShimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        @keyframes goldenGlitch {
            0%, 100% { 
                background-position: 0% 50%;
                filter: hue-rotate(0deg);
            }
            25% { 
                background-position: 100% 50%;
                filter: hue-rotate(30deg);
            }
            50% { 
                background-position: 0% 50%;
                filter: hue-rotate(60deg);
            }
            75% { 
                background-position: 100% 50%;
                filter: hue-rotate(30deg);
            }
        }
        
        .content-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 3rem 1rem;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .main-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 3rem auto;
            padding: 0 2rem;
            align-items: start;
        }
        
        .left-column {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 2.5rem;
            height: 100%;
            min-height: 800px;
        }
        
        .right-column {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
            height: 100%;
            min-height: 800px;
        }
        
        /* GalerÃ­a de ImÃ¡genes Impactante */
        .image-gallery {
            position: relative;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1rem;
            min-height: 400px;
            margin: 0;
            padding: 0;
            align-self: center;
        }
        
        .gallery-container {
            position: relative;
            width: 100%;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 0 40px rgba(255, 165, 0, 0.6),
                0 0 80px rgba(255, 165, 0, 0.3),
                inset 0 0 30px rgba(255, 165, 0, 0.1);
            border: 2px solid #ffa500;
            animation: galleryContainerGlow 4s ease-in-out infinite;
            margin: 0;
            padding: 0;
            position: relative;
        }
        
        
        .gallery-container::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ffa500, #ffd700, #ffce00, #ffa500);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: borderRotate 6s linear infinite;
        }
        
        @keyframes galleryContainerGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 40px rgba(255, 165, 0, 0.6),
                    0 0 80px rgba(255, 165, 0, 0.3),
                    inset 0 0 30px rgba(255, 165, 0, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 50px rgba(255, 206, 0, 0.7),
                    0 0 100px rgba(255, 206, 0, 0.4),
                    inset 0 0 40px rgba(255, 206, 0, 0.15);
            }
        }
        
        .gallery-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 300px; /* Asegura altura mínima */
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            cursor: pointer;
            display: block; /* Asegura que el elemento sea visible */
        }
        
        .gallery-slide.active {
            opacity: 1;
        }

        /* Variables CSS para las imágenes de la galería */
        :root {
            --gallery-image-1: url('../../images/viaje1.jpg');
            --gallery-image-2: url('../../images/viaje2.jpg');
            --gallery-image-3: url('../../images/viaje3.jpg');
            --gallery-image-4: url('../../images/viaje4.jpg');
        }

        /* Clases específicas con máxima especificidad */
        .image-gallery .gallery-container .gallery-slide.gallery-slide-1 {
            background-image: var(--gallery-image-1) !important;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
        }

        .image-gallery .gallery-container .gallery-slide.gallery-slide-2 {
            background-image: var(--gallery-image-2) !important;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
        }

        .image-gallery .gallery-container .gallery-slide.gallery-slide-3 {
            background-image: var(--gallery-image-3) !important;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
        }

        .image-gallery .gallery-container .gallery-slide.gallery-slide-4 {
            background-image: var(--gallery-image-4) !important;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
        }

        /* Reglas de respaldo con rutas directas para máxima compatibilidad */
        .gallery-slide-1 {
            background-image: url('../../images/viaje1.jpg') !important;
        }
        .gallery-slide-2 {
            background-image: url('../../images/viaje2.jpg') !important;
        }
        .gallery-slide-3 {
            background-image: url('../../images/viaje3.jpg') !important;
        }
        .gallery-slide-4 {
            background-image: url('../../images/viaje4.jpg') !important;
        }


        
        .gallery-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(255, 165, 0, 0.1) 25%,
                rgba(0, 0, 0, 0.2) 50%,
                rgba(255, 215, 0, 0.1) 75%,
                rgba(0, 0, 0, 0.3) 100%
            );
            animation: overlayShimmer 4s ease-in-out infinite;
            pointer-events: none;
        }
        
        /* Controles de la GalerÃ­a - Debajo de las ImÃ¡genes */
        .gallery-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 165, 0, 0.3);
            box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
            margin: 0;
        }
        
        .gallery-nav {
            width: 45px;
            height: 45px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #ffa500;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .gallery-nav:hover {
            background: rgba(255, 165, 0, 0.2);
            border-color: #ffd700;
            box-shadow: 0 0 25px rgba(255, 165, 0, 0.6);
            transform: scale(1.1);
        }
        
        .gallery-nav::before {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
        }
        
        .gallery-nav.prev::before {
            border-width: 10px 15px 10px 0;
            border-color: transparent #ffa500 transparent transparent;
            margin-left: -3px;
        }
        
        .gallery-nav.next::before {
            border-width: 10px 0 10px 15px;
            border-color: transparent transparent transparent #ffa500;
            margin-right: -3px;
        }
        
        .gallery-nav:hover::before {
            border-color: transparent #ffd700 transparent transparent;
        }
        
        .gallery-nav.next:hover::before {
            border-color: transparent transparent transparent #ffd700;
        }
        
        /* BotÃ³n de Ampliar - MÃ¡s Visible */
        .gallery-expand {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffa500 0%, #ffd700 100%);
            border: 2px solid #ffd700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 0 20px rgba(255, 165, 0, 0.5),
                0 0 40px rgba(255, 165, 0, 0.3);
            animation: expandPulse 2s ease-in-out infinite;
        }
        
        .gallery-expand:hover {
            background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
            transform: scale(1.15);
            box-shadow: 
                0 0 30px rgba(255, 215, 0, 0.7),
                0 0 60px rgba(255, 215, 0, 0.5);
        }
        
        .gallery-expand::before {
            content: '⛶';
            font-size: 24px;
            color: #000000;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        @keyframes expandPulse {
            0%, 100% { 
                box-shadow: 
                    0 0 20px rgba(255, 165, 0, 0.5),
                    0 0 40px rgba(255, 165, 0, 0.3);
            }
            50% { 
                box-shadow: 
                    0 0 30px rgba(255, 215, 0, 0.6),
                    0 0 60px rgba(255, 215, 0, 0.4);
            }
        }
        
        .gallery-indicators {
            display: flex;
            gap: 12px;
        }
        
        .gallery-indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 165, 0, 0.5);
        }
        
        .gallery-indicator.active {
            background: #ffa500;
            box-shadow: 
                0 0 15px rgba(255, 165, 0, 0.8),
                0 0 30px rgba(255, 165, 0, 0.4);
            transform: scale(1.3);
        }
        
        .gallery-indicator:hover {
            background: rgba(255, 165, 0, 0.7);
            box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
            transform: scale(1.2);
        }
        
        @keyframes galleryGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 30px rgba(255, 165, 0, 0.4),
                    0 0 60px rgba(255, 165, 0, 0.2),
                    inset 0 0 30px rgba(255, 165, 0, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 40px rgba(255, 206, 0, 0.5),
                    0 0 80px rgba(255, 206, 0, 0.3),
                    inset 0 0 40px rgba(255, 206, 0, 0.15);
            }
        }
        
        @keyframes overlayShimmer {
            0%, 100% { 
                background: linear-gradient(
                    45deg,
                    rgba(0, 0, 0, 0.3) 0%,
                    rgba(255, 165, 0, 0.1) 25%,
                    rgba(0, 0, 0, 0.2) 50%,
                    rgba(255, 215, 0, 0.1) 75%,
                    rgba(0, 0, 0, 0.3) 100%
                );
            }
            50% { 
                background: linear-gradient(
                    45deg,
                    rgba(0, 0, 0, 0.2) 0%,
                    rgba(255, 206, 0, 0.15) 25%,
                    rgba(0, 0, 0, 0.1) 50%,
                    rgba(255, 165, 0, 0.15) 75%,
                    rgba(0, 0, 0, 0.2) 100%
                );
            }
        }
        
        /* Modal de Imagen Impactante */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999999;
            animation: modalFadeIn 0.5s ease-out;
        }
        
        .image-modal.show {
            display: flex;
        }
        
        .image-modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            background: rgba(0, 0, 0, 0.9);
            border: 3px solid #ffa500;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 0 50px rgba(255, 165, 0, 0.6),
                0 0 100px rgba(255, 165, 0, 0.4),
                inset 0 0 50px rgba(255, 165, 0, 0.1);
            animation: imageModalGlow 3s ease-in-out infinite;
            display: flex;
            flex-direction: column;
        }
        
        .image-modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #ffa500, #ffd700, #ffce00, #ffa500, transparent);
            background-size: 200% 100%;
            animation: borderFlow 3s linear infinite;
            z-index: 10;
        }
        
        .image-modal-content::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, #ffa500, #ffd700, #ffce00, #ffa500);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: borderRotate 6s linear infinite;
        }
        
        .modal-image {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
            display: block;
            border-radius: 17px;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #ffa500;
            border-radius: 50%;
            color: #ffa500;
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .modal-close:hover {
            background: rgba(255, 165, 0, 0.2);
            border-color: #ffd700;
            color: #ffd700;
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
        }
        
        .modal-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }
        
        .modal-nav {
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #ffa500;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: static !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            transform: none !important;
        }
        
        .modal-nav:hover {
            background: rgba(255, 165, 0, 0.2);
            border-color: #ffd700;
            box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
            transform: scale(1.1) !important;
        }
        
        .modal-nav::before {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
        }
        
        .modal-nav.prev::before {
            border-width: 10px 15px 10px 0;
            border-color: transparent #ffa500 transparent transparent;
            margin-left: -3px;
        }
        
        .modal-nav.next::before {
            border-width: 10px 0 10px 15px;
            border-color: transparent transparent transparent #ffa500;
            margin-right: -3px;
        }
        
        .modal-nav:hover::before {
            border-color: transparent #ffd700 transparent transparent;
        }
        
        .modal-nav.next:hover::before {
            border-color: transparent transparent transparent #ffd700;
        }
        
        /* BotÃ³n de Ampliar */
        .modal-expand {
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #ffa500;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .modal-expand:hover {
            background: rgba(255, 165, 0, 0.2);
            border-color: #ffd700;
            box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
            transform: scale(1.1);
        }
        
        .modal-expand::before {
            content: 'â›¶';
            font-size: 20px;
            color: #ffa500;
            transition: all 0.3s ease;
        }
        
        .modal-expand:hover::before {
            color: #ffd700;
        }
        
        .modal-indicators {
            display: flex;
            gap: 15px;
        }
        
        .modal-indicator {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 165, 0, 0.5);
        }
        
        .modal-indicator.active {
            background: #ffa500;
            box-shadow: 
                0 0 15px rgba(255, 165, 0, 0.8),
                0 0 30px rgba(255, 165, 0, 0.4);
            transform: scale(1.3);
        }
        
        .modal-indicator:hover {
            background: rgba(255, 165, 0, 0.7);
            box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
        }
        
        @keyframes imageModalGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 50px rgba(255, 165, 0, 0.6),
                    0 0 100px rgba(255, 165, 0, 0.4),
                    inset 0 0 50px rgba(255, 165, 0, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 60px rgba(255, 206, 0, 0.7),
                    0 0 120px rgba(255, 206, 0, 0.5),
                    inset 0 0 60px rgba(255, 206, 0, 0.15);
            }
        }
        
        /* Tarjeta de InformaciÃ³n del Programa */
        .program-info-card {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            border: 2px solid #ffd700;
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 40px rgba(255, 215, 0, 0.4),
                0 0 80px rgba(255, 215, 0, 0.2),
                inset 0 0 40px rgba(255, 215, 0, 0.1);
            animation: programCardGlow 5s ease-in-out infinite;
            flex: 1;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .program-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ffd700, #ffa500, #ffce00, #ffd700, transparent);
            background-size: 200% 100%;
            animation: borderFlow 4s linear infinite;
        }
        
        .program-info-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ffd700, #ffa500, #ffce00, #ffd700);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: borderRotate 8s linear infinite;
        }
        
        .program-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #ffffff;
        text-align: center;
            margin-bottom: 1.5rem;
            text-shadow: 
                0 0 10px #ffd700,
                0 0 20px #ffd700,
                0 0 40px #ffd700,
                3px 3px 6px rgba(0, 0, 0, 0.9),
                1px 1px 2px rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
        }
        
        .program-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
            animation: goldenShimmer 3s infinite;
        }
        
        .program-subtitle {
            font-size: 1.1rem;
            color: #ffffff;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 500;
            line-height: 1.5;
            text-shadow: 
                0 0 10px rgba(255, 165, 0, 0.5),
                2px 2px 4px rgba(0, 0, 0, 0.9),
                1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        .program-section {
            margin-bottom: 2rem;
        }
        
        .section-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 
                0 0 10px rgba(255, 206, 0, 0.5),
                2px 2px 4px rgba(0, 0, 0, 0.9),
                1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        .section-icon {
            font-size: 1.5rem;
            filter: drop-shadow(0 0 10px rgba(255, 206, 0, 0.8));
        }
        
        .program-description {
            font-size: 1rem;
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 1rem;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }
        
        .features-list li {
            font-size: 0.95rem;
            color: #ffffff;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.4;
            text-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.9),
                1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        .features-list li::before {
            content: 'âš¡';
            position: absolute;
            left: 0;
            color: #ffd700;
            font-size: 1rem;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .benefit-item {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 12px;
            padding: 1rem;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            background: rgba(255, 215, 0, 0.15);
            border-color: rgba(255, 215, 0, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
        }
        
        .benefit-title {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
            text-shadow: 
                0 0 10px rgba(255, 215, 0, 0.5),
                2px 2px 4px rgba(0, 0, 0, 0.9),
                1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        .benefit-description {
            font-size: 0.9rem;
            color: #ffffff;
            line-height: 1.4;
            text-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.9),
                1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        @keyframes programCardGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 40px rgba(255, 215, 0, 0.4),
                    0 0 80px rgba(255, 215, 0, 0.2),
                    inset 0 0 40px rgba(255, 215, 0, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 50px rgba(255, 165, 0, 0.5),
                    0 0 100px rgba(255, 165, 0, 0.3),
                    inset 0 0 50px rgba(255, 165, 0, 0.15);
            }
        }
        
        .form-container {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            border: 2px solid #ffce00;
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 100%;
            width: 100%;
            box-shadow: 
                0 0 30px rgba(255, 206, 0, 0.5),
                0 0 60px rgba(255, 206, 0, 0.3),
                inset 0 0 30px rgba(255, 206, 0, 0.1);
            position: relative;
            overflow: hidden;
            animation: containerGlow 4s ease-in-out infinite;
            flex: 1;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffce00, #ffa500, #ffd700, #ffce00, transparent);
            background-size: 200% 100%;
            animation: borderFlow 3s linear infinite;
        }
        
        .form-container::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ffce00, #ffa500, #ffd700, #ffce00);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: borderRotate 6s linear infinite;
        }
        
        .support-link {
            margin-top: 1.5rem;
            text-align: center;
            padding: 0.6rem 0.8rem;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            border: 1px solid rgba(255, 165, 0, 0.3);
            backdrop-filter: blur(10px);
            line-height: 1.4;
        }
        
        .support-link p {
            color: #ffffff;
            font-size: 0.9rem;
            margin: 0;
            text-shadow: 
                0 0 5px rgba(0, 0, 0, 0.8),
                0 0 10px rgba(0, 0, 0, 0.6),
                0 0 15px rgba(0, 0, 0, 0.4);
        }
        
        .support-link-text {
            margin-top: 0.5rem;
            margin-bottom: 0;
        }
        
        .support-link p:first-child {
            margin-bottom: 1rem;
        }
        
        .support-link a {
            color: #00ff88;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            text-shadow: 
                0 0 5px rgba(0, 255, 136, 0.8),
                0 0 10px rgba(0, 255, 136, 0.6),
                0 0 15px rgba(0, 255, 136, 0.4),
                0 0 20px rgba(0, 255, 136, 0.2);
            position: relative;
            padding: 0.2rem 0.5rem;
        border-radius: 5px;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.3);
        }
        
        .support-link a:hover {
            color: #ffffff;
            background: rgba(0, 255, 136, 0.2);
            border: 1px solid rgba(0, 255, 136, 0.6);
            text-shadow: 
                0 0 5px rgba(0, 255, 136, 1),
                0 0 10px rgba(0, 255, 136, 0.8),
                0 0 15px rgba(0, 255, 136, 0.6),
                0 0 20px rgba(0, 255, 136, 0.4),
                0 0 25px rgba(0, 255, 136, 0.2);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 
                0 0 20px rgba(0, 255, 136, 0.4),
                0 0 40px rgba(0, 255, 136, 0.2);
        }
        
        @keyframes containerGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 30px rgba(255, 206, 0, 0.5),
                    0 0 60px rgba(255, 206, 0, 0.3),
                    inset 0 0 30px rgba(255, 206, 0, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 40px rgba(255, 165, 0, 0.6),
                    0 0 80px rgba(255, 165, 0, 0.4),
                    inset 0 0 40px rgba(255, 165, 0, 0.15);
            }
        }
        
        @keyframes borderFlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }
        
        @keyframes borderRotate {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        
  		form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        label {
            font-size: 0.9rem;
            font-weight: 500;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-shadow: 
                0 0 10px rgba(255, 206, 0, 0.8),
                2px 2px 4px rgba(0, 0, 0, 0.9);
        }
        
        input[type="text"] {
            background: rgba(0, 0, 0, 0.9);
            border: 2px solid #ffce00;
            border-radius: 12px;
            padding: 1rem 1.25rem;
            color: #ffce00;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            outline: none;
            text-shadow: 0 0 10px #ffce00;
            box-shadow: 
                0 0 20px rgba(255, 206, 0, 0.3),
                inset 0 0 20px rgba(255, 206, 0, 0.1);
        }
        
        input[type="text"]:focus {
            border-color: #ffa500;
            box-shadow: 
                0 0 30px rgba(255, 165, 0, 0.5),
                0 0 60px rgba(255, 165, 0, 0.3),
                inset 0 0 30px rgba(255, 165, 0, 0.1);
            color: #ffa500;
            text-shadow: 0 0 15px #ffa500;
        }
        
        input[type="text"]::placeholder {
            color: rgba(255, 206, 0, 0.6);
            text-shadow: 0 0 5px rgba(255, 206, 0, 0.5);
        }
        
        input[type="submit"] {
            background: linear-gradient(135deg, #ffce00 0%, #ffa500 50%, #ffd700 100%);
            background-size: 200% 200%;
            color: #000000;
            border: none;
            padding: 1rem 2rem;
            cursor: pointer;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 
                0 0 30px rgba(255, 206, 0, 0.5),
                0 0 60px rgba(255, 206, 0, 0.3);
            animation: buttonGlow 3s ease-in-out infinite;
        }
        
        input[type="submit"]:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 0 40px rgba(255, 165, 0, 0.7),
                0 0 80px rgba(255, 165, 0, 0.5);
            animation: buttonPulse 0.5s ease-in-out infinite;
        }
        
        input[type="submit"]:active {
            transform: translateY(-1px) scale(1.02);
        }
        
        @keyframes buttonGlow {
            0%, 100% { 
                background-position: 0% 50%;
                box-shadow: 
                    0 0 30px rgba(255, 206, 0, 0.5),
                    0 0 60px rgba(255, 206, 0, 0.3);
            }
            50% { 
                background-position: 100% 50%;
                box-shadow: 
                    0 0 40px rgba(255, 165, 0, 0.6),
                    0 0 80px rgba(255, 165, 0, 0.4);
            }
        }
        
        @keyframes buttonPulse {
            0%, 100% { transform: translateY(-3px) scale(1.05); }
            50% { transform: translateY(-5px) scale(1.08); }
        }
		
		 .registration-info {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            border: 2px solid #ffa500;
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 100%;
            width: 100%;
        text-align: center;
            color: #ffffff;
            box-shadow: 
                0 0 30px rgba(255, 165, 0, 0.5),
                0 0 60px rgba(255, 165, 0, 0.3),
                inset 0 0 30px rgba(255, 165, 0, 0.1);
            position: relative;
            overflow: hidden;
            animation: registrationGlow 5s ease-in-out infinite;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 250px;
            flex: 1;
        }
        
        .registration-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffa500, #ffd700, #ffce00, #ffa500, transparent);
            background-size: 200% 100%;
            animation: borderFlow 4s linear infinite;
        }
        
        .registration-info p {
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.6;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }
        
        .registration-info p:first-child {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffa500;
            text-shadow: 
                0 0 10px #ffa500,
                0 0 20px #ffa500,
                0 0 40px #ffa500;
        }
        
        .price-info {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1rem;
            color: #ffce00;
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 12px;
            border: 2px solid #ffce00;
            text-shadow: 0 0 10px #ffce00;
            box-shadow: 
                0 0 20px rgba(255, 206, 0, 0.3),
                inset 0 0 20px rgba(255, 206, 0, 0.1);
            animation: priceGlow 3s ease-in-out infinite;
        }
        
        @keyframes priceGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 20px rgba(255, 206, 0, 0.3),
                    inset 0 0 20px rgba(255, 206, 0, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 30px rgba(255, 165, 0, 0.4),
                    inset 0 0 30px rgba(255, 165, 0, 0.15);
            }
    	}
		
        .registration-info button {
            background: linear-gradient(135deg, #ffa500 0%, #ffd700 50%, #ffce00 100%);
            background-size: 200% 200%;
            color: #000000;
        border: none;
            padding: 1rem 2rem;
        cursor: pointer;
            border-radius: 12px;
        font-size: 1rem;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            margin-top: 1rem;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 
                0 0 30px rgba(255, 165, 0, 0.5),
                0 0 60px rgba(255, 165, 0, 0.3);
            animation: buttonGlow 3s ease-in-out infinite;
        }
        
        .registration-info button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 0 40px rgba(255, 215, 0, 0.7),
                0 0 80px rgba(255, 215, 0, 0.5);
            animation: buttonPulse 0.5s ease-in-out infinite;
        }
        
        @keyframes registrationGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 30px rgba(255, 165, 0, 0.5),
                    0 0 60px rgba(255, 165, 0, 0.3),
                    inset 0 0 30px rgba(255, 165, 0, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 40px rgba(255, 215, 0, 0.6),
                    0 0 80px rgba(255, 215, 0, 0.4),
                    inset 0 0 40px rgba(255, 215, 0, 0.15);
            }
        }
        
        .video-container {
            width: 90%;
            max-width: 800px;
            margin: 2rem auto 0;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 
                0 0 40px rgba(255, 206, 0, 0.4),
                0 0 80px rgba(255, 206, 0, 0.2),
                0 20px 40px rgba(0, 0, 0, 0.6);
            border: 2px solid #ffce00;
            animation: videoGlow 6s ease-in-out infinite;
        }
        
        .video-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ffce00, #ffa500, #ffd700, #ffce00, transparent);
            background-size: 200% 100%;
            animation: borderFlow 3s linear infinite;
            z-index: 1;
        }
        
        .video-container::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ffce00, #ffa500, #ffd700, #ffce00);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: borderRotate 8s linear infinite;
        }
        
        .video-container iframe {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 18px;
            position: relative;
            z-index: 2;
        }
        
        @keyframes videoGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 40px rgba(255, 206, 0, 0.4),
                    0 0 80px rgba(255, 206, 0, 0.2),
                    0 20px 40px rgba(0, 0, 0, 0.6);
            }
            50% { 
                box-shadow: 
                    0 0 50px rgba(255, 165, 0, 0.5),
                    0 0 100px rgba(255, 165, 0, 0.3),
                    0 20px 40px rgba(0, 0, 0, 0.6);
            }
        }
        
        /* Modal de Error Elegante */
        .error-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999999;
            animation: modalFadeIn 0.5s ease-out;
        }
        
        .error-modal.show {
            display: flex;
        }
        
        .error-modal-content {
            background: rgba(0, 0, 0, 0.95);
            border: 2px solid #ffa500;
            border-radius: 20px;
            padding: 3rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 50px rgba(255, 165, 0, 0.5),
                0 0 100px rgba(255, 165, 0, 0.3),
                inset 0 0 50px rgba(255, 165, 0, 0.1);
            animation: modalGlow 3s ease-in-out infinite;
        }
        
        .error-modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ffa500, #ffce00, #ffd700, #ffa500, transparent);
            background-size: 200% 100%;
            animation: borderFlow 3s linear infinite;
        }
        
        .error-modal-content::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ffa500, #ffce00, #ffd700, #ffa500);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: borderRotate 6s linear infinite;
        }
        
        .error-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #ffa500, #ffd700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: errorPulse 2s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(255, 165, 0, 0.8);
        }
        
        .error-icon::before {
            content: '!';
            font-size: 2.5rem;
            color: #000000;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
            font-weight: bold;
        }
        
        .error-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffa500;
            margin-bottom: 1rem;
            text-shadow: 
                0 0 10px #ffa500,
                0 0 20px #ffa500,
                0 0 40px #ffa500;
            animation: titleShimmer 2s ease-in-out infinite;
        }
        
        .error-message {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .error-button {
            background: linear-gradient(135deg, #ffa500 0%, #ffd700 100%);
            color: #000000;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 0 30px rgba(255, 165, 0, 0.5),
                0 0 60px rgba(255, 165, 0, 0.3);
            animation: buttonGlow 3s ease-in-out infinite;
        }
        
        .error-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 0 40px rgba(255, 215, 0, 0.7),
                0 0 80px rgba(255, 215, 0, 0.5);
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        
        @keyframes modalGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 50px rgba(255, 165, 0, 0.5),
                    0 0 100px rgba(255, 165, 0, 0.3),
                    inset 0 0 50px rgba(255, 165, 0, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 60px rgba(255, 206, 0, 0.6),
                    0 0 120px rgba(255, 206, 0, 0.4),
                    inset 0 0 60px rgba(255, 206, 0, 0.15);
            }
        }
        
        @keyframes errorPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(255, 165, 0, 0.8);
            }
            50% { 
                transform: scale(1.1);
                box-shadow: 0 0 40px rgba(255, 165, 0, 1);
            }
        }
        
        /* Estilos para la barra de desplazamiento */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: rgba(20, 20, 20, 0.8);
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #ffce00, #ffa500);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #ffd700, #ffb347);
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                padding: 1.5rem 1rem;
            }
            
            .content-wrapper {
                padding: 2rem 1rem;
                gap: 1.5rem;
            }
            
            .main-content-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 0 1rem;
            }
            
            .left-column, .right-column {
                min-height: auto;
                gap: 2rem;
            }
            
            .form-container, .registration-info, .program-info-card {
                padding: 2rem;
                max-width: 100%;
                min-height: auto;
            }
            
            .support-link {
                margin-top: 1rem;
                padding: 0.5rem 0.6rem;
            }
            
            .support-link p {
                font-size: 0.85rem;
                line-height: 1.3;
            }
            
            .support-link p:first-child {
                margin-bottom: 1.5rem;
            }
            
            .registration-info {
                min-height: 400px;
                padding: 2.5rem 2rem;
            }
            
            .program-info-card {
                min-height: 700px;
                padding: 2.5rem 2rem;
            }
            
            .image-gallery {
                min-height: 200px;
                gap: 0.2rem;
                margin: 0;
                padding: 0;
            }
            
            .gallery-container {
                height: 200px;
            }
            
            .gallery-slide {
                background-size: cover;
            }
            
            .gallery-controls {
                gap: 15px;
                padding: 12px;
                margin: 0;
            }
            
            .gallery-nav {
                width: 40px;
                height: 40px;
            }
            
            .gallery-expand {
                width: 45px;
                height: 45px;
            }
            
            .program-title {
                font-size: 1.8rem;
            }
            
            .program-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.1rem;
            }
            
            .video-container {
                width: 100%;
                margin: 1rem 0 0;
            }
            
            .video-container iframe {
                height: 250px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            
            .form-container, .registration-info, .program-info-card {
                padding: 1rem;
            }
            
            .support-link {
                margin-top: 0.8rem;
                padding: 0.4rem 0.5rem;
            }
            
            .support-link p {
                font-size: 0.8rem;
                line-height: 1.2;
            }
            
            .support-link p:first-child {
                margin-bottom: 1rem;
            }
            
            .support-link a {
                padding: 0.15rem 0.4rem;
                font-size: 0.8rem;
            }
            
            .gallery-container {
                height: 200px;
            }
            
            .gallery-controls {
                gap: 10px;
                padding: 10px;
            }
            
            .gallery-nav {
                width: 35px;
                height: 35px;
            }
            
            .gallery-expand {
                width: 40px;
                height: 40px;
            }
            
            .gallery-expand::before {
                font-size: 20px;
            }
            
            .program-title {
                font-size: 1.5rem;
            }
            
            .program-subtitle {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1rem;
            }
            
            .program-description {
                font-size: 0.9rem;
            }
            
            .features-list li {
                font-size: 0.85rem;
            }
            
            .benefit-title {
                font-size: 0.9rem;
            }
            
            .benefit-description {
                font-size: 0.8rem;
            }
            
            input[type="text"], input[type="submit"], .registration-info button {
                padding: 0.875rem 1.5rem;
            }
        }
