
        :root {
            --white: #ffffff;
            --ink: #171719;
            --muted: #707178;
            --muted-light: #98999e;
            --line: rgba(23, 23, 25, 0.11);
            --line-strong: rgba(23, 23, 25, 0.18);
            --blue: #0869df;
            --blue-hover: #005ccb;
            --violet: #6f54e8;
            --orange: #f25f27;
            --radius-xl: 34px;
            --radius-lg: 28px;
            --radius-md: 18px;
            --content-max: 1180px;
            --page-gutter: clamp(18px, 4vw, 46px);
            --shadow-soft: 0 24px 70px rgba(23, 23, 25, 0.08);
            --shadow-card: 0 18px 50px rgba(23, 23, 25, 0.075);
            --shadow-hover: 0 32px 84px rgba(23, 23, 25, 0.15);
            --ease: cubic-bezier(0.22, 1, 0.36, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            color-scheme: light;
            scrollbar-gutter: stable;
        }

        body {
            margin: 0;
            overflow-x: clip;
            background: var(--white);
            color: var(--ink);
            font-family:
                -apple-system,
                BlinkMacSystemFont,
                "SF Pro Display",
                "SF Pro Text",
                "Segoe UI",
                Roboto,
                Helvetica,
                Arial,
                sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body.menu-open {
            overflow: hidden;
        }

        ::selection {
            background: rgba(8, 105, 223, 0.16);
        }

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

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

        button,
        summary {
            font: inherit;
        }

        button {
            border: 0;
        }

        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        h1,
        h2,
        h3,
        p {
            margin-top: 0;
            overflow-wrap: anywhere;
        }

        button,
        a,
        summary {
            -webkit-tap-highlight-color: transparent;
        }

        a:focus-visible,
        button:focus-visible,
        summary:focus-visible {
            outline: 3px solid rgba(8, 105, 223, 0.34);
            outline-offset: 4px;
            border-radius: 10px;
        }

        .skip-link {
            position: fixed;
            top: -80px;
            left: 18px;
            z-index: 10000;
            padding: 11px 18px;
            border-radius: 999px;
            background: var(--ink);
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
            transition: top 0.25s ease;
        }

        .skip-link:focus {
            top: 16px;
        }

        /* =====================================================
           NAVEGACIÓN
           ===================================================== */

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px var(--page-gutter) 0;
            pointer-events: none;
            transition: padding 0.3s var(--ease);
        }

        .site-header.is-scrolled {
            padding-top: 6px;
        }

        .nav-shell {
            display: flex;
            width: min(100%, var(--content-max));
            min-height: 58px;
            margin: 0 auto;
            padding: 8px 10px 8px 16px;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.84);
            box-shadow: 0 12px 38px rgba(24, 28, 36, 0.08);
            backdrop-filter: blur(22px) saturate(170%);
            -webkit-backdrop-filter: blur(22px) saturate(170%);
            pointer-events: auto;
            transition:
                min-height 0.3s var(--ease),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
        }

        .site-header.is-scrolled .nav-shell {
            min-height: 52px;
            border-color: rgba(23, 23, 25, 0.10);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 14px 42px rgba(24, 28, 36, 0.11);
        }

        .brand {
            display: inline-flex;
            min-width: 0;
            align-items: center;
            gap: 10px;
            font-size: 17px;
            font-weight: 760;
            letter-spacing: -0.02em;
        }

        .brand img {
            flex: 0 0 auto;
            width: 34px;
            height: 34px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links > li > a,
        .nav-dropdown > summary {
            display: flex;
            min-height: 38px;
            padding: 0 13px;
            align-items: center;
            border-radius: 11px;
            color: #55565b;
            font-size: 13px;
            font-weight: 560;
            cursor: pointer;
            list-style: none;
            transition:
                color 0.22s ease,
                background 0.22s ease,
                transform 0.22s ease;
        }

        .nav-links > li > a:hover,
        .nav-dropdown > summary:hover,
        .nav-dropdown[open] > summary {
            background: rgba(23, 23, 25, 0.055);
            color: var(--ink);
        }

        .nav-dropdown.is-current > summary {
            background: rgba(8, 105, 223, 0.08);
            color: var(--blue);
        }

        .nav-links .nav-cta {
            position: relative;
            margin-left: 3px;
            overflow: hidden;
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 12px 26px rgba(8, 105, 223, 0.24);
        }

        .nav-links .nav-cta:hover {
            background: var(--blue-hover);
            color: var(--white);
            box-shadow: 0 18px 36px rgba(8, 105, 223, 0.32);
            transform: translateY(-2px);
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > summary::-webkit-details-marker {
            display: none;
        }

        .nav-dropdown > summary::after {
            content: "";
            width: 6px;
            height: 6px;
            margin-left: 7px;
            border-right: 1.5px solid currentColor;
            border-bottom: 1.5px solid currentColor;
            transform: translateY(-2px) rotate(45deg);
            transition: transform 0.22s ease;
        }

        .nav-dropdown[open] > summary::after {
            transform: translateY(2px) rotate(225deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            display: grid;
            min-width: 230px;
            gap: 3px;
            padding: 9px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 22px 60px rgba(23, 23, 25, 0.14);
            transform: translateX(-50%);
            animation: menu-in 0.28s var(--ease) both;
        }

        .dropdown-menu a {
            display: block;
            padding: 11px 12px;
            border-radius: 10px;
            color: #4e4f54;
            font-size: 13px;
            transition:
                color 0.2s ease,
                background 0.2s ease,
                transform 0.2s ease;
        }

        .dropdown-menu a:hover {
            background: rgba(8, 105, 223, 0.07);
            color: var(--blue);
            transform: translateX(3px);
        }

        .menu-toggle {
            display: none;
            width: 42px;
            height: 42px;
            padding: 0;
            border-radius: 12px;
            background: transparent;
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 19px;
            height: 1.5px;
            margin: 5px auto;
            border-radius: 99px;
            background: var(--ink);
            transition: transform 0.3s var(--ease);
        }

        .menu-toggle.is-open span:first-child {
            transform: translateY(3.25px) rotate(45deg);
        }

        .menu-toggle.is-open span:last-child {
            transform: translateY(-3.25px) rotate(-45deg);
        }

        /* =====================================================
           ESTRUCTURA Y BOTONES
           ===================================================== */

        .site-frame {
            width: min(
                100%,
                calc(var(--content-max) + (var(--page-gutter) * 2))
            );
            margin: 0 auto;
            padding: clamp(28px, 5vw, 58px) var(--page-gutter) 0;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: var(--blue);
            font-size: 13px;
            font-weight: 750;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .button {
            position: relative;
            display: inline-flex;
            min-height: 48px;
            padding: 0 22px;
            align-items: center;
            justify-content: center;
            gap: 10px;
            overflow: hidden;
            border: 1px solid transparent;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 680;
            letter-spacing: -0.01em;
            transition:
                transform 0.32s var(--ease),
                box-shadow 0.32s var(--ease),
                background 0.25s ease,
                border-color 0.25s ease,
                color 0.25s ease;
        }

        .button::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -45%;
            width: 28%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.45),
                transparent
            );
            transform: rotate(20deg);
            transition: left 0.7s var(--ease);
        }

        .button:hover {
            transform: translateY(-3px);
        }

        .button:hover::before {
            left: 125%;
        }

        .button-primary {
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 12px 26px rgba(8, 105, 223, 0.24);
        }

        .button-primary:hover {
            background: var(--blue-hover);
            box-shadow: 0 18px 36px rgba(8, 105, 223, 0.32);
        }

        .button-light {
            background: var(--white);
            color: var(--ink);
            box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
        }

        .button-light:hover {
            box-shadow: 0 22px 46px rgba(0, 0, 0, 0.27);
        }

        /* =====================================================
           CABECERA DE LA LANDING
           ===================================================== */

        .school-heading {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
            gap: clamp(42px, 7vw, 92px);
            align-items: end;
            padding: clamp(52px, 8vw, 94px) 0 clamp(42px, 6vw, 66px);
        }

        .school-heading h1 {
            max-width: 850px;
            margin: 15px 0 0;
            font-size: clamp(49px, 7vw, 84px);
            line-height: 0.96;
            letter-spacing: -0.058em;
            text-wrap: balance;
        }

        .school-heading h1 span {
            display: block;
            background: linear-gradient(
                100deg,
                var(--blue),
                var(--violet) 64%,
                var(--orange)
            );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .school-heading-copy {
            display: grid;
            justify-items: start;
            gap: 25px;
        }

        .school-heading-copy p {
            max-width: 520px;
            margin: 0;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.7;
            text-wrap: pretty;
        }

        /* =====================================================
           TRES ÁREAS FORMATIVAS
           ===================================================== */

        .school-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .school-card {
            --card-accent: 8, 105, 223;
            position: relative;
            display: flex;
            min-width: 0;
            overflow: hidden;
            flex-direction: column;
            border: 1px solid rgba(23, 23, 25, 0.10);
            border-radius: 30px;
            background:
                radial-gradient(
                    circle at 92% 8%,
                    rgba(var(--card-accent), 0.11),
                    transparent 33%
                ),
                var(--white);
            box-shadow:
                0 22px 64px rgba(23, 23, 25, 0.085),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            transition:
                transform 0.5s var(--ease),
                border-color 0.3s ease,
                box-shadow 0.5s var(--ease);
        }

        .school-card-dance {
            --card-accent: 111, 84, 232;
        }

        .school-card-theatre {
            --card-accent: 242, 95, 39;
        }

        .school-card:hover {
            border-color: rgba(var(--card-accent), 0.30);
            box-shadow:
                0 34px 88px rgba(23, 23, 25, 0.15),
                0 10px 32px rgba(var(--card-accent), 0.08);
            transform: translateY(-9px);
        }

        .school-card-media {
            position: relative;
            height: 290px;
            margin: 0;
            overflow: hidden;
            background: #eaf0f8;
        }

        .school-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition:
                transform 1s var(--ease),
                filter 0.75s ease;
        }

        .school-card-music .school-card-media img {
            object-position: center;
        }

        .school-card-dance .school-card-media img {
            object-position: center 35%;
        }

        .school-card-theatre .school-card-media img {
            object-position: center 42%;
        }

        .school-card:hover .school-card-media img {
            filter: saturate(1.08) contrast(1.03);
            transform: scale(1.065);
        }

        .school-card-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    to top,
                    rgba(5, 8, 14, 0.50),
                    transparent 58%
                ),
                linear-gradient(
                    135deg,
                    rgba(var(--card-accent), 0.14),
                    transparent 46%
                );
        }

        .school-card-number {
            position: absolute;
            top: 18px;
            right: 18px;
            display: grid;
            min-width: 43px;
            height: 43px;
            padding: 0 10px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 999px;
            background: rgba(5, 8, 14, 0.30);
            color: var(--white);
            font-size: 10px;
            font-weight: 760;
            letter-spacing: 0.05em;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .school-card-body {
            display: flex;
            min-height: 370px;
            padding: clamp(27px, 3.5vw, 37px);
            flex: 1;
            flex-direction: column;
            align-items: flex-start;
        }

        .school-card-kicker {
            display: inline-flex;
            margin-bottom: 16px;
            padding: 7px 10px;
            border: 1px solid rgba(var(--card-accent), 0.13);
            border-radius: 999px;
            background: rgba(var(--card-accent), 0.08);
            color: rgb(var(--card-accent));
            font-size: 9px;
            font-weight: 780;
            letter-spacing: 0.075em;
            text-transform: uppercase;
        }

        .school-card h2 {
            max-width: 14ch;
            margin: 0 0 16px;
            font-size: clamp(31px, 3.3vw, 43px);
            line-height: 0.99;
            letter-spacing: -0.048em;
        }

        .school-card p {
            max-width: 48ch;
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.72;
            text-wrap: pretty;
        }

        .school-card-actions {
            display: grid;
            width: 100%;
            gap: 14px;
            margin-top: auto;
            padding-top: 29px;
        }

        .school-card-actions .button {
            width: 100%;
            min-height: 48px;
            padding-inline: 18px;
            font-size: 13px;
        }

        .school-card-link {
            display: inline-flex;
            align-self: center;
            align-items: center;
            gap: 7px;
            color: rgb(var(--card-accent));
            font-size: 12px;
            font-weight: 720;
        }

        .school-card-link span {
            transition: transform 0.24s ease;
        }

        .school-card-link:hover span {
            transform: translateX(4px);
        }

        /* =====================================================
           CTA DE MATRÍCULA
           ===================================================== */

        .school-enrolment {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: clamp(34px, 7vw, 86px);
            align-items: center;
            margin-top: clamp(54px, 7vw, 84px);
            padding: clamp(38px, 6vw, 67px);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 32px;
            background:
                radial-gradient(
                    circle at 8% 12%,
                    rgba(8, 105, 223, 0.42),
                    transparent 32%
                ),
                radial-gradient(
                    circle at 94% 100%,
                    rgba(111, 84, 232, 0.32),
                    transparent 34%
                ),
                linear-gradient(135deg, #0a1020 0%, #111827 58%, #090c15 100%);
            box-shadow:
                0 34px 88px rgba(8, 13, 25, 0.24),
                inset 0 1px 0 rgba(255, 255, 255, 0.09);
            color: var(--white);
            isolation: isolate;
        }

        .school-enrolment::before {
            content: "";
            position: absolute;
            top: -220px;
            right: 24%;
            width: 470px;
            height: 470px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            box-shadow:
                0 0 0 70px rgba(255, 255, 255, 0.014),
                0 0 0 140px rgba(255, 255, 255, 0.009);
            pointer-events: none;
        }

        .school-enrolment-copy {
            position: relative;
            z-index: 2;
            max-width: 740px;
        }

        .school-enrolment .section-kicker {
            color: rgba(255, 255, 255, 0.70);
        }

        .school-enrolment h2 {
            max-width: 760px;
            margin: 15px 0 20px;
            color: var(--white);
            font-size: clamp(39px, 5.5vw, 63px);
            line-height: 0.98;
            letter-spacing: -0.052em;
            text-wrap: balance;
        }

        .school-enrolment p {
            max-width: 660px;
            margin: 0;
            color: rgba(255, 255, 255, 0.68);
            font-size: 15px;
            line-height: 1.7;
        }

        .school-enrolment-actions {
            position: relative;
            z-index: 2;
            display: grid;
            min-width: 235px;
            gap: 12px;
        }

        .school-enrolment-actions .button {
            width: 100%;
        }

        /* =====================================================
           AGENDA CULTURAL
           ===================================================== */

        .agenda-feature {
            position: relative;
            min-height: clamp(570px, 68vw, 735px);
            margin: clamp(92px, 11vw, 140px) 0 74px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--radius-xl);
            background: #080b12;
            box-shadow:
                0 34px 90px rgba(8, 13, 24, 0.22),
                0 0 0 1px rgba(8, 105, 223, 0.08);
            isolation: isolate;
        }

        .agenda-image,
        .agenda-overlay,
        .agenda-glow {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .agenda-image {
            object-fit: cover;
            object-position: center;
            transform: scale(1.015);
            transition:
                transform 1.25s var(--ease),
                filter 1s ease;
        }

        .agenda-overlay {
            z-index: 1;
            background:
                linear-gradient(
                    90deg,
                    rgba(4, 7, 13, 0.95) 0%,
                    rgba(4, 7, 13, 0.80) 40%,
                    rgba(4, 7, 13, 0.31) 70%,
                    rgba(4, 7, 13, 0.16) 100%
                ),
                linear-gradient(
                    to top,
                    rgba(4, 7, 13, 0.76),
                    transparent 58%
                );
        }

        .agenda-glow {
            z-index: 2;
            background:
                radial-gradient(
                    520px circle at 24% 50%,
                    rgba(8, 105, 223, 0.24),
                    transparent 62%
                ),
                linear-gradient(
                    135deg,
                    rgba(8, 105, 223, 0.14),
                    transparent 38%
                );
            pointer-events: none;
        }

        .agenda-content {
            position: relative;
            z-index: 4;
            display: flex;
            min-height: clamp(570px, 68vw, 735px);
            max-width: 760px;
            padding: clamp(52px, 8vw, 94px);
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            color: var(--white);
        }

        .agenda-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 13px;
            font-weight: 760;
            letter-spacing: 0.075em;
            text-transform: uppercase;
        }

        .agenda-kicker::before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--blue);
            box-shadow:
                0 0 0 7px rgba(8, 105, 223, 0.18),
                0 0 28px rgba(8, 105, 223, 0.72);
        }

        .agenda-content h2 {
            max-width: 720px;
            margin: 0;
            color: var(--white);
            font-size: clamp(48px, 7vw, 82px);
            line-height: 0.98;
            letter-spacing: -0.055em;
            text-wrap: balance;
        }

        .agenda-content p {
            max-width: 640px;
            margin: 28px 0 34px;
            color: rgba(255, 255, 255, 0.73);
            font-size: clamp(17px, 2vw, 20px);
            line-height: 1.62;
            text-wrap: pretty;
        }

        .agenda-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            z-index: 5;
            display: inline-flex;
            padding: 11px 15px;
            align-items: center;
            gap: 9px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 999px;
            background: rgba(8, 11, 18, 0.54);
            color: rgba(255, 255, 255, 0.82);
            font-size: 12px;
            font-weight: 680;
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
        }

        .agenda-badge::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #3bd37f;
            box-shadow: 0 0 0 6px rgba(59, 211, 127, 0.13);
        }

        .agenda-feature:hover .agenda-image {
            filter: saturate(1.08) contrast(1.03);
            transform: scale(1.06);
        }

        /* =====================================================
           FOOTER CLARO
           ===================================================== */

        .premium-footer {
            padding: 0 var(--page-gutter) 26px;
        }

        .footer-shell {
            position: relative;
            width: min(100%, var(--content-max));
            margin: 0 auto;
            padding: clamp(38px, 5vw, 63px);
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.14);
            border-radius: var(--radius-xl);
            background:
                radial-gradient(
                    circle at 8% 12%,
                    rgba(8, 105, 223, 0.10),
                    transparent 28%
                ),
                radial-gradient(
                    circle at 94% 90%,
                    rgba(111, 84, 232, 0.07),
                    transparent 30%
                ),
                linear-gradient(135deg, #f8fbff 0%, #ffffff 54%, #faf9ff 100%);
            box-shadow:
                0 26px 74px rgba(23, 23, 25, 0.09),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }

        .footer-top {
            display: grid;
            grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
            gap: clamp(50px, 8vw, 108px);
            align-items: start;
        }

        .footer-intro {
            max-width: 440px;
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 13px;
        }

        .footer-logo {
            display: grid;
            width: 52px;
            height: 52px;
            flex: 0 0 auto;
            place-items: center;
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.15);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 12px 28px rgba(23, 23, 25, 0.07);
        }

        .footer-logo img {
            width: 42px;
            height: 42px;
            object-fit: contain;
        }

        .footer-brand > span:last-child {
            display: grid;
            gap: 2px;
        }

        .footer-brand strong {
            font-size: 18px;
            letter-spacing: -0.025em;
        }

        .footer-brand small {
            color: var(--muted);
            font-size: 11px;
            font-weight: 580;
        }

        .footer-intro > p {
            max-width: 390px;
            margin: 26px 0 30px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.72;
        }

        .footer-agenda {
            display: flex;
            max-width: 400px;
            padding: 17px 18px;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border: 1px solid rgba(8, 105, 223, 0.20);
            border-radius: 18px;
            background:
                linear-gradient(
                    135deg,
                    rgba(8, 105, 223, 0.09),
                    rgba(255, 255, 255, 0.92)
                );
            box-shadow: 0 14px 34px rgba(23, 23, 25, 0.055);
            font-size: 14px;
            font-weight: 690;
            transition:
                transform 0.34s var(--ease),
                border-color 0.25s ease,
                box-shadow 0.34s var(--ease);
        }

        .footer-agenda:hover {
            border-color: rgba(8, 105, 223, 0.42);
            box-shadow: 0 20px 44px rgba(8, 105, 223, 0.11);
            transform: translateY(-4px);
        }

        .footer-agenda small {
            display: block;
            margin-bottom: 3px;
            color: var(--blue);
            font-size: 10px;
            font-weight: 750;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .footer-arrow {
            display: grid;
            width: 37px;
            height: 37px;
            flex: 0 0 auto;
            place-items: center;
            border-radius: 50%;
            background: var(--blue);
            box-shadow: 0 10px 24px rgba(8, 105, 223, 0.22);
            color: var(--white);
        }

        .footer-navigation {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(28px, 5vw, 62px);
        }

        .footer-column h2 {
            margin: 0 0 21px;
            color: var(--blue);
            font-size: 11px;
            font-weight: 760;
            letter-spacing: 0.085em;
            text-transform: uppercase;
        }

        .footer-column ul {
            display: grid;
            gap: 12px;
        }

        .footer-column a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #575960;
            font-size: 13px;
            font-weight: 570;
            line-height: 1.4;
            transition:
                color 0.23s ease,
                transform 0.26s var(--ease);
        }

        .footer-column a:hover {
            color: var(--blue);
            transform: translateX(3px);
        }

        .footer-column a span {
            color: rgba(8, 105, 223, 0.70);
            font-size: 9px;
            font-weight: 780;
        }

        .footer-contact {
            display: inline-flex;
            min-width: 136px;
            margin-top: 25px;
            padding: 12px 15px;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            border: 1px solid rgba(8, 105, 223, 0.18);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.84);
            box-shadow: 0 10px 26px rgba(23, 23, 25, 0.05);
            color: var(--blue);
            font-size: 12px;
            font-weight: 680;
        }

        .footer-divider {
            height: 1px;
            margin: clamp(40px, 6vw, 62px) 0 24px;
            background: rgba(23, 23, 25, 0.09);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .footer-bottom > p {
            margin: 0;
            color: var(--muted-light);
            font-size: 10px;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 19px;
        }

        .footer-bottom-links > a,
        .photo-credits > summary {
            color: #6d6e73;
            font-size: 10px;
            font-weight: 610;
            cursor: pointer;
        }

        .photo-credits {
            position: relative;
        }

        .photo-credits > summary {
            list-style: none;
        }

        .photo-credits > summary::-webkit-details-marker {
            display: none;
        }

        .credits-panel {
            position: absolute;
            right: 0;
            bottom: calc(100% + 14px);
            width: min(300px, 82vw);
            padding: 14px 16px;
            border: 1px solid rgba(8, 105, 223, 0.14);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 18px 46px rgba(23, 23, 25, 0.13);
        }

        .credits-panel p {
            margin: 0;
            color: var(--muted);
            font-size: 10px;
            line-height: 1.6;
        }

        .back-to-top {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .back-to-top span {
            display: grid;
            width: 25px;
            height: 25px;
            place-items: center;
            border: 1px solid rgba(8, 105, 223, 0.16);
            border-radius: 50%;
            background: var(--white);
            color: var(--blue);
        }

        /* =====================================================
           ANIMACIONES
           ===================================================== */

        @keyframes menu-in {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-8px) scale(0.97);
            }

            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0) scale(1);
            }
        }

        .js [data-reveal] {
            opacity: 0;
            transform: translateY(30px) scale(0.99);
            transition:
                opacity 0.86s var(--ease),
                transform 0.86s var(--ease);
        }

        .js [data-reveal].is-visible {
            opacity: 1;
            transform: none;
        }

        .school-grid [data-reveal]:nth-child(2) {
            transition-delay: 0.08s;
        }

        .school-grid [data-reveal]:nth-child(3) {
            transition-delay: 0.16s;
        }

        /* =====================================================
           RESPONSIVE
           ===================================================== */

        @media (hover: hover) and (pointer: fine) and (min-width: 821px) {
            .nav-dropdown {
                padding-bottom: 12px;
                margin-bottom: -12px;
            }
        }

        @media (max-width: 980px) {
            .school-heading {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .school-heading-copy {
                max-width: 680px;
            }

            .school-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .school-card:last-child {
                grid-column: 1 / -1;
                display: grid;
                grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
            }

            .school-card:last-child .school-card-media {
                height: auto;
                min-height: 390px;
            }

            .school-card:last-child .school-card-body {
                min-height: 390px;
            }

            .school-enrolment {
                grid-template-columns: 1fr;
            }

            .school-enrolment-actions {
                min-width: 0;
                max-width: 335px;
            }

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

            .footer-intro {
                max-width: 620px;
            }
        }

        @media (max-width: 820px) {
            .site-header {
                padding-top: 8px;
            }

            .nav-shell {
                flex-wrap: wrap;
                max-height: calc(100svh - 18px);
                overflow-y: auto;
                overscroll-behavior: contain;
            }

            .menu-toggle {
                display: block;
                margin-left: auto;
            }

            .nav-links {
                display: none;
                flex: 0 0 100%;
                width: 100%;
                padding: 9px 0 6px;
                align-items: stretch;
                flex-direction: column;
                gap: 2px;
            }

            .nav-links.is-open {
                display: flex;
            }

            .nav-links > li > a,
            .nav-dropdown > summary {
                width: 100%;
                min-height: 44px;
                justify-content: space-between;
                padding: 0 11px;
                font-size: 14px;
            }

            .nav-links .nav-cta {
                margin: 4px 0 0;
                justify-content: center;
            }

            .dropdown-menu {
                position: static;
                min-width: 0;
                margin: 2px 0 7px 11px;
                padding: 4px 0 4px 9px;
                border: 0;
                border-left: 2px solid rgba(8, 105, 223, 0.15);
                border-radius: 0;
                box-shadow: none;
                transform: none;
                animation: none;
            }

            .agenda-feature {
                min-height: 640px;
            }

            .agenda-content {
                min-height: 640px;
                max-width: 100%;
                padding: 50px 36px;
                justify-content: flex-end;
            }

            .agenda-overlay {
                background: linear-gradient(
                    to top,
                    rgba(4, 7, 13, 0.97) 2%,
                    rgba(4, 7, 13, 0.76) 46%,
                    rgba(4, 7, 13, 0.20) 100%
                );
            }

            .footer-navigation {
                grid-template-columns: 1fr 1fr;
                gap: 36px 24px;
            }

            .footer-column:last-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 720px) {
            .site-frame {
                padding-top: 16px;
            }

            .school-heading {
                padding-top: 52px;
            }

            .school-heading h1 {
                font-size: clamp(46px, 12vw, 66px);
            }

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

            .school-card:last-child {
                grid-column: auto;
                display: flex;
            }

            .school-card-media,
            .school-card:last-child .school-card-media {
                height: 270px;
                min-height: 0;
            }

            .school-card-body,
            .school-card:last-child .school-card-body {
                min-height: 0;
            }
        }

        @media (max-width: 620px) {
            :root {
                --radius-xl: 26px;
                --radius-lg: 23px;
            }

            .school-heading-copy .button,
            .school-card-actions .button,
            .school-enrolment-actions .button,
            .agenda-content .button {
                width: 100%;
            }

            .school-card {
                border-radius: 25px;
            }

            .school-card-media {
                height: 235px;
            }

            .school-card-body {
                padding: 25px 21px 27px;
            }

            .school-card h2 {
                font-size: 35px;
            }

            .school-enrolment {
                padding: 34px 22px;
                border-radius: 26px;
            }

            .school-enrolment h2 {
                font-size: 41px;
            }

            .school-enrolment-actions {
                max-width: none;
            }

            .agenda-feature {
                min-height: 610px;
                margin-bottom: 56px;
            }

            .agenda-content {
                min-height: 610px;
                padding: 39px 24px;
            }

            .agenda-content h2 {
                font-size: clamp(44px, 12vw, 61px);
            }

            .agenda-badge {
                top: 20px;
                right: 20px;
            }

            .premium-footer {
                padding-right: 14px;
                padding-left: 14px;
            }

            .footer-shell {
                padding: 32px 23px 24px;
                border-radius: 26px;
            }

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

            .footer-column:last-child {
                grid-column: auto;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: flex-start;
            }

            .credits-panel {
                right: auto;
                left: 0;
            }
        }

        @media (hover: none) {
            .button:hover,
            .school-card:hover,
            .footer-agenda:hover {
                transform: none;
            }

            .button::before {
                display: none;
            }

            .school-card:hover .school-card-media img,
            .agenda-feature:hover .agenda-image {
                filter: none;
                transform: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .js [data-reveal] {
                opacity: 1;
                transform: none;
            }
        }
    

:root{--content-max:1180px;--music-content-max:1180px;--page-gutter:clamp(18px,4vw,46px);--music-gutter:clamp(18px,4vw,46px);--blue:#0869df;--music-blue:#0869df;--blue-hover:#005ccb;--music-blue-hover:#005ccb}
.site-frame,.page-frame,.music-page-frame{max-width:none!important;margin-left:auto!important;margin-right:auto!important}
.music-page-frame,.page-frame{padding-left:clamp(18px,4vw,46px)!important;padding-right:clamp(18px,4vw,46px)!important}
.music-hero,.premium-hero,.school-grid,.specialties-section,.pricing-section{font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Helvetica Neue","Segoe UI",Arial,sans-serif!important}
