﻿/* =========================================
           1. CORE & VARIABLES (Modern Palette)
           ========================================= */
        :root {
            --primary: #003399;
            --accent: #E31C23;
            --dark: #0f172a;
            --light-bg: #f8fafc;
            --card-bg: #ffffff;
            --glass: rgba(255, 255, 255, 0.9);
            --radius: 24px;
            --shadow: 0 20px 40px -10px rgba(0, 51, 153, 0.1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body { 
            font-family: 'Inter', sans-serif; 
            color: #475569; 
            background-color: var(--light-bg); 
            overflow-x: hidden;
        }
        h1, h2, h3, h4, .btn { font-family: 'Montserrat', sans-serif; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; transition: 0.3s ease; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 100px 0; }

        /* Espaciado superior consistente bajo el header fijo (responsive) */
        .page-top { padding-top: 140px; }
        @media (max-width: 768px) { .page-top { padding-top: 120px; } }
        @media (max-width: 520px) { .page-top { padding-top: 112px; } }
        
        /* Tipografía Premium */
        .title-group { text-align: center; margin-bottom: 60px; position: relative; }
        .title-group h1 {
            font-size: 2.7rem; color: var(--dark); font-weight: 900; letter-spacing: -1.2px; margin-bottom: 14px;
            font-family: 'Montserrat', sans-serif;
        }
        .title-group h2 { 
            font-size: 2.7rem; color: var(--dark); font-weight: 900; letter-spacing: -1.2px; margin-bottom: 14px; 
        }
        .title-group h1 span { color: var(--primary); }
        .title-group h2 span { color: var(--primary); }
        .title-group p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; color: #64748b; }

        /* Blog / Artículo: etiquetas y tarjetas clicables */
        .post-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            font-weight: 900;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            font-size: 0.75rem;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: rgba(0, 51, 153, 0.08);
            color: var(--primary);
        }
        .post-tag--on-dark {
            background: rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.92);
            border-color: rgba(255, 255, 255, 0.16);
        }

        .post-meta-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 0.82rem;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: rgba(15, 23, 42, 0.04);
            color: var(--dark);
        }
        .post-meta-pill--on-dark {
            background: rgba(255, 255, 255, 0.10);
            color: rgba(255, 255, 255, 0.92);
            border-color: rgba(255, 255, 255, 0.18);
        }

        .post-card { position: relative; }
        .post-card-link {
            position: absolute;
            inset: 0;
            z-index: 2;
            border-radius: var(--radius);
        }
        .post-card-link:focus-visible {
            outline: 3px solid rgba(0, 51, 153, 0.35);
            outline-offset: 4px;
        }

        .post-card-thumb {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(15, 23, 42, 0.06);
            margin-bottom: 14px;
        }
        .post-card-cta {
            margin-top: auto;
            align-self: flex-start;
            padding: 14px 22px;
            border-radius: 50px;
            background: rgba(0, 51, 153, 0.08);
            color: var(--primary);
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            z-index: 1;
        }

        .post-card:hover { transform: translateY(-3px); border-color: rgba(0, 51, 153, 0.18); }

        /* Animación Scroll Reveal */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* =========================================
           2. HEADER
           - Por defecto: visible (páginas internas)
           - Solo el index (body.home) queda transparente arriba
           ========================================= */
        header {
            position: fixed; width: 100%; top: 0; z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            height: 80px;
            display: flex; align-items: center;
            transition: all 0.4s ease;
        }
        /* Estado transparente SOLO en home y SOLO antes de hacer scroll */
        body.home header:not(.scrolled) {
            background: transparent;
            backdrop-filter: none;
            box-shadow: none;
            height: 90px;
        }

        header.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: var(--shadow); height: 80px; }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo img { height: 50px; filter: none; transition: 0.4s; }
        body.home header:not(.scrolled) .logo img { filter: brightness(0) invert(1); }
        
        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-link { color: var(--dark); font-weight: 600; font-size: 0.95rem; opacity: 0.9; }
        .nav-link:hover { opacity: 1; transform: translateY(-2px); }
        body.home header:not(.scrolled) .nav-link { color: white; }
        
        .btn-nav {
            padding: 10px 25px; border-radius: 50px; background: var(--accent); color: white !important;
            font-weight: 700; font-size: 0.9rem; box-shadow: 0 4px 15px rgba(227, 28, 35, 0.4);
        }
        .btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(227, 28, 35, 0.6); }

        /* Mobile Menu (Toggle + Panel) */
        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 0;
            border-radius: 12px;
            background: rgba(15, 23, 42, 0.06);
            color: var(--dark);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease;
        }
        .nav-toggle:hover { transform: translateY(-1px); }
        body.home header:not(.scrolled) .nav-toggle {
            background: rgba(255, 255, 255, 0.12);
            color: white;
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            width: 100%;
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            pointer-events: none;
            transition: max-height 0.35s ease, opacity 0.25s ease;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            border-bottom-left-radius: 18px;
            border-bottom-right-radius: 18px;
        }
        .mobile-nav.open {
            max-height: 360px;
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav-inner { padding: 14px 0 18px; }
        .mobile-nav a {
            display: block;
            padding: 14px 8px;
            color: var(--dark);
            font-weight: 700;
            border-radius: 14px;
        }
        .mobile-nav a:hover { background: rgba(15, 23, 42, 0.06); }
        .mobile-nav .btn-nav { text-align: center; margin-top: 8px; }

        /* =========================================
           3. HERO VIDEO (Mantenido)
           ========================================= */
        .hero {
            position: relative; width: 100%; height: 100vh;
            height: 100svh;
            display: flex; align-items: center; justify-content: center; overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 90px;
            background: linear-gradient(to bottom, transparent 0%, var(--light-bg) 100%);
            z-index: 1;
            pointer-events: none;
        }
        .hero-video {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover; object-position: center top; z-index: -1;
        }
        .hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
            z-index: 1;
        }
        .hero-content { position: relative; z-index: 2; text-align: center; color: white; margin-top: 60px; }
        .hero h1 { 
            font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 30px;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .btn-hero {
            padding: 18px 45px; font-size: 1.1rem; border-radius: 50px; background: var(--accent); color: white;
            font-weight: 800; letter-spacing: 1px; box-shadow: 0 10px 30px rgba(227, 28, 35, 0.5); display: inline-block;
        }
        .btn-hero:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(227, 28, 35, 0.7); }

        /* =========================================
           4. FLOATING STATS (Diseño Flotante)
           ========================================= */
        .stats-wrapper {
            margin-top: 34px; /* Más abajo: no se monta sobre el video */
            position: relative; z-index: 3; padding: 0 20px;
        }
        .stats-card {
            background: rgba(255, 255, 255, 0.82);
            border-radius: var(--radius);
            box-shadow: 0 22px 50px -20px rgba(15, 23, 42, 0.22);
            padding: 22px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 1100px;
            margin: 0 auto;
            border: 1px solid rgba(15, 23, 42, 0.08);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        /* Intro del bloque de pasos (dentro del card para mejor contraste) */
        .steps-intro {
            grid-column: 1 / -1;
            text-align: center;
            padding: 4px 10px 0;
        }
        .steps-intro h2 {
            font-size: clamp(1.2rem, 2vw, 1.55rem);
            font-weight: 900;
            color: var(--dark);
            letter-spacing: -0.04em;
            margin-bottom: 6px;
            font-family: 'Montserrat', sans-serif;
        }
        .steps-intro h2 span { color: var(--primary); }
        .steps-intro p {
            max-width: 860px;
            margin: 0 auto;
            color: #64748b;
            font-size: 0.98rem;
            line-height: 1.45;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
        }
        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
        }
        .stats-card::after {
            display: none;
        }
        .stat-item {
            text-align: left;
            padding: 24px 22px;
            background: rgba(255, 255, 255, 0.94);
            border-radius: 20px;
            border: 1px solid rgba(15, 23, 42, 0.10);
            box-shadow: 0 22px 55px -44px rgba(15, 23, 42, 0.55);
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            min-height: 175px;
            display: flex;
            flex-direction: column;
            isolation: isolate;
        }
        .stat-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
            opacity: 0.95;
        }
        .stat-item::after {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            right: -90px;
            top: -90px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(0, 51, 153, 0.18), rgba(0, 51, 153, 0));
            z-index: 0;
        }
        .stat-item .watermark {
            display: none;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 51, 153, 0.18);
            box-shadow: 0 28px 70px -52px rgba(15, 23, 42, 0.7);
        }
        /* Nota: .stat-label y .stat-number ya no se usan */

        /* Steps (Matrícula) */
        .step-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; position: relative; z-index: 1; }
        .step-icon {
            width: 44px;
            height: 44px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 51, 153, 0.22), rgba(227, 28, 35, 0.18));
            color: var(--dark);
            border: 1px solid rgba(15, 23, 42, 0.10);
            flex-shrink: 0;
            position: relative;
        }
        .step-icon::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 18px;
            border: 1px solid rgba(0, 51, 153, 0.18);
            opacity: 0.75;
        }
        .step-icon i { font-size: 1.1rem; }
        .step-badge {
            width: clamp(48px, 4.6vw, 56px);
            height: clamp(48px, 4.6vw, 56px);
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(227, 28, 35, 0.16), rgba(0, 51, 153, 0.10));
            color: var(--dark);
            font-weight: 900;
            font-size: clamp(1.05rem, 1.2vw, 1.2rem);
            font-family: 'Montserrat', sans-serif;
            letter-spacing: -0.04em;
            border: 1px solid rgba(15, 23, 42, 0.10);
        }
        .step-title { font-size: 1.15rem; font-weight: 900; color: var(--dark); margin-bottom: 7px; letter-spacing: -0.02em; position: relative; z-index: 1; }
        .step-desc { font-size: 0.95rem; color: #64748b; line-height: 1.55; position: relative; z-index: 1; }

        /* Landing Inscripción */
        .enroll-section {
            background: linear-gradient(180deg, rgba(0, 51, 153, 0.04) 0%, rgba(248, 250, 252, 0.0) 45%, rgba(255, 255, 255, 1) 100%);
            border-top: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
        }
        .enroll-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
        .enroll-media {
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(0, 51, 153, 0.12);
            box-shadow: 0 24px 55px -40px rgba(15, 23, 42, 0.5);
            margin-bottom: 18px;
        }
        .enroll-media img { width: 100%; height: 240px; object-fit: cover; }
        .enroll-kicker {
            display: inline-flex;
            gap: 10px;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;
            background: var(--light-bg);
            border: 1px solid #eef2f7;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 18px;
        }
        .enroll-copy h2 { text-align: left; margin-bottom: 12px; }
        .enroll-copy p { max-width: 620px; font-size: 1.05rem; line-height: 1.7; color: #64748b; }
        .enroll-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
        .btn-secondary {
            padding: 14px 22px;
            border-radius: 50px;
            background: rgba(0, 51, 153, 0.08);
            color: var(--primary);
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-secondary:hover { transform: translateY(-2px); }

        .form-card {
            background: white;
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 51, 153, 0.1);
            position: relative;
            overflow: hidden;
        }
        .form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
        }
        .form-title { font-size: 1.2rem; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
        .form-sub { color: #64748b; font-size: 0.95rem; margin-bottom: 18px; }
        .form-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
        .field label { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
        .field input, .field select {
            width: 100%;
            padding: 14px 14px;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
            outline: none;
            background: white;
            color: var(--dark);
            font-weight: 600;
        }
        .field input:focus, .field select:focus { border-color: rgba(0, 51, 153, 0.5); box-shadow: 0 0 0 4px rgba(0, 51, 153, 0.08); }
        .form-actions { margin-top: 14px; }
        .btn-block { width: 100%; text-align: center; }

        /* Propuesta de valor */
        .value-banner {
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: 0 20px 45px -38px rgba(15, 23, 42, 0.45);
            margin: 0 auto 30px;
            max-width: 1100px;
        }
        .value-banner img { width: 100%; height: 220px; object-fit: cover; }
        .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
        .value-card {
            background: white;
            border-radius: var(--radius);
            padding: 20px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 18px 45px -30px rgba(15, 23, 42, 0.35);
            transition: 0.25s ease;
            position: relative;
            overflow: hidden;
        }
        .value-card.post-card .post-card-thumb { height: 290px !important; }
        .value-card.post-card .post-card-thumb.post-card-thumb--empty { background: #f1f5f9; }
        .value-card.post-card .post-card-thumb img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center;
            display: block;
        }

        /* Blog cards: altura consistente */
        .post-card { display: flex; flex-direction: column; height: 100%; }
        .post-card .value-title {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            overflow: hidden;
        }
        .post-card .value-desc {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            overflow: hidden;
        }
        .post-card .post-card-date { margin-top: 10px; }
        .post-card .post-card-cta { margin-top: auto; align-self: flex-start; }
        .value-card::after {
            content: '';
            position: absolute;
            width: 220px;
            height: 220px;
            right: -120px;
            bottom: -120px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(227, 28, 35, 0.14), rgba(227, 28, 35, 0));
        }
        .value-card:hover { transform: translateY(-3px); border-color: rgba(0, 51, 153, 0.18); }
        .value-icon {
            width: 44px;
            height: 44px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 51, 153, 0.18), rgba(227, 28, 35, 0.12));
            color: var(--dark);
            margin-bottom: 14px;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }
        .value-title { font-weight: 900; color: var(--dark); margin-bottom: 6px; font-size: 1.0rem; }
        .value-desc { color: #64748b; line-height: 1.55; font-size: 0.9rem; }

        /* Artículo (contenido WP) */
        .prose {
            color: #475569;
            font-size: 1.05rem;
            line-height: 1.85;
        }
        .prose > * + * { margin-top: 14px; }
        .prose h1, .prose h2, .prose h3, .prose h4 {
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }
        .prose h2 { font-size: 1.6rem; margin-top: 26px; }
        .prose h3 { font-size: 1.25rem; margin-top: 22px; }
        .prose a { color: var(--primary); font-weight: 800; }
        .prose ul, .prose ol { padding-left: 1.25rem; }
        .prose li + li { margin-top: 6px; }
        .prose img { border-radius: 18px; border: 1px solid rgba(15, 23, 42, 0.06); }
        .prose figure { margin: 18px 0; }
        .prose figcaption { margin-top: 10px; font-size: 0.9rem; color: #64748b; }
        .prose iframe, .prose video { max-width: 100%; }
        .prose .alignleft,
        .prose .alignright {
            float: none !important;
            margin: 18px 0 !important;
            width: auto !important;
        }
        .prose table { width: 100%; border-collapse: collapse; }
        .prose th, .prose td { border: 1px solid rgba(15, 23, 42, 0.10); padding: 10px 12px; }
        .prose blockquote {
            margin: 18px 0;
            padding: 14px 16px;
            border-left: 4px solid rgba(0, 51, 153, 0.35);
            background: rgba(0, 51, 153, 0.05);
            border-radius: 16px;
            color: #334155;
        }

        /* =========================================
           5. COMPARATIVA (Diseño Tarjeta Inteligente)
           ========================================= */
        .comparison-container {
            display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
        }
        
        /* Tarjeta Principal (GoEnglish) */
        .card-goenglish {
            background: linear-gradient(135deg, rgba(0, 51, 153, 0.04), rgba(255, 255, 255, 1));
            border-radius: var(--radius);
            padding: 50px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 51, 153, 0.1);
            position: relative;
            overflow: hidden;
        }
        .card-goenglish::before {
            content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: var(--primary);
        }
        .card-goenglish::after {
            content: '';
            position: absolute;
            width: 260px;
            height: 260px;
            right: -140px;
            top: -140px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(227, 28, 35, 0.16), rgba(227, 28, 35, 0));
            pointer-events: none;
        }
        .card-goenglish h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 30px; display: flex; align-items: center; gap: 15px; }
        .card-goenglish h3 img { width: 40px; }
        
        .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(15, 23, 42, 0.06);
            border-radius: 18px;
            padding: 14px 14px;
        }
        .feature-icon { 
            background: rgba(0, 51, 153, 0.10); color: var(--primary); width: 32px; height: 32px; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .feature-text strong { display: block; color: var(--dark); font-weight: 700; margin-bottom: 2px; }
        .feature-text span { font-size: 0.9rem; color: #64748b; }

        /* Lista simple (Otros) */
        .compare-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 999px;
            font-weight: 900;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            font-size: 0.75rem;
            margin-bottom: 18px;
            border: 1px solid rgba(15, 23, 42, 0.08);
        }
        .compare-badge.primary {
            background: rgba(0, 51, 153, 0.08);
            color: var(--primary);
        }
        .compare-badge.muted {
            background: rgba(15, 23, 42, 0.92);
            color: rgba(255, 255, 255, 0.92);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .list-others {
            background: rgba(15, 23, 42, 0.96);
            border-radius: var(--radius);
            padding: 35px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            box-shadow: 0 24px 55px -45px rgba(15, 23, 42, 0.8);
            position: relative;
            overflow: hidden;
        }
        .list-others::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.10), rgba(227, 28, 35, 0.85), rgba(255, 255, 255, 0.10));
        }
        .list-others h3 { font-size: 1.45rem; color: rgba(255, 255, 255, 0.95); margin-bottom: 12px; font-weight: 900; letter-spacing: -0.02em; }
        .list-others p { color: rgba(255, 255, 255, 0.7); margin-bottom: 18px; }
        .list-others ul { list-style: none; }
        .list-others li { 
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.82);
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .list-others i { color: rgba(227, 28, 35, 0.95); }

        /* =========================================
           6. PROGRAMAS (BENTO GRID - Solución Compacta)
           ========================================= */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 280px);
            gap: 20px;
        }

        .bento-card {
            position: relative; border-radius: var(--radius); overflow: hidden;
            cursor: pointer; transition: 0.4s ease;
        }
        .bento-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .bento-card:hover img { transform: scale(1.1); }
        .bento-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
            display: flex; flex-direction: column; justify-content: flex-end; padding: 25px;
            color: white;
        }
        .bento-tag { 
            display: inline-flex;
            align-items: center;
            background: var(--accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; 
            padding: 5px 12px; border-radius: 20px; align-self: flex-start; margin-bottom: 10px;
        }
        .bento-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 5px; }
        .bento-desc { font-size: 0.9rem; opacity: 0.9; max-height: 0; overflow: hidden; transition: 0.4s; }
        .bento-card:hover .bento-desc { max-height: 50px; } /* Muestra texto al pasar mouse */
        /* Layout limpio (evita efecto Pinterest) */
        .item-kids, .item-teens, .item-adults, .item-business { grid-column: auto; grid-row: auto; }

        /* =========================================
           7. EQUIPO (Perfil Limpio)
           ========================================= */
        .team-row {
            display: flex;
            gap: 24px;
            overflow: hidden;
            padding-bottom: 8px;
            scroll-snap-type: none;
            scrollbar-width: none;
        }
        .team-row::-webkit-scrollbar { display: none; }
        .profile-card {
            flex: 0 0 280px;
            min-width: 280px;
            scroll-snap-align: none;
            background: white; border-radius: var(--radius); padding: 20px;
            text-align: center; border: 1px solid #f1f5f9; transition: 0.3s;
        }
        .profile-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow); }
        .profile-img {
            width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
            margin: 0 auto 20px; border: 4px solid #f1f5f9;
        }
        .profile-name { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
        .profile-role { font-size: 0.85rem; color: var(--accent); font-weight: 600; text-transform: uppercase; margin-bottom: 15px; display: block;}
        .profile-stats {
            display: flex; justify-content: center; gap: 15px; border-top: 1px solid #f1f5f9; padding-top: 15px;
        }
        .p-stat { font-size: 0.8rem; color: #64748b; }
        .p-stat strong { display: block; color: var(--dark); font-size: 1rem; }

        /* =========================================
           8. ALIANZAS (Minimalista)
           ========================================= */
        .marquee-container {
            background: white;
            padding: 60px 0;
            border-top: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
            overflow: hidden;
            scrollbar-width: none;
        }
        .marquee-container::-webkit-scrollbar { display: none; }

        .marquee { display: flex; gap: 80px; width: max-content; }
        .marquee img { height: 50px; filter: grayscale(100%); opacity: 0.4; transition: 0.3s; }
        .marquee:hover img { filter: grayscale(0); opacity: 1; }

        /* =========================================
           9. FOOTER
           ========================================= */
        footer { background: white; padding: 80px 0 30px; }
        .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
        .f-brand img { width: 180px; margin-bottom: 20px; }
        .f-title { font-weight: 800; color: var(--dark); margin-bottom: 25px; font-size: 1.1rem; }
        .f-links li { margin-bottom: 12px; }
        .f-links a { color: #64748b; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
        .f-links a:hover { color: var(--primary); transform: translateX(5px); }
        .f-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #f1f5f9; font-size: 0.85rem; color: #94a3b8; }

        /* =========================================
           RESPONSIVE
           ========================================= */
        @media (max-width: 900px) {
            .hero h1 { font-size: 3rem; }
            /* Mantener 2 columnas en móvil/tablet para evitar scroll vertical excesivo */
            .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
            .item-kids, .item-teens, .item-adults, .item-business { grid-column: auto; grid-row: auto; height: 260px; }
            .comparison-container { grid-template-columns: 1fr; }
            .stats-card { grid-template-columns: repeat(2, 1fr); }
            .stats-card::after { display: none; }
            .enroll-grid { grid-template-columns: 1fr; }
            .value-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-top { grid-template-columns: 1fr; gap: 30px; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-toggle { display: inline-flex; }
            .mobile-nav { display: block; }
            .nav-inner { justify-content: center; position: relative; }
            .nav-toggle { position: absolute; left: 0; }
            .hero h1 { font-size: 2.5rem; }

            /* Form en 2 columnas para reducir altura */
            .form-grid { grid-template-columns: 1fr 1fr; }
            .field:nth-child(3),
            .field:nth-child(4) { grid-column: span 2; }

            /* Performance mobile: renderiza secciones fuera de pantalla bajo demanda */
            .section-padding,
            footer {
                content-visibility: auto;
                contain-intrinsic-size: 1px 900px;
            }
        }

        /* Teléfonos chicos: volver a 1 columna para legibilidad */
        @media (max-width: 520px) {
            .stats-card { grid-template-columns: 1fr; }
            .bento-grid { grid-template-columns: 1fr; }
            .item-kids, .item-teens, .item-adults, .item-business { height: 300px; }
            .value-grid { grid-template-columns: 1fr; }
            .form-grid { grid-template-columns: 1fr; }
            .field:nth-child(3),
            .field:nth-child(4) { grid-column: auto; }
            .feature-grid { grid-template-columns: 1fr; }
        }
