        :root {
            --verde-lima: #C0D72F;
            --celeste: #8BD1F3;
            --azul: #0183E8;
            --amarillo: #FCB439;
            --marron: #936C6B;
            --gris: #7A7A7A;
            --negro: #000000;
            --light-gray: #F5F5F5;
            --medium-gray: #E8E8E8;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            color: var(--gris);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Header/Navigation */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--azul);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-accent {
            width: 4px;
            height: 30px;
            background: var(--verde-lima);
            border-radius: 2px;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--gris);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--verde-lima);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

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

        .nav-cta {
            background: var(--azul);
            color: white !important;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--azul);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(1, 131, 232, 0.3);
        }

        .nav-cta::after {
            display: none;
        }

        /* Portal Colaboradores — botón secundario en nav */
        .nav-portal {
            background: transparent;
            color: #2F2F4F !important;
            border: 1.5px solid #2F2F4F;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 0.92rem;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .nav-portal:hover {
            background: #2F2F4F;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(47, 47, 79, 0.25);
        }

        .nav-portal::after { display: none; }

        .nav-portal i { font-size: 0.85em; opacity: 0.85; }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--azul);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                padding: 2rem;
                gap: 0;
                transition: left 0.3s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                width: 100%;
                border-bottom: 1px solid var(--medium-gray);
            }

            .nav-links a {
                display: block;
                padding: 1rem 0;
                font-size: 1.1rem;
            }

            .nav-cta {
                margin-top: 1rem;
                text-align: center;
            }
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            min-height: 90vh;
            background: linear-gradient(135deg, var(--azul) 0%, var(--celeste) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(192, 215, 47, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            opacity: 0.05;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .1) 35px, rgba(255, 255, 255, .1) 70px);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(192, 215, 47, 0.2);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(192, 215, 47, 0.3);
            animation: fadeInUp 0.6s ease 0.2s backwards;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            font-weight: 800;
            animation: fadeInUp 0.6s ease 0.4s backwards;
        }

        .hero-highlight {
            color: var(--verde-lima);
            position: relative;
            display: inline-block;
        }

        .hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 0.6s ease 0.6s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease 0.8s backwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: var(--verde-lima);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--marron);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(192, 215, 47, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            color: var(--verde-lima);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--marron);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gris);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 1.8rem;
            color: var(--marron);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: var(--gris);
            font-size: 1.1rem;
        }

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

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: var(--light-gray);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--azul);
            font-family: 'Poppins', sans-serif;
        }

        .stat-label {
            color: var(--gris);
            font-weight: 500;
            margin-top: 0.5rem;
        }

        /* Programs Section */
        .programs {
            padding: 6rem 2rem;
            background: #7A7A7A;
        }

        .programs .section-label {
            color: var(--amarillo);
        }

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

        .programs .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .program-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border-top: 4px solid var(--azul);
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--azul) 0%, var(--verde-lima) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .program-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--azul) 0%, var(--celeste) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .program-card h3 {
            font-size: 1.5rem;
            color: var(--marron);
            margin-bottom: 1rem;
        }

        .program-subtitle {
            color: var(--verde-lima);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .program-card p {
            color: var(--gris);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .program-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .program-features li {
            padding: 0.5rem 0;
            color: var(--gris);
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .program-features li::before {
            content: '✓';
            color: var(--azul);
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Experience Section */
        .experience {
            padding: 6rem 2rem;
            background: #0183E8;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .experience::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(192, 215, 47, 0.1) 0%, transparent 70%);
        }

        .experience .section-label {
            color: #FCB439;
        }

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

        .experience .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

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

        .experience-category {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .experience-category:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(192, 215, 47, 0.3);
            transform: translateY(-5px);
        }

        .experience-category h3 {
            color: #FCB439;
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
        }

        .experience-category ul {
            list-style: none;
        }

        .experience-category li {
            padding: 0.8rem 0;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .experience-category li::before {
            content: '▸';
            color: var(--celeste);
            font-weight: bold;
            flex-shrink: 0;
        }

        /* Social Impact */
        .social-impact {
            background: linear-gradient(135deg, var(--verde-lima) 0%, var(--marron) 100%);
            padding: 3rem;
            border-radius: 20px;
            margin-top: 3rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(192, 215, 47, 0.3);
        }

        .social-impact h3 {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .social-impact p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Projects Video Section */
        .projects-video {
            padding: 6rem 2rem;
            background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .video-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 177.78%;
            /* 9:16 aspect ratio for Shorts */
            height: 0;
            overflow: hidden;
            background: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-info {
            padding: 2rem;
        }

        .video-info h3 {
            color: var(--marron);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .video-info p {
            color: var(--gris);
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--azul) 0%, var(--celeste) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: var(--marron);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .contact-details p {
            color: var(--gris);
        }

        .contact-details a {
            color: var(--azul);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--verde-lima);
        }

        .contact-form {
            background: var(--light-gray);
            padding: 3rem;
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--marron);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--medium-gray);
            border-radius: 10px;
            font-family: 'Work Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--azul);
            box-shadow: 0 0 0 3px rgba(1, 131, 232, 0.1);
        }

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

        .btn-submit {
            width: 100%;
            background: var(--azul);
            color: var(--white);
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn-submit:hover {
            background: var(--azul);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(1, 131, 232, 0.3);
        }

        /* Footer */
        footer {
            background: #0183E8;
            color: var(--white);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-about h3 {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--verde-lima);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Accessibility Menu */
        .accessibility-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--azul);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 99999;
            transition: all 0.3s ease;
            border: 3px solid white;
        }

        body.high-contrast .accessibility-btn {
            background: #00FF00 !important;
            border: 5px solid #000 !important;
            box-shadow: 0 0 0 5px #00FF00, 0 0 0 10px #000, 0 0 50px 10px rgba(0, 255, 0, 1) !important;
            animation: pulse-accessibility 1s infinite !important;
            z-index: 999999 !important;
        }

        /* Agregar un círculo de fondo extra grande en alto contraste */
        body.high-contrast .accessibility-btn::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background: rgba(0, 255, 0, 0.4);
            border-radius: 50%;
            z-index: -1;
            animation: pulse-glow 1s infinite;
            border: 3px solid #000;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.4);
                opacity: 0.6;
            }
        }

        body.high-contrast .accessibility-btn {
            background: #FFD700 !important;
            border: 4px solid #000 !important;
            box-shadow: 0 0 0 4px #FFD700, 0 0 0 8px #000, 0 4px 20px rgba(255, 215, 0, 0.8) !important;
            animation: pulse-accessibility 2s infinite !important;
        }

        @keyframes pulse-accessibility {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 4px #00FF00, 0 0 0 8px #000, 0 4px 20px rgba(0, 255, 0, 0.8);
            }

            50% {
                transform: scale(1.1);
                box-shadow: 0 0 0 8px #00FF00, 0 0 0 16px #000, 0 4px 40px rgba(0, 255, 0, 1);
            }
        }

        .accessibility-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        .accessibility-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        body.high-contrast .accessibility-btn svg {
            fill: #000 !important;
            filter: drop-shadow(0 0 3px #00FF00);
        }

        .accessibility-menu {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 99998;
            display: none;
            min-width: 280px;
            border: 3px solid var(--azul);
        }

        body.high-contrast .accessibility-menu {
            background: #00FF00 !important;
            border: 5px solid #000 !important;
            box-shadow: 0 0 0 3px #00FF00, 0 0 0 8px #000, 0 10px 40px rgba(0, 0, 0, 0.8) !important;
        }

        body.high-contrast .accessibility-menu h3 {
            color: #000 !important;
            font-weight: 900 !important;
            text-shadow: 0 0 5px #00FF00;
        }

        body.high-contrast .accessibility-option {
            background: #FFF !important;
            border: 3px solid #000 !important;
            color: #000 !important;
            font-weight: 700 !important;
        }

        body.high-contrast .accessibility-option:hover {
            background: #FFFF00 !important;
            border: 4px solid #000 !important;
        }

        body.high-contrast .accessibility-option.active {
            background: #FFD700 !important;
            border: 4px solid #000 !important;
        }

        .accessibility-menu.active {
            display: block;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .accessibility-menu h3 {
            margin: 0 0 1rem 0;
            font-size: 1.2rem;
            color: var(--azul);
            font-weight: 700;
        }

        .accessibility-option {
            padding: 0.8rem;
            margin: 0.5rem 0;
            background: var(--light-gray);
            border: 2px solid transparent;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1rem;
        }

        .accessibility-option:hover {
            background: var(--celeste);
            border-color: var(--azul);
        }

        .accessibility-option.active {
            background: var(--verde-lima);
            border-color: var(--azul);
            font-weight: 600;
        }

        .accessibility-icon {
            font-size: 1.5rem;
        }

        /* Accessibility Modes */
        body.text-large {
            font-size: 18px;
        }

        body.text-large h1 {
            font-size: 4rem !important;
        }

        body.text-large h2 {
            font-size: 3rem !important;
        }

        body.text-large h3 {
            font-size: 2rem !important;
        }

        body.text-large p,
        body.text-large li,
        body.text-large a {
            font-size: 1.3rem !important;
        }

        body.text-xlarge {
            font-size: 20px;
        }

        body.text-xlarge h1 {
            font-size: 4.5rem !important;
        }

        body.text-xlarge h2 {
            font-size: 3.5rem !important;
        }

        body.text-xlarge h3 {
            font-size: 2.5rem !important;
        }

        body.text-xlarge p,
        body.text-xlarge li,
        body.text-xlarge a {
            font-size: 1.5rem !important;
        }

        body.text-bold * {
            font-weight: 600 !important;
        }

        body.high-contrast {
            filter: contrast(1.3);
        }

        /* Excluir el botón del filtro de alto contraste */
        body.high-contrast .accessibility-btn,
        body.high-contrast .accessibility-menu {
            filter: none !important;
        }

        body.high-contrast .hero {
            background: #000 !important;
        }

        body.high-contrast .programs {
            background: #000 !important;
        }

        @media (max-width: 768px) {
            .accessibility-btn {
                bottom: 20px;
                right: 20px;
                width: 70px;
                height: 70px;
            }

            body.high-contrast .accessibility-btn {
                width: 80px !important;
                height: 80px !important;
                background: #00FF00 !important;
                border: 6px solid #000 !important;
                box-shadow: 0 0 0 6px #00FF00, 0 0 0 12px #000, 0 0 50px 15px rgba(0, 255, 0, 1) !important;
            }

            body.high-contrast .accessibility-btn::after {
                content: 'VER';
                position: absolute;
                bottom: -25px;
                left: 50%;
                transform: translateX(-50%);
                background: #00FF00;
                color: #000;
                padding: 5px 12px;
                border-radius: 8px;
                font-size: 14px;
                font-weight: 900;
                border: 3px solid #000;
                white-space: nowrap;
            }

            .accessibility-menu {
                bottom: 110px;
                right: 20px;
                min-width: 250px;
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-grid,
            .contact-grid,
            .experience-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .videos-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== SISTEMA DE AGENDAMIENTO ===== */
        .agendar {
            padding: 6rem 2rem;
            background: linear-gradient(to bottom, var(--light-gray) 0%, var(--white) 100%);
        }

        .agendar .section-label {
            color: var(--azul);
        }

        .agendar .section-title {
            color: var(--marron);
        }

        .booking-wrapper {
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 10px 50px rgba(1, 131, 232, 0.12);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            margin-top: 3rem;
        }

        .booking-sidebar {
            background: linear-gradient(160deg, var(--azul) 0%, #0057a8 100%);
            padding: 3rem 2rem;
            color: white;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .booking-sidebar h3 {
            font-size: 1.6rem;
            color: white;
        }

        .booking-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        .booking-info-item .bi-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .booking-info-item strong {
            display: block;
            color: var(--verde-lima);
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .booking-region-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .region-tag {
            background: rgba(192, 215, 47, 0.2);
            border: 1px solid rgba(192, 215, 47, 0.5);
            color: var(--verde-lima);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
        }

        .booking-main {
            padding: 3rem;
        }

        /* Steps */
        .booking-steps {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2.5rem;
            align-items: center;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gris);
        }

        .step-item.active {
            color: var(--azul);
        }

        .step-item.done {
            color: var(--verde-lima);
        }

        .step-num {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--medium-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-item.active .step-num {
            background: var(--azul);
            border-color: var(--azul);
            color: white;
        }

        .step-item.done .step-num {
            background: var(--verde-lima);
            border-color: var(--verde-lima);
            color: white;
        }

        .step-divider {
            flex: 1;
            height: 2px;
            background: var(--medium-gray);
            border-radius: 2px;
        }

        .step-divider.done {
            background: var(--verde-lima);
        }

        /* Step panels */
        .booking-panel {
            display: none;
        }

        .booking-panel.active {
            display: block;
            animation: fadeInUp 0.4s ease;
        }

        /* Region selector */
        .region-select-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .region-card {
            border: 2px solid var(--medium-gray);
            border-radius: 12px;
            padding: 1rem;
            cursor: pointer;
            text-align: center;
            transition: all 0.25s ease;
            background: var(--light-gray);
        }

        .region-card:hover {
            border-color: var(--azul);
            background: rgba(1, 131, 232, 0.05);
            transform: translateY(-2px);
        }

        .region-card.selected {
            border-color: var(--azul);
            background: rgba(1, 131, 232, 0.08);
            box-shadow: 0 4px 15px rgba(1, 131, 232, 0.15);
        }

        .region-card .rc-num {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--azul);
            font-family: 'Poppins', sans-serif;
            line-height: 1;
        }

        .region-card .rc-name {
            font-size: 0.78rem;
            color: var(--gris);
            margin-top: 0.3rem;
            font-weight: 500;
        }

        /* Calendar */
        .cal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .cal-header h4 {
            color: var(--marron);
            font-size: 1.2rem;
            text-transform: capitalize;
        }

        .cal-nav-btn {
            width: 36px;
            height: 36px;
            border: 2px solid var(--medium-gray);
            background: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            color: var(--azul);
        }

        .cal-nav-btn:hover {
            background: var(--azul);
            color: white;
            border-color: var(--azul);
        }

        .cal-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
        }

        .cal-day-name {
            text-align: center;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--gris);
            padding: 0.4rem 0;
            text-transform: uppercase;
        }

        .cal-day {
            aspect-ratio: 1;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: default;
            transition: all 0.2s ease;
            color: var(--gris);
            border: 2px solid transparent;
        }

        .cal-day.empty {
            background: none;
        }

        .cal-day.disabled {
            color: var(--medium-gray);
            cursor: not-allowed;
        }

        .cal-day.past {
            color: var(--medium-gray);
            cursor: not-allowed;
            text-decoration: line-through;
        }

        .cal-day.available {
            background: rgba(1, 131, 232, 0.07);
            color: var(--azul);
            cursor: pointer;
            font-weight: 700;
            border-color: rgba(1, 131, 232, 0.2);
        }

        .cal-day.available:hover {
            background: var(--azul);
            color: white;
            border-color: var(--azul);
            transform: scale(1.1);
        }

        .cal-day.selected {
            background: var(--azul);
            color: white;
            border-color: var(--azul);
            transform: scale(1.1);
        }

        .cal-day.today {
            border-color: var(--verde-lima);
            font-weight: 800;
        }

        /* Time slots */
        .time-slots-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .time-slot {
            border: 2px solid var(--medium-gray);
            border-radius: 10px;
            padding: 0.8rem 0.5rem;
            text-align: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            color: var(--gris);
            background: var(--light-gray);
        }

        .time-slot:hover {
            border-color: var(--azul);
            background: rgba(1, 131, 232, 0.07);
            color: var(--azul);
        }

        .time-slot.selected {
            border-color: var(--azul);
            background: var(--azul);
            color: white;
        }

        /* Booking form */
        .booking-form .form-group label {
            font-size: 0.9rem;
        }

        .booking-form .form-group input,
        .booking-form .form-group select {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid var(--medium-gray);
            border-radius: 10px;
            font-family: 'Work Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .booking-form .form-group input:focus,
        .booking-form .form-group select:focus {
            outline: none;
            border-color: var(--azul);
            box-shadow: 0 0 0 3px rgba(1, 131, 232, 0.1);
        }

        .booking-summary-box {
            background: linear-gradient(135deg, rgba(1, 131, 232, 0.06) 0%, rgba(192, 215, 47, 0.06) 100%);
            border: 2px solid var(--medium-gray);
            border-radius: 14px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .booking-summary-box h4 {
            color: var(--azul);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .bsb-row {
            display: flex;
            gap: 0.8rem;
            align-items: center;
            padding: 0.4rem 0;
            font-size: 0.9rem;
            color: var(--gris);
        }

        .bsb-row .bsb-label {
            font-weight: 600;
            color: var(--marron);
            min-width: 80px;
        }

        .btn-booking {
            width: 100%;
            background: linear-gradient(135deg, var(--azul) 0%, #0057a8 100%);
            color: white;
            padding: 1.1rem;
            border: none;
            border-radius: 12px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn-booking:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(1, 131, 232, 0.35);
        }

        .btn-booking:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn-booking-outline {
            background: none;
            border: 2px solid var(--azul);
            color: var(--azul);
            padding: 0.9rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            margin-right: 0.5rem;
        }

        .btn-booking-outline:hover {
            background: var(--azul);
            color: white;
        }

        /* Confirmation */
        .booking-confirm {
            text-align: center;
            padding: 2rem 0;
        }

        .confirm-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--verde-lima) 0%, #8ab520 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            animation: popIn 0.5s ease;
        }

        @keyframes popIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }

            70% {
                transform: scale(1.15);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .booking-confirm h3 {
            color: var(--marron);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .booking-confirm p {
            color: var(--gris);
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }

        .confirm-details {
            background: var(--light-gray);
            border-radius: 14px;
            padding: 1.5rem;
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .confirm-details .bsb-row {
            border-bottom: 1px solid var(--medium-gray);
        }

        .confirm-details .bsb-row:last-child {
            border-bottom: none;
        }

        .btn-wsp {
            background: #25D366;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
            margin-bottom: 0.8rem;
        }

        .btn-wsp:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
        }

        .btn-nueva-hora {
            background: none;
            border: 2px solid var(--azul);
            color: var(--azul);
            padding: 0.9rem 2rem;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn-nueva-hora:hover {
            background: var(--azul);
            color: white;
        }

        .no-date-msg {
            text-align: center;
            color: var(--gris);
            padding: 2rem;
            font-size: 0.95rem;
            opacity: 0.7;
        }

        @media (max-width: 900px) {
            .booking-wrapper {
                grid-template-columns: 1fr;
            }

            .booking-sidebar {
                padding: 2rem;
            }

            .region-select-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .time-slots-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 600px) {
            .booking-main {
                padding: 1.5rem;
            }

            .region-select-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .time-slots-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .booking-steps {
                gap: 0.2rem;
            }

            .step-item span:not(.step-num) {
                display: none;
            }
        }

/* ============================================================
   PÁGINAS INTERNAS (SEO) — estilos compartidos para las páginas
   de programas y guías. Reusa las variables de marca de arriba.
   ============================================================ */

.page-hero {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--azul) 0%, var(--celeste) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem 4.5rem;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 40%, rgba(192, 215, 47, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 82% 90%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    display: block;
    max-width: none;
    padding: 0;
    margin: 0 0 1.2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a { color: #fff; text-decoration: none; opacity: 0.9; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.7; margin: 0 0.4rem; }
.page-hero .ph-badge {
    display: inline-block;
    background: rgba(192, 215, 47, 0.2);
    color: #fff;
    padding: 0.45rem 1.3rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    border: 2px solid rgba(192, 215, 47, 0.3);
}
.page-hero h1 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    max-width: 900px;
}
.page-hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.page-hero .hero-buttons { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* Cuerpo de contenido */
.content { padding: 4.5rem 2rem; background: var(--white); }
.content.alt { background: var(--light-gray); }
.prose { max-width: 820px; margin: 0 auto; }
.prose.wide { max-width: 1080px; }
.prose h2 {
    font-size: 2rem;
    color: var(--marron);
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-size: 1.35rem;
    color: var(--azul);
    margin: 2rem 0 0.8rem;
}
.prose p { color: var(--gris); font-size: 1.1rem; line-height: 1.85; margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 0 0 1.4rem 1.3rem; }
.prose li { color: var(--gris); font-size: 1.08rem; line-height: 1.7; margin-bottom: 0.6rem; }
.prose strong { color: var(--marron); }
.prose a { color: var(--azul); font-weight: 600; }
.prose .lead { font-size: 1.25rem; color: #5a5a5a; line-height: 1.8; }

/* Etiqueta de decreto */
.pill {
    display: inline-block;
    background: rgba(1, 131, 232, 0.1);
    color: var(--azul);
    border: 1px solid rgba(1, 131, 232, 0.25);
    padding: 0.25rem 0.85rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Callout — gancho "sin costo para tu familia" */
.callout {
    background: rgba(192, 215, 47, 0.12);
    border-left: 5px solid var(--verde-lima);
    border-radius: 0 12px 12px 0;
    padding: 1.4rem 1.6rem;
    margin: 2rem 0;
}
.callout p { margin: 0; color: var(--marron); font-size: 1.1rem; line-height: 1.7; }
.callout strong { color: var(--marron); }

/* Tarjetas de información (subprogramas, requisitos, beneficios) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 1rem;
}
.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--azul);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content.alt .info-card { background: #fff; }
.info-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); }
.info-card .ic-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--azul) 0%, var(--celeste) 100%);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem; margin-bottom: 1.2rem;
}
.info-card h3 { font-size: 1.25rem; color: var(--marron); margin-bottom: 0.7rem; }
.info-card p { color: var(--gris); line-height: 1.7; font-size: 1rem; }

/* Acordeón FAQ — usa <details>/<summary>, sin JS */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq summary {
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--marron);
    font-size: 1.08rem;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem; top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem; color: var(--azul); font-weight: 400;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details[open] summary { color: var(--azul); }
.faq .faq-body { padding: 0 1.5rem 1.4rem; }
.faq .faq-body p { color: var(--gris); line-height: 1.8; margin: 0; }

/* Banda CTA al pie de cada página */
.cta-band {
    background: linear-gradient(135deg, var(--azul) 0%, var(--celeste) 100%);
    padding: 4.5rem 2rem;
    text-align: center;
}
.cta-band h2 { font-size: 2.2rem; color: #fff; margin-bottom: 1rem; }
.cta-band p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.92); max-width: 640px; margin: 0 auto 2rem; line-height: 1.7; }

/* Grilla de programas (página índice) — reusa .program-card */
.prog-link { text-decoration: none; display: block; color: inherit; }

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .page-hero .lead { font-size: 1.1rem; }
    .prose h2 { font-size: 1.6rem; }
    .content { padding: 3rem 1.3rem; }
    .cta-band h2 { font-size: 1.7rem; }
}
