 /* ===== RESET Y BASE ===== */

        :root {

    --iesitblue: #1417f3;
    --iesitblue-dark: #0e1079;
        }
        
 
        
        /* ===== HERO SECTION - IMPACTO VISUAL ===== */
        .english-hero {
            position: relative;
            min-height: 30vh;
            display: flex;
            align-items: center;
            justify-content: center;
    
            overflow: hidden;
            padding: 40px 20px;
        }
        
        /* Contenido del hero */
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 20px;
        }
       
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            color: rgb(0, 0, 0);
            margin-bottom: 20px;
            line-height: 1.1;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        .hero-title .highlight {
            background: linear-gradient(90deg, #0e1079, #1417f3, #1d1de0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }
        
  
  
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ===== SECCIÓN DE ESTADÍSTICAS ===== */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: -50px auto 60px;
            padding: 0 20px;
            position: relative;
            z-index: 3;
        }
        
        .stat-card {
            background: white;
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            color: #1417f3;
            margin-bottom: 10px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        /* ===== CARACTERÍSTICAS ===== */
        .features-section {
            max-width: 1200px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .section-header p {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #ecf0f1;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
             background: linear-gradient(135deg, var(--iesitblue), var(--iesitblue));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-card:hover::before {
            opacity: 0.05;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
               background: linear-gradient(135deg, var(--iesitblue), var(--iesitblue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: #2c3e50;
        }
        
        .feature-card p {
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        /* ===== NIVELES DE INGLÉS ===== */
        .levels-section {
            max-width: 1200px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }
        
        .levels-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .level-item {
            background: white;
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            border-left: 5px solid #667eea;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        
        .level-item:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .level-item .level {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--iesitblue);
            margin-bottom: 5px;
        }
        
        .level-item .level-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .level-item .level-desc {
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        .level-item:nth-child(1) { border-left-color: #f093fb; }
        .level-item:nth-child(2) { border-left-color: #667eea; }
        .level-item:nth-child(3) { border-left-color: #4facfe; }
        .level-item:nth-child(4) { border-left-color: #43e97b; }
        .level-item:nth-child(5) { border-left-color: #fa709a; }
        .level-item:nth-child(6) { border-left-color: #f6d365; }
        
       
        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                margin-top: -30px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
           
            
            .stats-section {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            
            .stat-card {
                padding: 20px 15px;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .btn-primary, .btn-secondary {
                padding: 14px 30px;
                font-size: 1rem;
                width: 100%;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .levels-container {
                grid-template-columns: 1fr 1fr;
            }
        }