        * {
            font-family: 'Inter', sans-serif;
        }

        body {
            box-sizing: border-box;
            background-color: #f8fafc;
        }

        /* Navbar elegante */
        .navbar-custom {
            background: white;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.3rem;
            color: #1f2937 !important;
        }

        /* Hero Section con Slider */
        .hero-section {
            position: relative;
            /* height: 85vh;
            min-height: 600px; */
            overflow: hidden;
        }

        /* Hero Section con Imagen Única */
        .hero-section {
            position: relative;
            /* height: 85vh;
            min-height: 600px; */
            overflow: hidden;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            cursor: pointer;
        }

        /* Slider Container */
        /* .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .slide-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        } */

        /* Navigation Arrows */
        /* .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border-radius: 50px;
            z-index: 10;
        }

        .slider-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 30px;
        }

        .slider-nav.next {
            right: 30px;
        } */

        /* Dots Indicators */
        /* .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        } */

        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: white;
            border-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.2);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #f59e0b, #f97316);
            border: none;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
            color: white;
        }

        /* Secciones limpias */
        .welcome-section {
            background: white;
            padding: 60px 0;
        }

        /* Video Section */
        .video-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 80px 0;
        }

        .video-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .video-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 10px;
        }

        .video-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 0;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
        }

        .video-placeholder {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            transform: scale(1.02);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #1e40af;
            transition: all 0.3s ease;
            z-index: 2;
            position: relative;
        }

        .play-button:hover {
            background: white;
            transform: scale(1.1);
        }

        .video-overlay {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: white;
            z-index: 1;
        }

        .video-overlay h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .video-overlay p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        .welcome-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .description-section {
            background: #f1f5f9;
            padding: 50px 0;
        }

        .description-text {
            font-size: 1.1rem;
            color: #4b5563;
            line-height: 1.7;
        }

        /* Cards de categorías */
        .benefits-section {
            background: white;
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1f2937;
            text-align: center;
            margin-bottom: 3rem;
        }

        .category-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            border-color: #3b82f6;
        }

        .benefits-special-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: 2px solid #667eea;
            position: relative;
            overflow: hidden;
        }

        .benefits-special-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            pointer-events: none;
        }

        .benefits-special-card .category-icon {
            background: rgba(255,255,255,0.2) !important;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            position: relative;
            z-index: 2;
        }

        .benefits-special-card .category-title {
            color: white;
            font-weight: 700;
        }

        .benefits-special-card .category-description {
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
        }

        .benefits-special-card .btn-benefits {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .benefits-special-card .btn-benefits:hover {
            background: rgba(255,255,255,0.3);
            color: white;
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-2px);
        }

        .benefits-special-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
            border-color: #667eea;
        }

        .category-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 20px;
        }

        .academic-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
        .exclusive-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .scholarship-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); }
        .services-icon { background: linear-gradient(135deg, #10b981, #059669); }
        .experience-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }

        .category-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 10px;
        }

        .category-description {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Modales elegantes */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .modal-header {
            border-bottom: 1px solid #e5e7eb;
            padding: 25px 30px;
            border-radius: 20px 20px 0 0;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
        }

        .modal-body {
            padding: 30px;
        }

        .benefit-item {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            border-left: 4px solid #3b82f6;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: #f1f5f9;
            transform: translateX(5px);
        }

        .benefit-item-title {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .benefit-item-description {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        /* Footer limpio */
        .footer-custom {
            background: #1f2937;
            color: #d1d5db;
            padding: 50px 0 30px;
        }

        .footer-title {
            color: #f59e0b;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-link:hover {
            color: #f59e0b;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 6px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-btn:hover {
            transform: translateY(-2px);
        }

        /* WhatsApp Button Hover Effects */
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
            color: #25d366;
        }

        .facebook { background: #1877f2; color: white; }
        .twitter { background: #1da1f2; color: white; }
        .youtube { background: #ff0033; color: white; }
        .tiktok { background: #000000; color: white; }
        .linkedin { background: #0077b5; color: white; }
        .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }

        /* Animaciones para carousels */
        .carousel-container {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.5s ease-in-out;
            transform: translateY(-10px);
        }

        .carousel-container.show {
            max-height: 400px;
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-container .carousel {
            transition: all 0.3s ease;
        }

        /* Responsive */
        @media (max-width: 768px) {
            /* .hero-section {
                height: 70vh;
                min-height: 500px;
            } */
            
            /* .slide-title {
                font-size: 2.5rem;
            }
            
            .slide-subtitle {
                font-size: 1.1rem;
            }
            
            .slider-nav {
                padding: 12px 15px;
                font-size: 1.2rem;
            }
            
            .slider-nav.prev {
                left: 15px;
            }
            
            .slider-nav.next {
                right: 15px;
            }
            
            .slider-dots {
                bottom: 20px;
            } */
            
            .dot {
                width: 12px;
                height: 12px;
            }
            
            .welcome-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            /* .slide-title {
                font-size: 2rem;
            }
            
            .slide-subtitle {
                font-size: 1rem;
            }
            
            .slider-nav {
                padding: 10px 12px;
                font-size: 1rem;
            } */
        }