        /* CSS Version 21.1 - MOBILE REGISTRATION FIX */
        * {
            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(0, 255, 136, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(255, 170, 0, 0.08) 0%, transparent 70%),
                linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 25, 10, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%) !important;
            pointer-events: none;
            z-index: 1;
            animation: backgroundPulse 10s ease-in-out infinite;
        }
        
        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }
        
        .neon-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 136, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 136, 0.08) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 1;
            animation: gridMove 25s 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%, #1a0a20 50%, #000000 100%) !important;
            color: #00ff88 !important;
            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 25px #00ff88,
                0 0 50px #00ff88,
                0 0 75px #00ff88,
                0 0 100px #00ff88 !important;
            border-bottom: 3px solid #00ff88 !important;
            box-shadow: 
                0 0 40px rgba(0, 255, 136, 0.8),
                inset 0 0 40px rgba(0, 255, 136, 0.3) !important;
        }
        
        h1::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.4), transparent);
            animation: neonShimmer 3s infinite;
        }
        
        h1::after {
            content: 'REYES DE SILICIO';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #00ff88, #ffaa00, #ff0066, #00ff88) !important;
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: neonGlitch 4s ease-in-out infinite;
            z-index: -1;
        }
        
        @keyframes neonShimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        @keyframes neonGlitch {
            0%, 100% { 
                background-position: 0% 50%;
                filter: hue-rotate(0deg);
            }
            25% { 
                background-position: 100% 50%;
                filter: hue-rotate(90deg);
            }
            50% { 
                background-position: 0% 50%;
                filter: hue-rotate(180deg);
            }
            75% { 
                background-position: 100% 50%;
                filter: hue-rotate(270deg);
            }
        }
        
        .content-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 3rem 1rem;
            gap: 2rem;
        }
        
        .main-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 3rem auto;
            padding: 0 1.5rem;
            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(0, 255, 255, 0.6),
                0 0 80px rgba(0, 255, 255, 0.3),
                inset 0 0 30px rgba(0, 255, 255, 0.1);
            border: 2px solid #00ffff;
            animation: galleryContainerGlow 4s ease-in-out infinite;
            margin: 0;
            padding: 0;
            position: relative;
        }
        
        @keyframes galleryContainerGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 40px rgba(0, 255, 255, 0.6),
                    0 0 80px rgba(0, 255, 255, 0.3),
                    inset 0 0 30px rgba(0, 255, 255, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 60px rgba(0, 255, 255, 0.8),
                    0 0 120px rgba(0, 255, 255, 0.5),
                    inset 0 0 40px rgba(0, 255, 255, 0.2);
            }
        }
        
        .gallery-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            cursor: pointer;
        }
        
        .gallery-slide.active {
            opacity: 1;
        }

        /* Variables CSS para las imágenes de la galería */
        :root {
            --gallery-image-1: url('../../images/reyes1.jpg');
            --gallery-image-2: url('../../images/reyes2.jpg');
            --gallery-image-3: url('../../images/reyes3.jpg');
            --gallery-image-4: url('../../images/reyes4.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/reyes1.jpg') !important;
        }
        .gallery-slide-2 {
            background-image: url('../../images/reyes2.jpg') !important;
        }
        .gallery-slide-3 {
            background-image: url('../../images/reyes3.jpg') !important;
        }
        .gallery-slide-4 {
            background-image: url('../../images/reyes4.jpg') !important;
        }
        
        .gallery-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(0, 255, 255, 0.1) 0%,
                rgba(199, 0, 57, 0.1) 25%,
                rgba(0, 255, 255, 0.1) 50%,
                rgba(199, 0, 57, 0.1) 75%,
                rgba(0, 255, 255, 0.1) 100%
            );
            animation: overlayShimmer 4s ease-in-out infinite;
        }
        
        @keyframes overlayShimmer {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }
        
        /* 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(0, 255, 255, 0.3);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
            margin: 0;
        }
        
        .gallery-nav {
            width: 45px;
            height: 45px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #00ffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .gallery-nav::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-style: solid;
        }
        
        .gallery-nav.prev::before {
            border-width: 8px 12px 8px 0;
            border-color: transparent #00ffff transparent transparent;
            margin-left: -2px;
        }
        
        .gallery-nav.next::before {
            border-width: 8px 0 8px 12px;
            border-color: transparent transparent transparent #00ffff;
            margin-left: 2px;
        }
        
        .gallery-nav:hover {
            background: rgba(0, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            transform: scale(1.1);
        }
        
        .gallery-expand {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #00ffff, #c70039);
            border: 2px solid #00ffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: expandPulse 2s ease-in-out infinite;
        }
        
        @keyframes expandPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            }
            50% { 
                transform: scale(1.1);
                box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
            }
        }
        
        .gallery-expand::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #000000;
            border-radius: 3px;
            box-shadow: 
                0 0 0 2px #000000,
                0 0 0 4px #00ffff;
        }
        
        .gallery-expand:hover {
            transform: scale(1.2);
            box-shadow: 0 0 40px rgba(0, 255, 255, 1);
        }
        
        .gallery-indicators {
            display: flex;
            gap: 10px;
        }
        
        .gallery-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(0, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gallery-indicator.active {
            background: #00ffff;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
            transform: scale(1.2);
        }
        
        .gallery-indicator:hover {
            background: rgba(0, 255, 255, 0.7);
            transform: scale(1.1);
        }
        
        /* Modal de Imagen Impactante */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .image-modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .image-modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            background: rgba(0, 0, 0, 0.9);
            border: 3px solid #00ffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 0 50px rgba(0, 255, 255, 0.6),
                0 0 100px rgba(0, 255, 255, 0.4),
                inset 0 0 50px rgba(0, 255, 255, 0.1);
            animation: imageModalGlow 3s ease-in-out infinite;
            display: flex;
            flex-direction: column;
        }
        
        @keyframes imageModalGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 50px rgba(0, 255, 255, 0.6),
                    0 0 100px rgba(0, 255, 255, 0.4),
                    inset 0 0 50px rgba(0, 255, 255, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 70px rgba(0, 255, 255, 0.8),
                    0 0 140px rgba(0, 255, 255, 0.6),
                    inset 0 0 70px rgba(0, 255, 255, 0.2);
            }
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #00ffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            color: #00ffff;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            background: rgba(0, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            transform: scale(1.1);
        }
        
        .modal-image {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
            display: block;
            border-radius: 17px;
        }
        
        .modal-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.8);
            border-top: 1px solid rgba(0, 255, 255, 0.3);
        }
        
        .modal-nav {
            width: 45px;
            height: 45px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #00ffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .modal-nav::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-style: solid;
        }
        
        .modal-nav.prev::before {
            border-width: 8px 12px 8px 0;
            border-color: transparent #00ffff transparent transparent;
            margin-left: -2px;
        }
        
        .modal-nav.next::before {
            border-width: 8px 0 8px 12px;
            border-color: transparent transparent transparent #00ffff;
            margin-left: 2px;
        }
        
        .modal-nav:hover {
            background: rgba(0, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            transform: scale(1.1);
        }
        
        .modal-indicators {
            display: flex;
            gap: 10px;
        }
        
        .modal-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(0, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-indicator.active {
            background: #00ffff;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
            transform: scale(1.2);
        }
        
        .modal-indicator:hover {
            background: rgba(0, 255, 255, 0.7);
            transform: scale(1.1);
        }
        
        /* Tarjeta de Informaci�n del Programa */
        .program-info-card {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            border: 2px solid #00ff88;
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 40px rgba(0, 255, 136, 0.4),
                0 0 80px rgba(0, 255, 136, 0.2),
                inset 0 0 40px rgba(0, 255, 136, 0.1);
            animation: programCardGlow 5s ease-in-out infinite;
            flex: 1;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        @keyframes programCardGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 40px rgba(0, 255, 136, 0.4),
                    0 0 80px rgba(0, 255, 136, 0.2),
                    inset 0 0 40px rgba(0, 255, 136, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 60px rgba(0, 255, 136, 0.6),
                    0 0 120px rgba(0, 255, 136, 0.4),
                    inset 0 0 60px rgba(0, 255, 136, 0.2);
            }
        }
        
        .program-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(199, 0, 57, 0.1) 0%,
                rgba(0, 255, 255, 0.1) 25%,
                rgba(199, 0, 57, 0.1) 50%,
                rgba(0, 255, 255, 0.1) 75%,
                rgba(199, 0, 57, 0.1) 100%
            );
            animation: overlayShimmer 4s ease-in-out infinite;
        }
        
        .program-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #00ff88;
            margin-bottom: 1rem;
            text-align: center;
            text-shadow: 
                0 0 20px #00ff88,
                0 0 40px #00ff88,
                0 0 60px #00ff88,
                2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        
        .program-subtitle {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 2rem;
            text-align: center;
            font-style: italic;
            text-shadow: 
                0 0 10px rgba(0, 255, 255, 0.6),
                1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .section-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 
                0 0 10px rgba(199, 0, 57, 0.6),
                1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .section-title::before {
            content: '?';
            font-size: 1.2rem;
            color: #00ff88;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .features-list li {
            color: #ffffff;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            text-shadow: 
                0 0 8px rgba(0, 255, 255, 0.5),
                1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .features-list li::before {
            content: '?';
            position: absolute;
            left: 0;
            color: #00ff88;
            font-size: 0.8rem;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
        }
        
        .benefit-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
            text-shadow: 
                0 0 10px rgba(199, 0, 57, 0.6),
                1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .benefit-description {
            color: #ffffff;
            margin-bottom: 1rem;
            text-shadow: 
                0 0 8px rgba(0, 255, 255, 0.5),
                1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .benefits-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .benefit-item {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 10px;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(0, 255, 255, 0.05) 0%,
                rgba(199, 0, 57, 0.05) 50%,
                rgba(0, 255, 255, 0.05) 100%
            );
            animation: overlayShimmer 4s ease-in-out infinite;
        }
        
        .benefit-item:hover {
            border-color: rgba(0, 255, 255, 0.4);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        /* Mejorar interlineado general */
        .program-info-card p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .features-list li {
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        .benefit-title {
            line-height: 1.4;
            margin-bottom: 0.8rem;
        }
        
        .benefit-description {
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .form-container {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(25px);
            border: 2px solid #00ff88;
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 100%;
            width: 100%;
            box-shadow: 
                0 0 25px rgba(0, 255, 136, 0.4),
                0 0 50px rgba(0, 255, 136, 0.2),
                inset 0 0 25px rgba(0, 255, 136, 0.08);
            position: relative;
            overflow: hidden;
            animation: containerGlow 5s ease-in-out infinite;
            flex: 1.2;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .form-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
            text-shadow: 
                0 0 15px #00ff88,
                0 0 30px #00ff88,
                2px 2px 4px rgba(0, 0, 0, 0.9);
        }
        
        .form-subtitle {
            font-size: 1rem;
            color: #ffffff;
            opacity: 0.9;
            text-shadow: 
                0 0 8px rgba(0, 255, 136, 0.5),
                1px 1px 3px rgba(0, 0, 0, 0.9);
        }
        
        .input-group {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .input-group label {
            display: block;
            font-size: 1.1rem;
            font-weight: 600;
            color: #00ff88;
            margin-bottom: 0.8rem;
            text-shadow: 
                0 0 8px rgba(0, 255, 136, 0.6),
                1px 1px 3px rgba(0, 0, 0, 0.9);
        }
        
        .input-group input {
            width: 100%;
            padding: 1rem 3rem 1rem 1rem;
            background: rgba(0, 0, 0, 0.9);
            border: 2px solid #00ff88;
            border-radius: 12px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
        }
        
        .input-group input:focus {
            outline: none;
            border-color: #00d4ff;
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .input-icon {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: #00ff88;
            pointer-events: none;
        }
        
        .form-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            gap: 1rem;
        }
        
        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 255, 136, 0.4);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            border-color: rgba(0, 255, 136, 0.6);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
            transform: translateY(-2px);
        }
        
        .feature-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.8));
        }
        
        .feature-text {
            font-size: 0.9rem;
            color: #ffffff;
            font-weight: 500;
            text-shadow: 
                0 0 6px rgba(0, 255, 136, 0.4),
                1px 1px 3px rgba(0, 0, 0, 0.9);
        }
        
        .form-container input[type="submit"] {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(45deg, #00ff88, #00d4ff);
            border: none;
            border-radius: 12px;
            color: #000000;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
            margin-bottom: 1.5rem;
        }
        
        .form-container input[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 35px rgba(0, 255, 136, 0.7);
            background: linear-gradient(45deg, #00ff88, #00d4ff);
        }
        
        .form-footer {
            text-align: center;
            margin-top: auto;
        }
        
        .help-text {
            font-size: 0.9rem;
            color: #ffffff;
            opacity: 0.7;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .help-link {
            color: #00ff88;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
        }
        
        .help-link:hover {
            color: #00ff88;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
        }
        
        .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(0, 255, 136, 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);
        }
        
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ff88, #00d4ff, #00ff88, 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, #00ff88, #00d4ff, #00ff88, #00d4ff);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: borderRotate 6s linear infinite;
        }
        
        @keyframes containerGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 25px rgba(0, 255, 136, 0.4),
                    0 0 50px rgba(0, 255, 136, 0.2),
                    inset 0 0 25px rgba(0, 255, 136, 0.08);
            }
            50% { 
                box-shadow: 
                    0 0 35px rgba(0, 255, 136, 0.5),
                    0 0 70px rgba(0, 255, 136, 0.3),
                    inset 0 0 35px rgba(0, 255, 136, 0.12);
            }
        }
        
        @keyframes borderFlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }
        
        @keyframes borderRotate {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        
        /* 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 #ff0066;
            border-radius: 20px;
            padding: 3rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 50px rgba(255, 0, 102, 0.5),
                0 0 100px rgba(255, 0, 102, 0.3),
                inset 0 0 50px rgba(255, 0, 102, 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, #ff0066, #00ffff, #ff6400, #ff0066, 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, #ff0066, #00ffff, #ff6400, #ff0066);
            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, #ff0066, #ff3366);
            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, 0, 102, 0.8);
        }
        
        .error-icon::before {
            content: '?';
            font-size: 2.5rem;
            color: #ffffff;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
        }
        
        .error-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ff0066;
            margin-bottom: 1rem;
            text-shadow: 
                0 0 10px #ff0066,
                0 0 20px #ff0066,
                0 0 40px #ff0066;
            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, #ff0066 0%, #ff3366 100%);
            color: #ffffff;
            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, 0, 102, 0.5),
                0 0 60px rgba(255, 0, 102, 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, 0, 102, 0.7),
                0 0 80px rgba(255, 0, 102, 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, 0, 102, 0.5),
                    0 0 100px rgba(255, 0, 102, 0.3),
                    inset 0 0 50px rgba(255, 0, 102, 0.1);
            }
            50% { 
                box-shadow: 
                    0 0 60px rgba(0, 255, 255, 0.6),
                    0 0 120px rgba(0, 255, 255, 0.4),
                    inset 0 0 60px rgba(0, 255, 255, 0.15);
            }
        }
        
        @keyframes errorPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(255, 0, 102, 0.8);
            }
            50% { 
                transform: scale(1.1);
                box-shadow: 0 0 40px rgba(255, 0, 102, 1);
            }
        }
        
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        label {
            font-size: 0.9rem;
            font-weight: 500;
            color: #e0e0e0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        input[type="text"] {
            background: rgba(0, 0, 0, 0.9);
            border: 2px solid #00ffff;
            border-radius: 12px;
            padding: 1rem 1.25rem;
            color: #00ffff;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            outline: none;
            text-shadow: 0 0 10px #00ffff;
            box-shadow: 
                0 0 20px rgba(0, 255, 255, 0.3),
                inset 0 0 20px rgba(0, 255, 255, 0.1);
        }
        
        input[type="text"]:focus {
            border-color: #ff6400;
            box-shadow: 
                0 0 30px rgba(255, 100, 0, 0.5),
                0 0 60px rgba(255, 100, 0, 0.3),
                inset 0 0 30px rgba(255, 100, 0, 0.1);
            color: #ff6400;
            text-shadow: 0 0 15px #ff6400;
        }
        
        input[type="text"]::placeholder {
            color: rgba(0, 255, 255, 0.6);
            text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
        }
        
        input[type="submit"] {
            background: linear-gradient(135deg, #00ffff 0%, #ff6400 50%, #ff0066 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(0, 255, 255, 0.5),
                0 0 60px rgba(0, 255, 255, 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, 100, 0, 0.7),
                0 0 80px rgba(255, 100, 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(0, 255, 255, 0.5),
                    0 0 60px rgba(0, 255, 255, 0.3);
            }
            50% { 
                background-position: 100% 50%;
                box-shadow: 
                    0 0 40px rgba(255, 100, 0, 0.6),
                    0 0 80px rgba(255, 100, 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.92);
            backdrop-filter: blur(25px);
            border: 2px solid #00ff88;
            border-radius: 20px;
            padding: 2rem;
            max-width: 100%;
            width: 100%;
            text-align: center;
            color: #ffffff;
            box-shadow: 
                0 0 35px rgba(0, 255, 136, 0.6),
                0 0 70px rgba(0, 255, 136, 0.4),
                inset 0 0 35px rgba(0, 255, 136, 0.12);
            position: relative;
            overflow: hidden;
            animation: registrationGlow 6s ease-in-out infinite;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 200px;
            flex: 0.8;
        }
        
        .registration-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ff88, #00d4ff, #00ff88, transparent);
            background-size: 200% 100%;
            animation: borderFlow 5s linear infinite;
        }
        
        .registration-info p {
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            line-height: 1.5;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }
        
        .registration-info p:first-child {
            font-size: 1.1rem;
            font-weight: 700;
            color: #00ff88;
            text-shadow: 
                0 0 12px #00ff88,
                0 0 24px #00ff88,
                0 0 36px #00ff88;
        }
        
        .price-info {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9rem;
            color: #00ff88;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.85);
            border-radius: 12px;
            border: 2px solid #00ff88;
            text-shadow: 0 0 12px #00ff88;
            box-shadow: 
                0 0 25px rgba(0, 255, 136, 0.4),
                inset 0 0 25px rgba(0, 255, 136, 0.12);
            animation: priceGlow 4s ease-in-out infinite;
        }
        
        @keyframes priceGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 25px rgba(0, 200, 255, 0.4),
                    inset 0 0 25px rgba(0, 200, 255, 0.12);
            }
            50% { 
                box-shadow: 
                    0 0 35px rgba(255, 120, 0, 0.5),
                    inset 0 0 35px rgba(255, 120, 0, 0.18);
            }
        }
        
        .registration-info button {
            background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
            background-size: 200% 200%;
            color: #000000;
            border: none;
            padding: 0.8rem 1.5rem;
            cursor: pointer;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            margin-top: 0.8rem;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 
                0 0 35px rgba(0, 255, 136, 0.6),
                0 0 70px rgba(0, 255, 136, 0.4);
            animation: buttonGlow 4s ease-in-out infinite;
        }
        
        .registration-info button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 0 45px rgba(0, 212, 255, 0.8),
                0 0 90px rgba(0, 212, 255, 0.6);
            animation: buttonPulse 0.5s ease-in-out infinite;
        }
        
        @keyframes registrationGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 35px rgba(255, 120, 0, 0.6),
                    0 0 70px rgba(255, 120, 0, 0.4),
                    inset 0 0 35px rgba(255, 120, 0, 0.12);
            }
            50% { 
                box-shadow: 
                    0 0 45px rgba(255, 0, 102, 0.7),
                    0 0 90px rgba(255, 0, 102, 0.5),
                    inset 0 0 45px rgba(255, 0, 102, 0.18);
            }
        }
        
        .video-container {
            width: 90%;
            max-width: 800px;
            margin: 2rem auto 0;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 
                0 0 45px rgba(0, 255, 136, 0.5),
                0 0 90px rgba(0, 255, 136, 0.3),
                0 20px 40px rgba(0, 0, 0, 0.6);
            border: 2px solid #00ff88;
            animation: videoGlow 7s ease-in-out infinite;
        }
        
        .video-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00ff88, #00d4ff, #00ff88, transparent);
            background-size: 200% 100%;
            animation: borderFlow 4s linear infinite;
            z-index: 1;
        }
        
        .video-container::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00ff88, #00d4ff, #00ff88, #00d4ff);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: borderRotate 9s 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 45px rgba(0, 200, 255, 0.5),
                    0 0 90px rgba(0, 200, 255, 0.3),
                    0 20px 40px rgba(0, 0, 0, 0.6);
            }
            50% { 
                box-shadow: 
                    0 0 55px rgba(255, 120, 0, 0.6),
                    0 0 110px rgba(255, 120, 0, 0.4),
                    0 20px 40px rgba(0, 0, 0, 0.6);
            }
        }
        
        /* 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, #00ff88, #00d4aa);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #00ff99, #00e4bb);
        }
        
        @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: 2rem;
                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;
            }
            
            .form-container {
                flex: 1.2;
                min-height: 500px;
            }
            
            .registration-info {
                flex: 0.8;
                min-height: 200px;
            }
            
            @media (max-width: 768px) {
                .registration-info {
                    flex: 1;
                    min-height: 300px;
                    padding: 2.5rem 2rem;
                }
            }
            
            .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;
            }
            
            
            .form-features {
                display: none;
            }
            
            
            .form-features {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .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;
            }
            
            @media (max-width: 480px) {
                .registration-info {
                    min-height: 350px;
                    padding: 2rem 1.5rem;
                }
            }
            
            .feature-item {
                flex-direction: row;
                text-align: left;
                padding: 0.8rem;
            }
            
            .feature-icon {
                margin-right: 0.8rem;
                margin-bottom: 0;
            }
            
            .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;
            }
            
            .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 {
                padding: 1rem;
            }
            
            input[type="text"], input[type="submit"], .registration-info button {
                padding: 0.875rem 1.5rem;
            }
        }
    </style>
    
