        /* ═══════════════════════════════════════════
           CSS VARIABLES - BRAND SYSTEM
           ═══════════════════════════════════════════ */
        :root {
            --blue-900: #002B5C;
            --blue-800: #003B7A;
            --blue-700: #004A98;
            --blue-600: #1565C0;
            --blue-500: #1E88E5;
            --blue-100: #DCEEFB;
            --blue-50: #EDF5FD;
            --gold-500: #D4A017;
            --gold-400: #E8B830;
            --gold-300: #F0CC5B;
            --white: #FFFFFF;
            --gray-50: #F8FAFB;
            --gray-100: #F1F4F8;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-400: #94A3B8;
            --gray-500: #64748B;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1E293B;
            --gray-900: #0F172A;
            --dark: #0A1628;
            --success: #16A34A;
            --error: #DC2626;
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --max-width: 1200px;
            --section-padding: clamp(4rem, 8vw, 7rem);
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* ═══════════════════════════════════════════
           RESET & BASE
           ═══════════════════════════════════════════ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            color: var(--gray-800);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        input,
        select,
        textarea {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 clamp(1.25rem, 4vw, 2rem);
        }

        /* ═══════════════════════════════════════════
           SCROLL REVEAL ANIMATIONS
           ═══════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        .reveal-delay-5 {
            transition-delay: 0.5s;
        }

        /* ═══════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s var(--ease-out-expo);
        }

        .nav.scrolled {
            background: rgba(0, 43, 92, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.6rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 clamp(1.25rem, 4vw, 2rem);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-logo-img {
            height: clamp(48px, 6vw, 72px);
            width: auto;
            transition: height 0.4s var(--ease-out-expo);
        }

        .nav.scrolled .nav-logo-img {
            height: clamp(36px, 5vw, 52px);
        }

        .nav-logo-icon {
            width: 44px;
            height: 44px;
            background: var(--gold-500);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-family: var(--font-display);
            color: var(--white);
            font-size: 1.1rem;
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 0.8rem;
            color: var(--white);
            line-height: 1.2;
            letter-spacing: 0.02em;
        }

        .nav-logo-text span {
            display: block;
            font-weight: 600;
            font-size: 0.65rem;
            opacity: 0.8;
            letter-spacing: 0.05em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s;
            letter-spacing: 0.01em;
        }

        .nav-links a:hover {
            color: var(--gold-400);
        }

        .nav-cta {
            background: var(--gold-500);
            color: var(--white) !important;
            padding: 0.6rem 1.5rem;
            border-radius: 100px;
            font-weight: 700 !important;
            font-size: 0.8rem !important;
            letter-spacing: 0.02em;
            transition: all 0.3s var(--ease-out-expo) !important;
        }

        .nav-cta:hover {
            background: var(--gold-400) !important;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            padding: 8px;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s var(--ease-out-expo);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 43, 92, 0.97);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            z-index: 999;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 2rem;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            transition: color 0.3s;
        }

        .mobile-menu a:hover {
            color: var(--gold-400);
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }

        /* ═══════════════════════════════════════════
           HERO
           ═══════════════════════════════════════════ */
        .hero {
            min-height: 100dvh;
            background-image:
                linear-gradient(135deg, rgba(0, 43, 92, 0.88) 0%, rgba(0, 59, 122, 0.82) 40%, rgba(0, 74, 152, 0.78) 100%),
                url('../assets/images/hero.jpg?v=2');
            background-size: auto, cover;
            background-position: center, center;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 70vw;
            height: 70vw;
            max-width: 800px;
            max-height: 800px;
            background: radial-gradient(circle, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            max-width: 600px;
            max-height: 600px;
            background: radial-gradient(circle, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
            padding-top: 6rem;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 100px;
            padding: 0.45rem 1.2rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gold-300);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .hero-eyebrow-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold-400);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 5.5vw, 4rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.08;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        .hero h1 .gold {
            color: var(--gold-400);
            font-style: italic;
        }

        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 540px;
            font-weight: 400;
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--gold-500);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            padding: 1rem 2rem;
            border-radius: 100px;
            letter-spacing: 0.02em;
            transition: all 0.35s var(--ease-out-expo);
            box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
        }

        .btn-primary:hover {
            background: var(--gold-400);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
        }

        .btn-primary svg {
            transition: transform 0.3s var(--ease-out-expo);
        }

        .btn-primary:hover svg {
            transform: translateX(3px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 1rem 2rem;
            border-radius: 100px;
            letter-spacing: 0.02em;
            transition: all 0.35s var(--ease-out-expo);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        .hero-date {
            margin-top: 3rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: fit-content;
        }

        .hero-date-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(212, 160, 23, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-date-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .hero-date-text strong {
            display: block;
            color: var(--white);
            font-weight: 700;
            font-size: 0.95rem;
        }

        /* ═══════════════════════════════════════════
           SECTION BASE STYLES
           ═══════════════════════════════════════════ */
        .section {
            padding: var(--section-padding) 0;
        }

        .section-alt {
            background: var(--gray-50);
        }

        .section-blue {
            background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
            color: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3.5rem;
        }

        .section-eyebrow {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--blue-600);
            margin-bottom: 0.8rem;
        }

        .section-blue .section-eyebrow {
            color: var(--gold-400);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            color: var(--blue-900);
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-blue .section-title {
            color: var(--white);
        }

        .section-title .gold {
            color: var(--gold-500);
        }

        .section-desc {
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            color: var(--gray-500);
            line-height: 1.7;
        }

        .section-blue .section-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        /* ═══════════════════════════════════════════
           QUÉ ES - SECTION 2
           ═══════════════════════════════════════════ */
        .que-es-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .que-es-text h2 {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 800;
            color: var(--blue-900);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .que-es-text h2 .gold {
            color: var(--gold-500);
        }

        .que-es-text p {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .que-es-visual {
            position: relative;
        }

        .que-es-card {
            background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .que-es-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 59, 122, 0.08), transparent);
            border-radius: 50%;
        }

        .que-es-card-icon {
            width: 64px;
            height: 64px;
            background: var(--blue-800);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .que-es-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--blue-900);
            margin-bottom: 0.8rem;
        }

        .que-es-card p {
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        .stat-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.2rem;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--blue-800);
        }

        .stat-label {
            font-size: 0.7rem;
            color: var(--gray-500);
            font-weight: 500;
            margin-top: 0.2rem;
        }

        @media (max-width: 768px) {
            .que-es-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stat-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.8rem;
            }
        }

        /* ═══════════════════════════════════════════
           POR QUÉ ES IMPORTANTE - SECTION 3
           ═══════════════════════════════════════════ */
        .importancia-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .importancia-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            border: 1px solid var(--gray-200);
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }

        .importancia-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold-500);
            transform: scaleX(0);
            transition: transform 0.4s var(--ease-out-expo);
        }

        .importancia-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            border-color: transparent;
        }

        .importancia-card:hover::before {
            transform: scaleX(1);
        }

        .importancia-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--blue-50);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
        }

        .importancia-card h3 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--blue-900);
            margin-bottom: 0.6rem;
            line-height: 1.3;
        }

        .importancia-card p {
            font-size: 0.85rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            .importancia-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .importancia-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ═══════════════════════════════════════════
           QUIÉNES PARTICIPAN - SECTION 4
           ═══════════════════════════════════════════ */
        .participan-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.2rem;
        }

        .participan-card {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s var(--ease-out-expo);
        }

        .participan-card:hover {
            background: rgba(255, 255, 255, 0.14);
            transform: translateY(-4px);
            border-color: var(--gold-500);
        }

        .participan-emoji {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .participan-card h3 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.4rem;
        }

        .participan-card p {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .participan-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 500px) {
            .participan-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ═══════════════════════════════════════════
           CÓMO PARTICIPAR - SECTION 5
           ═══════════════════════════════════════════ */
        .como-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .como-step {
            text-align: center;
            padding: 2.5rem 2rem;
            border-radius: 24px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            position: relative;
        }

        .como-step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--blue-800);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
        }

        .como-step h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--blue-900);
            margin-bottom: 0.6rem;
        }

        .como-step p {
            font-size: 0.88rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .como-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* ═══════════════════════════════════════════
           EJES - SECTION 6
           ═══════════════════════════════════════════ */
        .ejes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .eje-card {
            padding: 2rem;
            border-radius: 20px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            transition: all 0.4s var(--ease-out-expo);
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .eje-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border-color: var(--blue-500);
        }

        .eje-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: var(--blue-50);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .eje-card h3 {
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--blue-900);
            margin-bottom: 0.3rem;
            line-height: 1.3;
        }

        .eje-card p {
            font-size: 0.8rem;
            color: var(--gray-500);
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .ejes-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ═══════════════════════════════════════════
           AGENDA - SECTION 7
           ═══════════════════════════════════════════ */
        .agenda-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .agenda-info h3 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--blue-900);
            margin-bottom: 0.8rem;
        }

        .agenda-info p {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .agenda-types {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .agenda-type {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--gray-200);
        }

        .agenda-type-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 10px;
            background: var(--blue-50);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .agenda-type h4 {
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--blue-900);
        }

        .agenda-type p {
            font-size: 0.78rem;
            color: var(--gray-500);
        }

        @media (max-width: 768px) {
            .agenda-content {
                grid-template-columns: 1fr;
            }
        }

        /* ═══════════════════════════════════════════
           VIDEO - SECTION 8
           ═══════════════════════════════════════════ */
        .video-wrapper {
            max-width: 800px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 16/9;
            background: var(--gray-100);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
            color: var(--white);
            gap: 1rem;
        }

        .video-play-btn {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--gold-500);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
            transition: all 0.3s var(--ease-out-expo);
        }

        .video-play-btn:hover {
            transform: scale(1.1);
        }

        .video-quote {
            text-align: center;
            margin-top: 2rem;
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 600;
            font-style: italic;
            color: var(--blue-900);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-quote .gold {
            color: var(--gold-500);
        }

        /* ═══════════════════════════════════════════
           QUÉ PASARÁ - SECTION 9
           ═══════════════════════════════════════════ */
        .resultados-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .resultado-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--gray-200);
        }

        .resultado-check {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 50%;
            background: var(--blue-50);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .resultado-item p {
            font-size: 0.92rem;
            color: var(--gray-700);
            line-height: 1.6;
        }

        @media (max-width: 600px) {
            .resultados-list {
                grid-template-columns: 1fr;
            }
        }

        /* ═══════════════════════════════════════════
           TESTIMONIOS - SECTION 10
           ═══════════════════════════════════════════ */
        .testimonios-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .testimonio-card {
            padding: 2rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .testimonio-quote {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonio-author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .testimonio-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonio-name {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--white);
        }

        .testimonio-role {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            .testimonios-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ═══════════════════════════════════════════
           FORMULARIO - SECTION 11
           ═══════════════════════════════════════════ */
        .form-section {
            background: var(--gray-50);
        }

        .form-container {
            max-width: 720px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 28px;
            padding: clamp(2rem, 5vw, 3.5rem);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--gray-200);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-700);
            letter-spacing: 0.01em;
        }

        .form-group label .required {
            color: var(--error);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1.5px solid var(--gray-200);
            border-radius: 12px;
            font-size: 0.9rem;
            color: var(--gray-800);
            background: var(--white);
            transition: all 0.3s;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--blue-600);
            box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
        }

        .form-group input.error,
        .form-group select.error,
        .form-group textarea.error {
            border-color: var(--error);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .char-count {
            font-size: 0.75rem;
            color: var(--gray-400);
            text-align: right;
        }

        .char-count.warning {
            color: var(--gold-500);
        }

        .char-count.over {
            color: var(--error);
        }

        .form-error-msg {
            font-size: 0.75rem;
            color: var(--error);
            display: none;
        }

        .form-submit-wrapper {
            margin-top: 1.5rem;
            text-align: center;
        }

        .btn-submit {
            width: 100%;
            padding: 1.1rem 2rem;
            background: var(--blue-800);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            border-radius: 14px;
            letter-spacing: 0.02em;
            transition: all 0.35s var(--ease-out-expo);
        }

        .btn-submit:hover {
            background: var(--blue-700);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 59, 122, 0.3);
        }

        .btn-submit:disabled {
            background: var(--gray-300);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Form success state */
        .form-success {
            display: none;
            text-align: center;
            padding: 3rem 2rem;
        }

        .form-success.active {
            display: block;
        }

        .form-success-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(22, 163, 74, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .form-success h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--blue-900);
            margin-bottom: 0.8rem;
        }

        .form-success p {
            font-size: 0.95rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        @media (max-width: 600px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ═══════════════════════════════════════════
           FAQ - SECTION 12
           ═══════════════════════════════════════════ */
        .faq-list {
            max-width: 720px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .faq-item {
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item.active {
            border-color: var(--blue-500);
            box-shadow: 0 4px 20px rgba(21, 101, 192, 0.08);
        }

        .faq-question {
            width: 100%;
            padding: 1.3rem 1.5rem;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--blue-900);
            text-align: left;
        }

        .faq-question svg {
            min-width: 20px;
            transition: transform 0.3s var(--ease-out-expo);
        }

        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-out-expo);
        }

        .faq-answer-inner {
            padding: 0 1.5rem 1.3rem;
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════
           CTA FINAL
           ═══════════════════════════════════════════ */
        .cta-final {
            text-align: center;
            padding: var(--section-padding) 0;
            background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
            position: relative;
            overflow: hidden;
        }

        .cta-final::before {
            content: '';
            position: absolute;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 120%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(212, 160, 23, 0.08), transparent 70%);
            pointer-events: none;
        }

        .cta-final h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4.5vw, 3rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1rem;
            position: relative;
        }

        .cta-final h2 .gold {
            color: var(--gold-400);
        }

        .cta-final p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 2.5rem;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .cta-final .btn-primary {
            font-size: 1.05rem;
            padding: 1.1rem 2.5rem;
            position: relative;
        }

        /* ═══════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════ */
        .footer {
            background: var(--dark);
            padding: 3.5rem 0 2rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
            margin-top: 1rem;
            max-width: 340px;
        }

        .footer-logo-wrap {
            margin-bottom: 1rem;
        }

        .footer-logo-img {
            height: 70px;
            width: auto;
            max-width: 100%;
        }

        @media (max-width: 768px) {
            .nav-logo-img {
                height: 44px;
            }

            .footer-logo-img {
                height: 55px;
            }
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.6rem;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--gold-400);
        }

        .footer-social {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            margin-bottom: 0;
        }

        .footer-social a:hover {
            background: var(--gold-500);
            border-color: var(--gold-500);
        }

        .footer-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            padding: 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 1.5rem;
        }

        .footer-inst-logo {
            padding: 0.6rem 1.2rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            font-family: var(--font-display);
            font-size: 0.65rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-align: center;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-bottom p {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* ═══════════════════════════════════════════
           UTILITY CLASSES
           ═══════════════════════════════════════════ */
        .text-center {
            text-align: center;
        }

        .mt-2 {
            margin-top: 2rem;
        }

        .mb-2 {
            margin-bottom: 2rem;
        }

        /* ===== CALENDARIO DE EVENTOS (acordeón) ===== */
        .calendario-wrap {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s ease;
            margin-top: 0;
        }

        .calendario-wrap.abierto {
            max-height: 2000px;
            margin-top: 2.5rem;
        }

        .calendario-inner {
            padding-top: 0.5rem;
        }

        .calendario-aviso {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: var(--blue-50);
            border: 1px solid var(--blue-100);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            margin-bottom: 1.75rem;
            color: var(--blue-800);
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .calendario-aviso svg {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .calendario-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .evento-card {
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 14px;
            padding: 1.4rem 1.25rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .evento-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(0, 43, 92, 0.10);
        }

        .evento-card.pendiente {
            border-left: 4px solid var(--gold-400);
        }

        .evento-region {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--blue-900);
            margin-bottom: 0.4rem;
        }

        .evento-fecha {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gold-500);
            margin-bottom: 0.3rem;
        }

        .evento-tipo {
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        @media (max-width: 768px) {
            .calendario-grid {
                grid-template-columns: 1fr;
                gap: 0.85rem;
            }

            .calendario-aviso {
                font-size: 0.88rem;
                padding: 0.9rem 1rem;
            }

            .evento-card {
                padding: 1.15rem 1rem;
            }
        }