
        /* =========================================================
           ESCUELA DE MÚSICA · ARCHIVO AUTÓNOMO
           HTML + CSS + JS en un único documento
           ========================================================= */

        :root {
            --white: #ffffff;
            --ink: #171719;
            --muted: #71737a;
            --muted-light: #989aa0;
            --line: rgba(23, 23, 25, 0.11);
            --line-strong: rgba(23, 23, 25, 0.18);
            --blue: #0869df;
            --blue-hover: #005ccb;
            --orange: #f25f27;
            --violet: #6f54e8;
            --green: #35b873;
            --radius-xl: 34px;
            --radius-lg: 26px;
            --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.07);
            --shadow-hover: 0 30px 80px rgba(23, 23, 25, 0.14);
            --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;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            line-height: 1.5;
        }

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

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

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

        button,
        summary {
            font: inherit;
        }

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

        ul,
        ol,
        dl,
        dd {
            margin: 0;
            padding: 0;
        }

        ul,
        ol {
            list-style: none;
        }

        h1,
        h2,
        h3,
        p,
        figure {
            margin-top: 0;
        }

        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 global
           ------------------------- */

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

        .nav-shell {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: min(100%, var(--content-max));
            min-height: 58px;
            margin: 0 auto;
            padding: 8px 10px 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.75);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.86);
            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;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--ink);
            font-size: 17px;
            font-weight: 760;
            letter-spacing: -0.02em;
        }

        .brand-mark,
        .footer-brand-mark {
            position: relative;
            display: grid;
            flex: 0 0 auto;
            place-items: center;
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.14);
            background: #ffffff;
            color: var(--blue);
            box-shadow: 0 8px 20px rgba(23, 23, 25, 0.07);
        }

        .brand-mark {
            width: 36px;
            height: 36px;
            border-radius: 11px;
        }

        .footer-brand-mark {
            width: 52px;
            height: 52px;
            border-radius: 16px;
        }

        .brand-mark img,
        .footer-brand-mark img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .brand-mark.has-image img,
        .footer-brand-mark.has-image img {
            opacity: 1;
        }

        .brand-mark.has-image svg,
        .footer-brand-mark.has-image svg {
            opacity: 0;
        }

        .brand-mark svg {
            width: 22px;
            height: 22px;
        }

        .footer-brand-mark svg {
            width: 31px;
            height: 31px;
        }

        .brand-mark svg,
        .footer-brand-mark svg {
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: opacity 0.25s ease;
        }

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

        .nav-links > li > a,
        .nav-dropdown > summary {
            display: flex;
            align-items: center;
            min-height: 38px;
            padding: 0 13px;
            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 {
            color: var(--ink);
            background: rgba(23, 23, 25, 0.055);
        }

        .nav-links a[aria-current="page"] {
            color: var(--blue);
            background: rgba(8, 105, 223, 0.08);
        }

        .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::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);
        }

        .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-links .nav-cta:hover::before {
            left: 125%;
        }

        .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% + 12px);
            left: 50%;
            min-width: 230px;
            padding: 9px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.985);
            box-shadow: 0 22px 60px rgba(23, 23, 25, 0.14);
            transform: translateX(-50%);
            animation: menuIn 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,
        .dropdown-menu a[aria-current="page"] {
            color: var(--ink);
            background: rgba(8, 105, 223, 0.07);
            transform: translateX(3px);
        }

        .menu-toggle {
            display: none;
            width: 42px;
            height: 42px;
            padding: 0;
            border: 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);
        }

        /* -------------------------
           Utilidades
           ------------------------- */

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

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

        .eyebrow > span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--orange);
            box-shadow: 0 0 0 6px rgba(242, 95, 39, 0.12);
        }

        .button {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 22px;
            overflow: hidden;
            border: 1px solid transparent;
            border-radius: 999px;
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 12px 26px rgba(8, 105, 223, 0.24);
            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;
        }

        .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 {
            background: var(--blue-hover);
            box-shadow: 0 18px 36px rgba(8, 105, 223, 0.32);
            transform: translateY(-3px);
        }

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

        /* -------------------------
           Hero
           ------------------------- */

        .music-hero {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
            gap: clamp(38px, 6vw, 82px);
            align-items: center;
            min-height: 690px;
            padding: clamp(48px, 7vw, 88px);
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius-xl);
            background:
                radial-gradient(circle at 14% 18%, rgba(8, 105, 223, 0.09), transparent 27%),
                radial-gradient(circle at 50% 90%, rgba(111, 84, 232, 0.07), transparent 30%),
                var(--white);
            box-shadow: var(--shadow-soft);
        }

        .music-hero::before {
            content: "";
            position: absolute;
            top: -180px;
            left: 38%;
            width: 440px;
            height: 440px;
            border: 1px solid rgba(8, 105, 223, 0.1);
            border-radius: 50%;
            box-shadow:
                0 0 0 65px rgba(8, 105, 223, 0.025),
                0 0 0 130px rgba(8, 105, 223, 0.016);
            pointer-events: none;
        }

        .hero-copy {
            position: relative;
            z-index: 2;
        }

        .music-hero h1 {
            max-width: 680px;
            margin: 22px 0 24px;
            color: var(--ink);
            font-size: clamp(48px, 6vw, 78px);
            line-height: 0.98;
            letter-spacing: -0.055em;
            text-wrap: balance;
        }

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

        .hero-copy > p {
            max-width: 620px;
            margin-bottom: 32px;
            color: var(--muted);
            font-size: clamp(18px, 2vw, 21px);
            line-height: 1.58;
            letter-spacing: -0.015em;
            text-wrap: pretty;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 38px;
        }

        .hero-highlights li {
            padding: 9px 13px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            box-shadow: 0 8px 22px rgba(23, 23, 25, 0.035);
            color: #5c5d62;
            font-size: 12px;
            font-weight: 650;
        }

        .hero-visual {
            position: relative;
            min-height: 520px;
            margin: 0;
            isolation: isolate;
        }

        .hero-visual::before {
            content: "";
            position: absolute;
            inset: 8% -6% -5% 10%;
            z-index: -1;
            border-radius: 50%;
            background: linear-gradient(
                135deg,
                rgba(8, 105, 223, 0.22),
                rgba(111, 84, 232, 0.18),
                rgba(242, 95, 39, 0.14)
            );
            filter: blur(38px);
        }

        .hero-visual > img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            object-position: center;
            border-radius: 30px;
            box-shadow: 0 32px 80px rgba(13, 18, 29, 0.22);
            transform: rotate(1.1deg);
            transition:
                transform 0.9s var(--ease),
                filter 0.8s ease;
        }

        .music-hero:hover .hero-visual > img {
            transform: rotate(0deg) scale(1.015);
            filter: saturate(1.05) contrast(1.02);
        }

        .floating-card {
            position: absolute;
            left: -34px;
            bottom: 36px;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 265px;
            padding: 14px 16px;
            border: 1px solid rgba(255, 255, 255, 0.56);
            border-radius: 17px;
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 18px 48px rgba(11, 17, 28, 0.18);
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            color: #5d5e63;
            font-size: 11px;
            line-height: 1.4;
            animation: floatCard 6s ease-in-out infinite;
        }

        .floating-card strong {
            display: block;
            color: var(--ink);
            font-size: 13px;
        }

        .floating-icon {
            display: grid;
            flex: 0 0 auto;
            width: 38px;
            height: 38px;
            place-items: center;
            border-radius: 50%;
            background: rgba(8, 105, 223, 0.11);
            color: var(--blue);
            font-size: 20px;
            font-weight: 800;
        }

        .hero-seal {
            position: absolute;
            top: 28px;
            right: -22px;
            z-index: 3;
            display: grid;
            width: 112px;
            height: 112px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            background: rgba(8, 105, 223, 0.92);
            box-shadow: 0 18px 48px rgba(8, 105, 223, 0.28);
            color: #ffffff;
            text-align: center;
            transform: rotate(7deg);
        }

        .hero-seal span,
        .hero-seal small {
            font-size: 9px;
            font-weight: 720;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .hero-seal strong {
            margin: -12px 0;
            font-size: 30px;
            letter-spacing: -0.06em;
        }

        /* -------------------------
           Secciones
           ------------------------- */

        .section-block {
            padding: clamp(94px, 11vw, 148px) 0;
        }

        .section-heading {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
            gap: 56px;
            align-items: end;
            margin-bottom: 48px;
        }

        .section-heading h2,
        .rates-copy h2,
        .support-copy h2,
        .enrolment-content h2 {
            margin: 13px 0 0;
            color: var(--ink);
            font-size: clamp(40px, 5vw, 62px);
            line-height: 1.02;
            letter-spacing: -0.047em;
            text-wrap: balance;
        }

        .section-heading p {
            max-width: 530px;
            margin: 0;
            justify-self: end;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.65;
            text-wrap: pretty;
        }

        /* -------------------------
           Especialidades
           ------------------------- */

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

        .specialty-card {
            position: relative;
            min-height: 350px;
            padding: 30px;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: #ffffff;
            box-shadow: var(--shadow-card);
            transition:
                transform 0.5s var(--ease),
                box-shadow 0.5s var(--ease),
                border-color 0.3s ease;
        }

        .specialty-card::after {
            content: "";
            position: absolute;
            right: -90px;
            bottom: -100px;
            width: 190px;
            height: 190px;
            border-radius: 50%;
            background: radial-gradient(
                circle,
                rgba(8, 105, 223, 0.08),
                transparent 68%
            );
            transition: transform 0.6s var(--ease);
        }

        .specialty-card:hover {
            border-color: rgba(8, 105, 223, 0.22);
            box-shadow: var(--shadow-hover);
            transform: translateY(-9px);
        }

        .specialty-card:hover::after {
            transform: scale(1.35);
        }

        .specialty-number {
            position: absolute;
            top: 24px;
            right: 25px;
            color: rgba(23, 23, 25, 0.2);
            font-size: 12px;
            font-weight: 760;
        }

        .specialty-icon {
            display: grid;
            width: 54px;
            height: 54px;
            margin-bottom: 46px;
            place-items: center;
            border-radius: 17px;
            background: rgba(8, 105, 223, 0.09);
            color: var(--blue);
            transition:
                transform 0.45s var(--ease),
                background 0.3s ease,
                color 0.3s ease;
        }

        .specialty-icon svg {
            width: 29px;
            height: 29px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .specialty-card:hover .specialty-icon {
            background: var(--blue);
            color: #ffffff;
            transform: rotate(-4deg) scale(1.07);
        }

        .specialty-card h3 {
            position: relative;
            z-index: 2;
            margin: 0 0 15px;
            color: var(--ink);
            font-size: 24px;
            line-height: 1.08;
            letter-spacing: -0.035em;
        }

        .specialty-card p {
            position: relative;
            z-index: 2;
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.72;
        }

        .specialty-featured {
            grid-column: span 2;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(230px, 0.76fr);
            gap: 30px;
            min-height: 390px;
            padding: 0;
            background:
                radial-gradient(circle at 100% 0%, rgba(8, 105, 223, 0.16), transparent 35%),
                linear-gradient(135deg, #f4f8ff 0%, #ffffff 64%);
            border-color: rgba(8, 105, 223, 0.2);
        }

        .featured-copy {
            padding: 30px;
        }

        .featured-label {
            display: inline-flex;
            margin: 0 0 32px;
            padding: 7px 10px;
            border-radius: 999px;
            background: var(--blue);
            color: #ffffff;
            font-size: 10px;
            font-weight: 760;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .featured-media {
            position: relative;
            min-height: 390px;
            overflow: hidden;
        }

        .featured-media img {
            width: 100%;
            height: 100%;
            min-height: 390px;
            object-fit: cover;
            filter: saturate(0.92);
            transition:
                transform 0.9s var(--ease),
                filter 0.6s ease;
        }

        .specialty-featured:hover .featured-media img {
            transform: scale(1.06);
            filter: saturate(1.05);
        }

        .featured-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                rgba(244, 248, 255, 0.4),
                transparent 34%
            );
        }

        .specialty-link {
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 24px;
            color: var(--blue);
            font-size: 14px;
            font-weight: 720;
        }

        .specialty-link span {
            transition: transform 0.25s ease;
        }

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

        .specialty-wide {
            grid-column: span 2;
            display: grid;
            grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
            gap: 0;
            min-height: 300px;
            padding: 0;
        }

        .specialty-wide-media {
            position: relative;
            min-height: 300px;
            overflow: hidden;
        }

        .specialty-wide-media img {
            width: 100%;
            height: 100%;
            min-height: 300px;
            object-fit: cover;
            transition: transform 0.9s var(--ease);
        }

        .specialty-wide:hover .specialty-wide-media img {
            transform: scale(1.06);
        }

        .specialty-wide-copy {
            align-self: center;
            padding: 34px;
        }

        .specialty-wide .specialty-icon {
            margin-bottom: 32px;
        }

        /* -------------------------
           Socios
           ------------------------- */

        .member-banner {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 25px;
            align-items: center;
            padding: clamp(28px, 4vw, 42px);
            border: 1px solid rgba(242, 95, 39, 0.22);
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 0% 50%, rgba(242, 95, 39, 0.1), transparent 28%),
                linear-gradient(135deg, #fff9f5, #ffffff);
            box-shadow: var(--shadow-card);
        }

        .member-icon {
            display: grid;
            width: 64px;
            height: 64px;
            place-items: center;
            border-radius: 20px;
            background: rgba(242, 95, 39, 0.11);
            color: var(--orange);
        }

        .member-icon svg {
            width: 35px;
            height: 35px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .member-copy span {
            color: var(--orange);
            font-size: 11px;
            font-weight: 760;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .member-copy h2 {
            margin: 6px 0 7px;
            color: var(--ink);
            font-size: clamp(28px, 4vw, 42px);
            line-height: 1.05;
            letter-spacing: -0.04em;
        }

        .member-copy p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
        }

        /* -------------------------
           Tarifas
           ------------------------- */

        .rates-section {
            padding-bottom: 34px;
        }

        .rates-card {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 38px;
            align-items: center;
            padding: clamp(42px, 7vw, 74px);
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.16);
            border-radius: var(--radius-xl);
            background:
                radial-gradient(circle at 10% 0%, rgba(8, 105, 223, 0.12), transparent 32%),
                linear-gradient(135deg, #f6f9ff, #ffffff);
            box-shadow: var(--shadow-card);
        }

        .rates-copy {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .rates-copy p {
            max-width: 600px;
            margin: 23px 0 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.66;
        }

        .rates-decoration {
            position: absolute;
            right: 9%;
            bottom: -95px;
            color: rgba(8, 105, 223, 0.06);
            font-size: 260px;
            font-weight: 800;
            line-height: 1;
            transform: rotate(-8deg);
            pointer-events: none;
        }

        /* -------------------------
           Dudas
           ------------------------- */

        .support-section {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
            gap: 18px;
            margin-top: 34px;
        }

        .support-copy-card,
        .support-image-card {
            min-height: 410px;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
        }

        .support-copy-card {
            display: flex;
            padding: clamp(38px, 6vw, 64px);
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            background: #ffffff;
        }

        .support-copy-card p {
            max-width: 690px;
            margin: 22px 0 31px;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.7;
        }

        .support-image-card {
            position: relative;
        }

        .support-image-card img {
            width: 100%;
            height: 100%;
            min-height: 410px;
            object-fit: cover;
            transition: transform 1s var(--ease);
        }

        .support-image-card:hover img {
            transform: scale(1.05);
        }

        .support-image-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(4, 7, 13, 0.44),
                transparent 56%
            );
        }

        .support-image-label {
            position: absolute;
            right: 22px;
            bottom: 22px;
            left: 22px;
            z-index: 2;
            padding: 14px 15px;
            border: 1px solid rgba(255, 255, 255, 0.32);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            color: var(--ink);
            font-size: 12px;
            font-weight: 680;
        }

        /* -------------------------
           Matrícula
           ------------------------- */

        .enrolment-cta {
            position: relative;
            min-height: 610px;
            margin: clamp(94px, 11vw, 148px) 0 74px;
            overflow: hidden;
            border-radius: var(--radius-xl);
            background: #080b12;
            box-shadow: var(--shadow-soft);
            isolation: isolate;
        }

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

        .enrolment-image {
            object-fit: cover;
            object-position: center;
            transition:
                transform 1.3s var(--ease),
                filter 1s ease;
        }

        .enrolment-cta:hover .enrolment-image {
            transform: scale(1.045);
            filter: saturate(1.08);
        }

        .enrolment-overlay {
            background:
                linear-gradient(
                    90deg,
                    rgba(5, 8, 14, 0.94) 0%,
                    rgba(5, 8, 14, 0.77) 48%,
                    rgba(5, 8, 14, 0.24) 100%
                ),
                linear-gradient(
                    to top,
                    rgba(5, 8, 14, 0.62),
                    transparent 58%
                );
        }

        .enrolment-content {
            position: relative;
            z-index: 2;
            display: flex;
            min-height: 610px;
            max-width: 760px;
            padding: clamp(52px, 8vw, 96px);
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            color: #ffffff;
        }

        .enrolment-content .section-kicker {
            color: rgba(255, 255, 255, 0.72);
        }

        .enrolment-content h2 {
            color: #ffffff;
        }

        .enrolment-content p {
            max-width: 660px;
            margin: 24px 0 31px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 17px;
            line-height: 1.65;
        }

        /* -------------------------
           Footer claro
           ------------------------- */

        .site-footer {
            padding: 0 var(--page-gutter) 26px;
            background: #ffffff;
        }

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

        .footer-top {
            display: grid;
            grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
            gap: clamp(52px, 8vw, 112px);
        }

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

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

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

        .footer-brand strong {
            color: var(--ink);
            font-size: 18px;
            letter-spacing: -0.025em;
        }

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

        .footer-intro > p {
            margin: 25px 0 29px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.72;
        }

        .footer-agenda {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 17px 18px;
            border: 1px solid rgba(8, 105, 223, 0.2);
            border-radius: 18px;
            background: linear-gradient(
                135deg,
                rgba(8, 105, 223, 0.09),
                rgba(255, 255, 255, 0.94)
            );
            color: var(--ink);
            font-size: 14px;
            font-weight: 690;
            transition:
                transform 0.35s var(--ease),
                box-shadow 0.35s var(--ease);
        }

        .footer-agenda:hover {
            box-shadow: 0 18px 42px rgba(8, 105, 223, 0.1);
            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-agenda > span:last-child {
            display: grid;
            width: 36px;
            height: 36px;
            place-items: center;
            border-radius: 50%;
            background: var(--blue);
            color: #ffffff;
        }

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

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

        .footer-navigation ul {
            display: grid;
            gap: 13px;
        }

        .footer-navigation a {
            display: inline-flex;
            color: #575960;
            font-size: 13px;
            font-weight: 570;
            transition:
                color 0.24s ease,
                transform 0.28s var(--ease);
        }

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

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-top: clamp(42px, 6vw, 66px);
            padding-top: 24px;
            border-top: 1px solid var(--line);
        }

        .footer-bottom p,
        .footer-bottom a,
        .photo-credits summary {
            margin: 0;
            color: var(--muted);
            font-size: 10px;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .photo-credits {
            position: relative;
        }

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

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

        .credits-panel {
            position: absolute;
            right: 0;
            bottom: calc(100% + 14px);
            width: min(330px, 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 {
            color: var(--muted);
            font-size: 10px;
            line-height: 1.6;
        }

        .credits-panel a {
            color: var(--blue);
            text-decoration: underline;
        }

        .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: #ffffff;
            color: var(--blue);
        }

        /* -------------------------
           Animaciones
           ------------------------- */

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

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

        @keyframes floatCard {
            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-9px);
            }
        }

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

        .js [data-reveal].is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

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

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

        .specialties-grid [data-reveal]:nth-child(4) {
            transition-delay: 0.18s;
        }

        .specialties-grid [data-reveal]:nth-child(5) {
            transition-delay: 0.24s;
        }

        .specialties-grid [data-reveal]:nth-child(6) {
            transition-delay: 0.3s;
        }

        .specialties-grid [data-reveal]:nth-child(7) {
            transition-delay: 0.36s;
        }

        /* Hover del menú en escritorio */
        @media (hover: hover) and (pointer: fine) and (min-width: 821px) {
            .nav-dropdown {
                padding-bottom: 13px;
                margin-bottom: -13px;
            }

            .dropdown-menu {
                top: calc(100% + 1px);
            }
        }

        /* -------------------------
           Responsive
           ------------------------- */

        @media (max-width: 1050px) {
            .music-hero {
                grid-template-columns: 1fr 0.92fr;
                padding: 58px 44px;
            }

            .hero-visual,
            .hero-visual > img {
                min-height: 470px;
                height: 470px;
            }

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

            .specialty-featured,
            .specialty-wide {
                grid-column: span 2;
            }

            .section-heading p {
                justify-self: start;
            }
        }

        @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;
                animation: mobileMenuIn 0.34s var(--ease) both;
            }

            .nav-links > li > a,
            .nav-dropdown > summary {
                justify-content: space-between;
                width: 100%;
                min-height: 44px;
                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;
            }

            .music-hero {
                grid-template-columns: 1fr;
                min-height: 0;
                padding: 56px 38px 38px;
            }

            .hero-visual {
                margin-top: 12px;
            }

            .hero-seal {
                right: 18px;
            }

            .floating-card {
                left: 18px;
            }

            .section-heading {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .member-banner {
                grid-template-columns: auto 1fr;
            }

            .member-banner .button {
                grid-column: 1 / -1;
                width: 100%;
            }

            .rates-card,
            .support-section {
                grid-template-columns: 1fr;
            }

            .rates-card .button {
                width: 100%;
            }

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

        @keyframes mobileMenuIn {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }

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

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

            .page-frame {
                padding-top: 18px;
            }

            .brand span:last-child {
                font-size: 15px;
            }

            .music-hero {
                padding: 44px 24px 24px;
                border-radius: 27px;
            }

            .music-hero h1 {
                font-size: clamp(43px, 13vw, 60px);
            }

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

            .hero-actions .button {
                width: 100%;
            }

            .hero-visual,
            .hero-visual > img {
                min-height: 380px;
                height: 380px;
            }

            .floating-card {
                max-width: 205px;
                padding: 11px 12px;
            }

            .hero-seal {
                top: 19px;
                width: 92px;
                height: 92px;
            }

            .section-block {
                padding: 88px 0;
            }

            .section-heading h2,
            .rates-copy h2,
            .support-copy h2,
            .enrolment-content h2 {
                font-size: 42px;
            }

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

            .specialty-featured,
            .specialty-wide {
                grid-column: auto;
            }

            .specialty-featured,
            .specialty-wide {
                grid-template-columns: 1fr;
            }

            .featured-media {
                min-height: 280px;
                order: -1;
            }

            .featured-media img {
                min-height: 280px;
            }

            .specialty-wide-media,
            .specialty-wide-media img {
                min-height: 280px;
            }

            .member-banner {
                grid-template-columns: 1fr;
            }

            .rates-card,
            .support-copy-card {
                padding: 38px 24px;
            }

            .enrolment-cta,
            .enrolment-content {
                min-height: 610px;
            }

            .enrolment-content {
                justify-content: flex-end;
                padding: 40px 25px;
            }

            .enrolment-overlay {
                background: linear-gradient(
                    to top,
                    rgba(5, 8, 14, 0.97) 3%,
                    rgba(5, 8, 14, 0.63) 60%,
                    rgba(5, 8, 14, 0.15)
                );
            }

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

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

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

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

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

            .footer-bottom-links {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 430px) {
            .site-header,
            .page-frame {
                padding-right: 14px;
                padding-left: 14px;
            }

            .music-hero {
                padding-right: 20px;
                padding-left: 20px;
            }

            .hero-visual,
            .hero-visual > img {
                min-height: 330px;
                height: 330px;
            }

            .floating-card {
                right: 10px;
                left: 10px;
                max-width: none;
            }

            .hero-seal {
                display: none;
            }

            .specialty-card {
                min-height: auto;
                padding: 26px 22px;
            }

            .featured-copy,
            .specialty-wide-copy {
                padding: 26px 22px;
            }

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

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

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

            .button::before,
            .nav-links .nav-cta::before {
                display: none;
            }

            .music-hero:hover .hero-visual > img {
                transform: rotate(1.1deg);
                filter: none;
            }

            .enrolment-cta:hover .enrolment-image,
            .support-image-card:hover img {
                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;
            }

            .hero-visual > img,
            .music-hero:hover .hero-visual > img {
                transform: none;
            }
        }
    


        /* =========================================================
           ESPECIALIDADES · REFINAMIENTO UX/UI
           ========================================================= */

        #especialidades {
            scroll-margin-top: 96px;
        }

        #especialidades .section-heading {
            margin-bottom: 38px;
        }

        #especialidades .section-heading > div {
            max-width: 740px;
        }

        #especialidades .section-heading > p {
            max-width: 470px;
        }

        .specialties-grid {
            grid-auto-flow: dense;
            gap: 16px;
            align-items: stretch;
        }

        .specialty-card {
            display: flex;
            min-height: 0;
            padding: 26px;
            flex-direction: column;
            border-color: rgba(23, 23, 25, 0.10);
            box-shadow:
                0 16px 44px rgba(23, 23, 25, 0.055),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }

        .specialty-card::after {
            right: -120px;
            bottom: -130px;
            width: 230px;
            height: 230px;
            opacity: 0.8;
        }

        .specialty-card:hover {
            transform: translateY(-6px);
            box-shadow:
                0 26px 68px rgba(23, 23, 25, 0.11),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
        }

        .specialty-number {
            top: 19px;
            right: 20px;
            display: grid;
            min-width: 30px;
            height: 30px;
            padding: 0 8px;
            place-items: center;
            border: 1px solid rgba(23, 23, 25, 0.075);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.76);
            color: rgba(23, 23, 25, 0.38);
            font-size: 10px;
            letter-spacing: 0.035em;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .specialty-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 34px;
            border: 1px solid rgba(8, 105, 223, 0.08);
            border-radius: 15px;
            background:
                linear-gradient(
                    145deg,
                    rgba(8, 105, 223, 0.11),
                    rgba(8, 105, 223, 0.055)
                );
        }

        .specialty-icon svg {
            width: 27px;
            height: 27px;
            stroke-width: 1.65;
        }

        .specialty-card h3 {
            max-width: 20ch;
            margin-bottom: 12px;
            font-size: clamp(21px, 2vw, 25px);
            line-height: 1.05;
        }

        .specialty-card p {
            max-width: 48ch;
            font-size: 14px;
            line-height: 1.68;
        }

        .specialty-instrument,
        .specialty-initiation,
        .specialty-card:nth-child(3),
        .specialty-card:nth-child(4),
        .specialty-card:nth-child(6) {
            min-height: 318px;
        }

        .specialty-card:nth-child(3),
        .specialty-card:nth-child(4),
        .specialty-initiation {
            min-height: 300px;
        }

        .specialty-featured {
            min-height: 318px;
            grid-template-columns: minmax(0, 1.16fr) minmax(245px, 0.84fr);
            gap: 0;
            padding: 0;
            overflow: hidden;
        }

        .featured-copy {
            display: flex;
            padding: 26px 28px 28px;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }

        .featured-label {
            margin-bottom: 24px;
            padding: 7px 11px;
            box-shadow: 0 8px 20px rgba(8, 105, 223, 0.18);
        }

        .featured-media,
        .featured-media img {
            min-height: 318px;
        }

        .featured-media {
            border-left: 1px solid rgba(8, 105, 223, 0.08);
        }

        .featured-media img {
            object-position: 48% center;
        }

        .featured-media::after {
            background:
                linear-gradient(
                    90deg,
                    rgba(244, 248, 255, 0.50),
                    transparent 28%
                ),
                linear-gradient(
                    to top,
                    rgba(7, 11, 18, 0.10),
                    transparent 52%
                );
        }

        .specialty-link,
        .specialty-cta {
            position: relative;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            gap: 8px;
            margin-top: auto;
            padding-top: 22px;
            color: var(--blue);
            font-size: 13px;
            font-weight: 730;
            line-height: 1.25;
        }

        .specialty-link span,
        .specialty-cta span {
            transition: transform 0.25s ease;
        }

        .specialty-link:hover span,
        .specialty-cta:hover span {
            transform: translateX(4px);
        }

        .specialty-cta::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -4px;
            left: 0;
            height: 1px;
            border-radius: 99px;
            background: var(--blue);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.28s var(--ease);
        }

        .specialty-cta:hover::after {
            transform: scaleX(1);
        }

        .specialty-wide {
            min-height: 318px;
            grid-template-columns: minmax(270px, 0.86fr) minmax(0, 1.14fr);
            border-color: rgba(8, 105, 223, 0.14);
            background:
                radial-gradient(
                    circle at 100% 100%,
                    rgba(8, 105, 223, 0.08),
                    transparent 36%
                ),
                #ffffff;
        }

        .specialty-wide-media,
        .specialty-wide-media img {
            min-height: 318px;
        }

        .specialty-wide-media {
            border-right: 1px solid rgba(23, 23, 25, 0.08);
        }

        .specialty-wide-media img {
            object-position: 58% center;
            filter: saturate(0.96) contrast(1.02);
        }

        .specialty-wide-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    90deg,
                    transparent 62%,
                    rgba(255, 255, 255, 0.18)
                ),
                linear-gradient(
                    to top,
                    rgba(4, 7, 13, 0.20),
                    transparent 48%
                );
            pointer-events: none;
        }

        .specialty-wide-copy {
            display: flex;
            padding: 30px 32px;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }

        .specialty-wide .specialty-icon {
            margin-bottom: 28px;
        }

        .specialty-wide h3 {
            max-width: 24ch;
        }

        .specialty-initiation {
            background:
                radial-gradient(
                    circle at 100% 0%,
                    rgba(111, 84, 232, 0.07),
                    transparent 34%
                ),
                #ffffff;
        }

        @media (max-width: 1050px) {
            .specialty-instrument,
            .specialty-initiation,
            .specialty-card:nth-child(3),
            .specialty-card:nth-child(4),
            .specialty-card:nth-child(6) {
                min-height: 300px;
            }

            .specialty-featured,
            .specialty-wide {
                grid-column: span 2;
            }
        }

        @media (max-width: 720px) {
            #especialidades .section-heading {
                margin-bottom: 30px;
            }

            .specialties-grid {
                gap: 14px;
            }

            .specialty-card,
            .specialty-instrument,
            .specialty-initiation,
            .specialty-card:nth-child(3),
            .specialty-card:nth-child(4),
            .specialty-card:nth-child(6) {
                min-height: auto;
            }

            .specialty-card {
                padding: 24px 21px;
            }

            .specialty-featured,
            .specialty-wide {
                grid-column: auto;
                grid-template-columns: 1fr;
                min-height: auto;
                padding: 0;
            }

            .featured-media,
            .featured-media img,
            .specialty-wide-media,
            .specialty-wide-media img {
                min-height: 250px;
                height: 250px;
            }

            .featured-media {
                order: -1;
                border-left: 0;
                border-bottom: 1px solid rgba(8, 105, 223, 0.08);
            }

            .specialty-wide-media {
                border-right: 0;
                border-bottom: 1px solid rgba(23, 23, 25, 0.08);
            }

            .featured-copy,
            .specialty-wide-copy {
                padding: 25px 22px 27px;
            }

            .specialty-icon {
                margin-bottom: 28px;
            }

            .featured-label {
                margin-bottom: 22px;
            }

            .specialty-link,
            .specialty-cta {
                padding-top: 20px;
            }
        }
    


        /* =========================================================
           ESPECIALIDADES · CARRUSEL TIPO CATÁLOGO PREMIUM
           ========================================================= */

        .specialties-catalogue {
            overflow: hidden;
        }

        .specialties-heading {
            margin-bottom: 34px;
        }

        .specialty-carousel {
            position: relative;
        }

        .specialty-carousel-toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 18px;
        }

        .specialty-carousel-toolbar p {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin: 0;
            color: var(--muted);
            font-size: 12px;
            font-weight: 620;
        }

        .specialty-carousel-toolbar p span {
            color: var(--blue);
            font-size: 17px;
        }

        .specialty-carousel-controls {
            display: flex;
            gap: 8px;
        }

        .carousel-control {
            display: grid;
            width: 42px;
            height: 42px;
            padding: 0;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 10px 25px rgba(23, 23, 25, 0.06);
            color: var(--ink);
            font-size: 17px;
            cursor: pointer;
            transition:
                transform 0.28s var(--ease),
                border-color 0.25s ease,
                background 0.25s ease,
                color 0.25s ease,
                box-shadow 0.28s var(--ease);
        }

        .carousel-control:hover {
            border-color: var(--blue);
            background: var(--blue);
            box-shadow: 0 15px 32px rgba(8, 105, 223, 0.22);
            color: #ffffff;
            transform: translateY(-3px);
        }

        .carousel-control:disabled {
            opacity: 0.38;
            cursor: default;
            transform: none;
        }

        .specialty-track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(292px, 30.4%);
            gap: 16px;
            overflow-x: auto;
            padding: 2px 2px 24px;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            overscroll-behavior-inline: contain;
            cursor: grab;
        }

        .specialty-track::-webkit-scrollbar {
            display: none;
        }

        .specialty-track.is-dragging {
            cursor: grabbing;
            scroll-behavior: auto;
            user-select: none;
        }

        .specialty-slide {
            display: grid;
            min-width: 0;
            overflow: hidden;
            border: 1px solid rgba(23, 23, 25, 0.10);
            border-radius: 24px;
            background: #ffffff;
            box-shadow:
                0 18px 50px rgba(23, 23, 25, 0.07),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            scroll-snap-align: start;
            transition:
                transform 0.5s var(--ease),
                border-color 0.3s ease,
                box-shadow 0.5s var(--ease);
        }

        .specialty-slide:hover {
            border-color: rgba(8, 105, 223, 0.25);
            box-shadow: 0 30px 76px rgba(23, 23, 25, 0.15);
            transform: translateY(-8px);
        }

        .specialty-slide-featured {
            border-color: rgba(8, 105, 223, 0.30);
            background:
                linear-gradient(160deg, rgba(8, 105, 223, 0.05), #ffffff 50%);
        }

        .specialty-poster {
            position: relative;
            height: 205px;
            margin: 0;
            overflow: hidden;
            background: #eef3fb;
        }

        .specialty-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition:
                transform 0.9s var(--ease),
                filter 0.6s ease;
        }

        .specialty-slide:hover .specialty-poster img {
            filter: saturate(1.08) contrast(1.03);
            transform: scale(1.075);
        }

        .specialty-poster-shade {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to top, rgba(6, 9, 15, 0.46), transparent 54%),
                linear-gradient(135deg, rgba(6, 9, 15, 0.12), transparent 55%);
        }

        .specialty-index {
            position: absolute;
            top: 15px;
            right: 15px;
            display: grid;
            min-width: 38px;
            height: 38px;
            padding: 0 9px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.34);
            border-radius: 999px;
            background: rgba(8, 11, 18, 0.24);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: #ffffff;
            font-size: 10px;
            font-weight: 760;
            letter-spacing: 0.04em;
        }

        .specialty-glass-icon {
            position: absolute;
            left: 16px;
            bottom: 15px;
            display: grid;
            width: 47px;
            height: 47px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.38);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.84);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            color: var(--blue);
            box-shadow: 0 12px 26px rgba(8, 12, 20, 0.14);
        }

        .specialty-glass-icon svg {
            width: 26px;
            height: 26px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .specialty-2x1-seal {
            position: absolute;
            left: 16px;
            bottom: 14px;
            display: grid;
            width: 90px;
            height: 90px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.42);
            border-radius: 50%;
            background: rgba(8, 105, 223, 0.94);
            box-shadow:
                0 18px 36px rgba(8, 105, 223, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
            color: #ffffff;
            text-align: center;
            transform: rotate(-5deg);
        }

        .specialty-2x1-seal small {
            font-size: 8px;
            font-weight: 760;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .specialty-2x1-seal strong {
            margin: -7px 0;
            font-size: 26px;
            letter-spacing: -0.05em;
        }

        .specialty-slide-body {
            display: grid;
            min-height: 252px;
            padding: 23px 22px 24px;
            grid-template-rows: auto auto 1fr auto;
            align-content: start;
        }

        .specialty-type {
            justify-self: start;
            margin-bottom: 12px;
            padding: 6px 9px;
            border-radius: 999px;
            background: rgba(23, 23, 25, 0.055);
            color: #65666c;
            font-size: 9px;
            font-weight: 760;
            letter-spacing: 0.055em;
            text-transform: uppercase;
        }

        .specialty-type-star {
            background: rgba(8, 105, 223, 0.10);
            color: var(--blue);
        }

        .specialty-slide h3 {
            margin: 0 0 11px;
            overflow-wrap: anywhere;
            color: var(--ink);
            font-size: 24px;
            line-height: 1.03;
            letter-spacing: -0.04em;
        }

        .specialty-slide p {
            margin: 0;
            overflow-wrap: anywhere;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
        }

        .specialty-slide-link {
            display: inline-flex;
            align-items: center;
            align-self: end;
            justify-self: start;
            gap: 7px;
            margin-top: 20px;
            color: var(--blue);
            font-size: 12px;
            font-weight: 730;
        }

        .specialty-slide-link span {
            transition: transform 0.24s ease;
        }

        .specialty-slide-link:hover span {
            transform: translateX(4px);
        }

        .specialty-carousel-progress {
            position: relative;
            height: 3px;
            overflow: hidden;
            border-radius: 999px;
            background: rgba(23, 23, 25, 0.08);
        }

        .specialty-carousel-progress span {
            display: block;
            width: 22%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--blue), var(--violet));
            transform: translateX(0);
            transition:
                width 0.2s ease,
                transform 0.2s ease;
        }

        /* =========================================================
           TARIFAS · PANEL EDITORIAL PREMIUM
           ========================================================= */

        .pricing-section {
            padding-top: clamp(94px, 11vw, 148px);
        }

        .pricing-heading {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
            gap: 56px;
            align-items: end;
            margin-bottom: 38px;
        }

        .pricing-heading h2 {
            max-width: 760px;
            margin: 13px 0 0;
            font-size: clamp(42px, 5.4vw, 66px);
            line-height: 0.98;
            letter-spacing: -0.052em;
            text-wrap: balance;
        }

        .pricing-heading-side {
            display: grid;
            justify-items: start;
            gap: 19px;
        }

        .pricing-heading-side p {
            max-width: 520px;
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.65;
        }

        .pricing-download {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--blue);
            font-size: 12px;
            font-weight: 730;
        }

        .pricing-download span {
            display: grid;
            width: 27px;
            height: 27px;
            place-items: center;
            border: 1px solid rgba(8, 105, 223, 0.16);
            border-radius: 50%;
            background: rgba(8, 105, 223, 0.07);
        }

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

        .price-plan {
            position: relative;
            padding: clamp(28px, 4vw, 40px);
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 28px;
            background:
                radial-gradient(circle at 100% 0%, rgba(8, 105, 223, 0.07), transparent 34%),
                #ffffff;
            box-shadow: var(--shadow-card);
        }

        .price-plan-star {
            border-color: rgba(8, 105, 223, 0.28);
            background:
                radial-gradient(circle at 100% 0%, rgba(8, 105, 223, 0.17), transparent 34%),
                linear-gradient(150deg, #f5f8ff 0%, #ffffff 62%);
            box-shadow:
                0 24px 70px rgba(8, 105, 223, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }

        .price-plan-header {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            min-height: 132px;
            padding-right: 8px;
        }

        .price-plan-kicker {
            color: var(--blue);
            font-size: 10px;
            font-weight: 760;
            letter-spacing: 0.065em;
            text-transform: uppercase;
        }

        .price-plan h3 {
            max-width: 440px;
            margin: 10px 0 10px;
            overflow-wrap: anywhere;
            font-size: clamp(29px, 3vw, 38px);
            line-height: 1.02;
            letter-spacing: -0.045em;
        }

        .price-plan-header p {
            max-width: 500px;
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.58;
        }

        .price-plan-icon {
            display: grid;
            flex: 0 0 auto;
            width: 56px;
            height: 56px;
            place-items: center;
            border-radius: 17px;
            background: rgba(8, 105, 223, 0.09);
            color: var(--blue);
        }

        .price-plan-icon svg {
            width: 30px;
            height: 30px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .price-star-badge {
            position: absolute;
            top: 24px;
            right: 25px;
            display: grid;
            width: 102px;
            height: 102px;
            place-items: center;
            border-radius: 50%;
            background: var(--blue);
            box-shadow: 0 18px 38px rgba(8, 105, 223, 0.26);
            color: #ffffff;
            text-align: center;
            transform: rotate(5deg);
        }

        .price-star-badge small {
            font-size: 8px;
            font-weight: 760;
            letter-spacing: 0.055em;
            text-transform: uppercase;
        }

        .price-star-badge strong {
            margin: -8px 0;
            font-size: 31px;
            letter-spacing: -0.06em;
        }

        .price-plan-star .price-plan-header {
            padding-right: 112px;
        }

        .price-options {
            display: grid;
            gap: 8px;
            margin: 29px 0 25px;
        }

        .price-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            min-height: 58px;
            padding: 11px 15px;
            border: 1px solid rgba(23, 23, 25, 0.085);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.78);
            transition:
                border-color 0.25s ease,
                background 0.25s ease,
                transform 0.28s var(--ease);
        }

        .price-option:hover {
            border-color: rgba(8, 105, 223, 0.25);
            background: #ffffff;
            transform: translateX(4px);
        }

        .price-option > span {
            color: #5f6066;
            font-size: 13px;
            font-weight: 620;
        }

        .price-option strong {
            white-space: nowrap;
            color: var(--ink);
            font-size: 23px;
            letter-spacing: -0.035em;
        }

        .price-option strong small {
            color: var(--muted);
            font-size: 11px;
            font-weight: 620;
            letter-spacing: 0;
        }

        .price-plan-notes {
            display: grid;
            gap: 8px;
            margin: 0 0 22px;
        }

        .price-plan-notes li {
            position: relative;
            padding-left: 17px;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.55;
        }

        .price-plan-notes li::before {
            content: "";
            position: absolute;
            top: 0.62em;
            left: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue);
            box-shadow: 0 0 0 4px rgba(8, 105, 223, 0.08);
        }

        .instrument-details {
            border-top: 1px solid var(--line);
        }

        .instrument-details summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 18px 0 0;
            color: var(--blue);
            font-size: 12px;
            font-weight: 720;
            cursor: pointer;
            list-style: none;
        }

        .instrument-details summary::-webkit-details-marker {
            display: none;
        }

        .instrument-details summary span {
            display: grid;
            width: 28px;
            height: 28px;
            place-items: center;
            border: 1px solid rgba(8, 105, 223, 0.16);
            border-radius: 50%;
            transition: transform 0.3s var(--ease);
        }

        .instrument-details[open] summary span {
            transform: rotate(45deg);
        }

        .instrument-details p {
            margin: 15px 0 0;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.65;
        }

        .price-plan-button {
            margin-top: 23px;
        }

        .secondary-pricing-heading {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
            gap: 42px;
            align-items: end;
            margin: clamp(70px, 8vw, 96px) 0 28px;
        }

        .secondary-pricing-heading h3 {
            max-width: 700px;
            margin: 11px 0 0;
            font-size: clamp(30px, 4vw, 46px);
            line-height: 1.02;
            letter-spacing: -0.045em;
        }

        .secondary-pricing-heading p {
            max-width: 500px;
            margin: 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.65;
        }

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

        .compact-price-card {
            display: flex;
            min-width: 0;
            min-height: 300px;
            padding: 24px;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 22px;
            background:
                radial-gradient(circle at 100% 100%, rgba(8, 105, 223, 0.06), transparent 34%),
                #ffffff;
            box-shadow: 0 15px 42px rgba(23, 23, 25, 0.055);
            transition:
                transform 0.42s var(--ease),
                border-color 0.28s ease,
                box-shadow 0.42s var(--ease);
        }

        .compact-price-card:hover {
            border-color: rgba(8, 105, 223, 0.24);
            box-shadow: 0 25px 62px rgba(23, 23, 25, 0.11);
            transform: translateY(-6px);
        }

        .compact-price-free {
            border-color: rgba(53, 184, 115, 0.25);
            background:
                radial-gradient(circle at 100% 0%, rgba(53, 184, 115, 0.10), transparent 34%),
                #ffffff;
        }

        .compact-price-child {
            background:
                radial-gradient(circle at 100% 0%, rgba(111, 84, 232, 0.09), transparent 34%),
                #ffffff;
        }

        .compact-price-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 28px;
        }

        .compact-price-icon {
            display: grid;
            flex: 0 0 auto;
            width: 43px;
            height: 43px;
            place-items: center;
            border-radius: 14px;
            background: rgba(8, 105, 223, 0.09);
            color: var(--blue);
            font-size: 17px;
            font-weight: 760;
        }

        .compact-price-free .compact-price-icon {
            background: rgba(53, 184, 115, 0.10);
            color: #238a56;
        }

        .compact-price-value {
            display: grid;
            justify-items: end;
            color: var(--ink);
            font-size: 26px;
            font-weight: 780;
            line-height: 1;
            letter-spacing: -0.045em;
        }

        .compact-price-free .compact-price-value {
            color: #238a56;
        }

        .compact-price-value small {
            margin-top: 5px;
            color: var(--muted);
            font-size: 9px;
            font-weight: 660;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        .compact-price-card h4 {
            margin: 0 0 11px;
            overflow-wrap: anywhere;
            font-size: 21px;
            line-height: 1.05;
            letter-spacing: -0.035em;
        }

        .compact-price-card > p {
            margin: 0 0 23px;
            overflow-wrap: anywhere;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.6;
        }

        .compact-price-card dl {
            display: grid;
            gap: 9px;
            margin-top: auto;
        }

        .compact-price-card dl div {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            padding-top: 10px;
            border-top: 1px solid rgba(23, 23, 25, 0.08);
        }

        .compact-price-card dt {
            color: var(--muted-light);
            font-size: 10px;
            font-weight: 650;
            text-transform: uppercase;
        }

        .compact-price-card dd {
            margin: 0;
            color: #55565b;
            font-size: 11px;
            font-weight: 680;
            text-align: right;
        }

        .compact-price-card > a {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            gap: 7px;
            margin-top: 20px;
            color: var(--blue);
            font-size: 11px;
            font-weight: 730;
        }

        .pricing-footnote {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            margin-top: 18px;
            padding: 18px 20px;
            border: 1px solid rgba(242, 95, 39, 0.18);
            border-radius: 17px;
            background: linear-gradient(135deg, rgba(242, 95, 39, 0.055), #ffffff);
        }

        .pricing-footnote > span {
            display: grid;
            flex: 0 0 auto;
            width: 28px;
            height: 28px;
            place-items: center;
            border-radius: 50%;
            background: rgba(242, 95, 39, 0.10);
            color: var(--orange);
            font-size: 12px;
            font-weight: 780;
        }

        .pricing-footnote p {
            margin: 2px 0 0;
            color: #65666b;
            font-size: 12px;
            line-height: 1.6;
        }

        @media (max-width: 1020px) {
            .specialty-track {
                grid-auto-columns: minmax(290px, 43%);
            }

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

        @media (max-width: 820px) {
            .pricing-heading,
            .secondary-pricing-heading {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .featured-pricing-grid {
                grid-template-columns: 1fr;
            }

            .price-plan-header {
                min-height: 0;
            }

            .specialty-track {
                grid-auto-columns: minmax(282px, 72%);
            }
        }

        @media (max-width: 620px) {
            .specialty-carousel-toolbar p {
                max-width: 210px;
            }

            .specialty-track {
                grid-auto-columns: 86%;
                gap: 12px;
            }

            .specialty-poster {
                height: 188px;
            }

            .specialty-slide-body {
                min-height: 248px;
                padding: 21px 20px 22px;
            }

            .specialty-slide h3 {
                font-size: 22px;
            }

            .pricing-heading h2 {
                font-size: 42px;
            }

            .price-plan {
                padding: 25px 21px;
            }

            .price-plan-star .price-plan-header {
                padding-right: 0;
                padding-top: 102px;
            }

            .price-star-badge {
                top: 22px;
                left: 21px;
                right: auto;
                width: 90px;
                height: 90px;
            }

            .price-option {
                align-items: flex-start;
                flex-direction: column;
                gap: 4px;
            }

            .secondary-pricing-grid {
                grid-template-columns: 1fr;
            }

            .compact-price-card {
                min-height: 265px;
            }
        }

        @media (hover: none) {
            .specialty-slide:hover,
            .compact-price-card:hover {
                transform: none;
            }

            .specialty-slide:hover .specialty-poster img {
                transform: none;
                filter: none;
            }
        }

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


        /* Ajustes solicitados: etiquetas azules y accesos a agrupaciones */

        .specialty-type,
        .specialty-type-star {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            padding: 8px 13px;
            border: 1px solid rgba(8, 105, 223, 0.08);
            border-radius: 999px;
            background:
                linear-gradient(
                    135deg,
                    rgba(8, 105, 223, 0.12),
                    rgba(8, 105, 223, 0.07)
                );
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.82),
                0 8px 20px rgba(8, 105, 223, 0.06);
            color: var(--blue);
            font-size: 10px;
            font-weight: 780;
            line-height: 1;
            letter-spacing: 0.075em;
            text-transform: uppercase;
        }

        .specialty-group-links {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: clamp(32px, 6vw, 72px);
            align-items: center;
            margin-top: 34px;
            padding: clamp(28px, 5vw, 44px);
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.16);
            border-radius: 26px;
            background:
                radial-gradient(
                    circle at 0% 0%,
                    rgba(8, 105, 223, 0.10),
                    transparent 32%
                ),
                radial-gradient(
                    circle at 100% 100%,
                    rgba(111, 84, 232, 0.07),
                    transparent 30%
                ),
                linear-gradient(135deg, #f7faff 0%, #ffffff 62%);
            box-shadow:
                0 20px 58px rgba(23, 23, 25, 0.075),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }

        .specialty-group-links-copy {
            max-width: 690px;
        }

        .specialty-group-links-copy h3 {
            margin: 11px 0 12px;
            color: var(--ink);
            font-size: clamp(28px, 3.8vw, 44px);
            line-height: 1.02;
            letter-spacing: -0.045em;
            text-wrap: balance;
        }

        .specialty-group-links-copy p {
            max-width: 620px;
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
        }

        .specialty-group-links-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 12px;
        }

        .specialty-group-button {
            min-width: 205px;
            white-space: nowrap;
        }

        @media (max-width: 860px) {
            .specialty-group-links {
                grid-template-columns: 1fr;
                gap: 26px;
            }

            .specialty-group-links-actions {
                justify-content: flex-start;
            }
        }

        @media (max-width: 560px) {
            .specialty-type,
            .specialty-type-star {
                max-width: 100%;
                min-height: 31px;
                padding: 7px 11px;
                white-space: normal;
                text-align: left;
            }

            .specialty-group-links {
                margin-top: 26px;
                padding: 27px 21px;
                border-radius: 22px;
            }

            .specialty-group-links-actions {
                flex-direction: column;
            }

            .specialty-group-button {
                width: 100%;
                min-width: 0;
            }
        }

        @media (hover: none) {
            .specialty-group-button:hover {
                transform: none;
            }
        }
    


        /* =========================================================
           FORMACIÓN ONLINE · BLOQUE DESTACADO PREMIUM
           ========================================================= */

        .online-learning-feature {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
            gap: clamp(34px, 6vw, 76px);
            align-items: center;
            margin-top: clamp(48px, 7vw, 82px);
            padding: clamp(34px, 6vw, 66px);
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.18);
            border-radius: 30px;
            background:
                radial-gradient(
                    circle at 4% 8%,
                    rgba(8, 105, 223, 0.13),
                    transparent 30%
                ),
                radial-gradient(
                    circle at 58% 100%,
                    rgba(111, 84, 232, 0.08),
                    transparent 30%
                ),
                linear-gradient(135deg, #f6f9ff 0%, #ffffff 58%, #faf9ff 100%);
            box-shadow:
                0 26px 76px rgba(23, 23, 25, 0.10),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            isolation: isolate;
        }

        .online-learning-feature::before {
            content: "";
            position: absolute;
            top: -180px;
            left: 34%;
            width: 390px;
            height: 390px;
            border: 1px solid rgba(8, 105, 223, 0.08);
            border-radius: 50%;
            box-shadow:
                0 0 0 58px rgba(8, 105, 223, 0.022),
                0 0 0 116px rgba(8, 105, 223, 0.014);
            pointer-events: none;
        }

        .online-learning-copy {
            position: relative;
            z-index: 2;
            max-width: 670px;
        }

        .online-learning-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--blue);
            font-size: 12px;
            font-weight: 790;
            letter-spacing: 0.085em;
            text-transform: uppercase;
        }

        .online-learning-kicker > span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            box-shadow:
                0 0 0 6px rgba(53, 184, 115, 0.12),
                0 0 22px rgba(53, 184, 115, 0.28);
        }

        .online-learning-copy h3 {
            max-width: 700px;
            margin: 18px 0 23px;
            color: var(--ink);
            font-size: clamp(38px, 5.2vw, 62px);
            line-height: 0.99;
            letter-spacing: -0.052em;
            text-wrap: balance;
        }

        .online-learning-copy h3 span {
            display: block;
            color: var(--blue);
        }

        .online-learning-lead {
            max-width: 650px;
            margin: 0 0 15px;
            color: #55575e;
            font-size: clamp(17px, 2vw, 20px);
            line-height: 1.58;
            letter-spacing: -0.012em;
            text-wrap: pretty;
        }

        .online-learning-detail {
            max-width: 650px;
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            text-wrap: pretty;
        }

        .online-learning-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
            margin: 28px 0 30px;
        }

        .online-learning-benefits li {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            min-height: 36px;
            padding: 8px 12px;
            border: 1px solid rgba(8, 105, 223, 0.11);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.78);
            box-shadow:
                0 8px 20px rgba(23, 23, 25, 0.045),
                inset 0 1px 0 rgba(255, 255, 255, 0.94);
            color: #5f6066;
            font-size: 11px;
            font-weight: 670;
        }

        .online-learning-benefits li span {
            display: grid;
            width: 18px;
            height: 18px;
            place-items: center;
            border-radius: 50%;
            background: rgba(8, 105, 223, 0.10);
            color: var(--blue);
            font-size: 10px;
            font-weight: 800;
        }

        .online-learning-button {
            min-width: 235px;
        }

        .online-learning-visual {
            position: relative;
            min-height: 500px;
            margin: 0;
            isolation: isolate;
        }

        .online-learning-visual::before {
            content: "";
            position: absolute;
            inset: 9% -7% -7% 10%;
            z-index: -1;
            border-radius: 48% 52% 54% 46%;
            background:
                linear-gradient(
                    135deg,
                    rgba(8, 105, 223, 0.24),
                    rgba(111, 84, 232, 0.16),
                    rgba(53, 184, 115, 0.12)
                );
            filter: blur(34px);
        }

        .online-learning-visual > img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            object-position: center;
            border: 1px solid rgba(255, 255, 255, 0.52);
            border-radius: 28px;
            box-shadow:
                0 30px 76px rgba(12, 17, 28, 0.21),
                inset 0 1px 0 rgba(255, 255, 255, 0.20);
            transform: rotate(1deg);
            transition:
                transform 0.9s var(--ease),
                filter 0.75s ease;
        }

        .online-learning-feature:hover .online-learning-visual > img {
            filter: saturate(1.05) contrast(1.02);
            transform: rotate(0deg) scale(1.012);
        }

        .online-learning-overlay {
            position: absolute;
            inset: 0;
            border-radius: 28px;
            background:
                linear-gradient(
                    to top,
                    rgba(5, 8, 14, 0.34),
                    transparent 48%
                ),
                linear-gradient(
                    135deg,
                    rgba(8, 105, 223, 0.10),
                    transparent 38%
                );
            pointer-events: none;
        }

        .online-learning-card {
            position: absolute;
            right: 22px;
            bottom: 22px;
            left: 22px;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 17px;
            border: 1px solid rgba(255, 255, 255, 0.42);
            border-radius: 17px;
            background: rgba(255, 255, 255, 0.87);
            box-shadow: 0 18px 42px rgba(8, 12, 20, 0.17);
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
        }

        .online-learning-status {
            flex: 0 0 auto;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--green);
            box-shadow:
                0 0 0 7px rgba(53, 184, 115, 0.13),
                0 0 18px rgba(53, 184, 115, 0.30);
        }

        .online-learning-card span:last-child {
            display: grid;
            gap: 2px;
        }

        .online-learning-card small {
            color: var(--muted);
            font-size: 9px;
            font-weight: 690;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .online-learning-card strong {
            color: var(--ink);
            font-size: 13px;
            letter-spacing: -0.015em;
        }

        .online-learning-badge {
            position: absolute;
            top: 24px;
            right: -18px;
            z-index: 4;
            display: grid;
            width: 104px;
            height: 104px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.38);
            border-radius: 50%;
            background: rgba(8, 105, 223, 0.94);
            box-shadow:
                0 20px 42px rgba(8, 105, 223, 0.30),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
            color: #ffffff;
            text-align: center;
            transform: rotate(6deg);
        }

        .online-learning-badge strong {
            margin-bottom: -10px;
            font-size: 25px;
            letter-spacing: -0.05em;
        }

        .online-learning-badge small {
            font-size: 9px;
            font-weight: 760;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        @media (max-width: 960px) {
            .online-learning-feature {
                grid-template-columns: 1fr;
            }

            .online-learning-copy {
                max-width: 780px;
            }

            .online-learning-visual {
                min-height: 450px;
            }

            .online-learning-visual > img {
                height: 450px;
            }

            .online-learning-badge {
                right: 22px;
            }
        }

        @media (max-width: 620px) {
            .online-learning-feature {
                margin-top: 40px;
                padding: 30px 21px 21px;
                border-radius: 24px;
            }

            .online-learning-copy h3 {
                font-size: 40px;
            }

            .online-learning-lead {
                font-size: 17px;
            }

            .online-learning-benefits {
                align-items: stretch;
                flex-direction: column;
            }

            .online-learning-benefits li {
                justify-content: flex-start;
                width: 100%;
            }

            .online-learning-button {
                width: 100%;
                min-width: 0;
            }

            .online-learning-visual,
            .online-learning-visual > img {
                min-height: 360px;
                height: 360px;
            }

            .online-learning-badge {
                top: 18px;
                right: 14px;
                width: 90px;
                height: 90px;
            }

            .online-learning-card {
                right: 13px;
                bottom: 13px;
                left: 13px;
            }
        }

        @media (hover: none) {
            .online-learning-feature:hover .online-learning-visual > img {
                filter: none;
                transform: rotate(1deg);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .online-learning-visual > img,
            .online-learning-feature:hover .online-learning-visual > img {
                transform: none;
            }
        }
    


        /* =========================================================
           TARIFAS COMPLEMENTARIAS · REDISEÑO PREMIUM
           ========================================================= */

        .secondary-pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            align-items: stretch;
        }

        .compact-price-card {
            position: relative;
            display: flex;
            min-width: 0;
            min-height: 286px;
            padding: 25px;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(23, 23, 25, 0.10);
            border-radius: 23px;
            background:
                radial-gradient(
                    circle at 100% 0%,
                    rgba(8, 105, 223, 0.075),
                    transparent 34%
                ),
                linear-gradient(145deg, #ffffff 0%, #fbfcff 100%);
            box-shadow:
                0 16px 46px rgba(23, 23, 25, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            isolation: isolate;
            transition:
                transform 0.45s var(--ease),
                border-color 0.3s ease,
                box-shadow 0.45s var(--ease);
        }

        .compact-price-card::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(
                90deg,
                var(--blue),
                rgba(111, 84, 232, 0.76),
                transparent 88%
            );
            opacity: 0.72;
        }

        .compact-price-card::after {
            content: "";
            position: absolute;
            right: -90px;
            bottom: -110px;
            z-index: -1;
            width: 210px;
            height: 210px;
            border-radius: 50%;
            background: radial-gradient(
                circle,
                rgba(8, 105, 223, 0.08),
                transparent 68%
            );
            transition: transform 0.55s var(--ease);
        }

        .compact-price-card:hover {
            border-color: rgba(8, 105, 223, 0.25);
            box-shadow:
                0 28px 72px rgba(23, 23, 25, 0.13),
                0 8px 30px rgba(8, 105, 223, 0.07);
            transform: translateY(-7px);
        }

        .compact-price-card:hover::after {
            transform: scale(1.25);
        }

        .compact-price-child {
            background:
                radial-gradient(
                    circle at 100% 0%,
                    rgba(111, 84, 232, 0.10),
                    transparent 36%
                ),
                linear-gradient(145deg, #ffffff, #fbfaff);
        }

        .compact-price-free {
            border-color: rgba(53, 184, 115, 0.22);
            background:
                radial-gradient(
                    circle at 100% 0%,
                    rgba(53, 184, 115, 0.10),
                    transparent 36%
                ),
                linear-gradient(145deg, #ffffff, #fafffc);
        }

        .compact-price-free::before {
            background: linear-gradient(
                90deg,
                #35b873,
                rgba(8, 105, 223, 0.72),
                transparent 88%
            );
        }

        .compact-price-header {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 20px;
            align-items: start;
            margin-bottom: 18px;
        }

        .compact-price-heading {
            min-width: 0;
        }

        .compact-price-category {
            display: inline-flex;
            margin-bottom: 9px;
            color: var(--blue);
            font-size: 9px;
            font-weight: 780;
            line-height: 1.2;
            letter-spacing: 0.075em;
            text-transform: uppercase;
        }

        .compact-price-free .compact-price-category {
            color: #238a56;
        }

        .compact-price-card h4 {
            max-width: 20ch;
            margin: 0;
            overflow-wrap: anywhere;
            color: var(--ink);
            font-size: clamp(20px, 2vw, 24px);
            line-height: 1.03;
            letter-spacing: -0.038em;
        }

        .compact-price-value {
            display: grid;
            min-width: 78px;
            justify-items: end;
            align-content: start;
            padding: 10px 12px;
            border: 1px solid rgba(8, 105, 223, 0.12);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.78);
            box-shadow:
                0 9px 22px rgba(23, 23, 25, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .compact-price-value strong {
            white-space: nowrap;
            color: var(--ink);
            font-size: 24px;
            line-height: 1;
            letter-spacing: -0.045em;
        }

        .compact-price-free .compact-price-value strong {
            color: #238a56;
        }

        .compact-price-value small {
            margin-top: 5px;
            white-space: nowrap;
            color: var(--muted);
            font-size: 8px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.045em;
            text-transform: uppercase;
        }

        .compact-price-card > p {
            max-width: 48ch;
            margin: 0 0 22px;
            overflow-wrap: anywhere;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.62;
        }

        .compact-price-meta {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            margin-top: auto;
        }

        .compact-price-meta-single {
            grid-template-columns: minmax(0, 1fr);
        }

        .compact-price-meta li {
            display: grid;
            min-width: 0;
            gap: 5px;
            padding: 11px 12px;
            border: 1px solid rgba(23, 23, 25, 0.075);
            border-radius: 13px;
            background: rgba(247, 249, 253, 0.82);
        }

        .compact-price-meta span {
            color: var(--muted-light);
            font-size: 8px;
            font-weight: 720;
            letter-spacing: 0.065em;
            text-transform: uppercase;
        }

        .compact-price-meta strong {
            overflow-wrap: anywhere;
            color: #55565b;
            font-size: 11px;
            font-weight: 700;
            line-height: 1.28;
        }

        .compact-price-link {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            gap: 7px;
            margin-top: 18px;
            color: var(--blue);
            font-size: 11px;
            font-weight: 740;
        }

        .compact-price-link span {
            transition: transform 0.24s ease;
        }

        .compact-price-link:hover span {
            transform: translateX(4px);
        }

        @media (max-width: 1040px) {
            .secondary-pricing-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 650px) {
            .secondary-pricing-grid {
                grid-template-columns: 1fr;
            }

            .compact-price-card {
                min-height: 0;
                padding: 22px;
            }

            .compact-price-header {
                gap: 14px;
            }

            .compact-price-card h4 {
                max-width: 18ch;
                font-size: 21px;
            }

            .compact-price-value {
                min-width: 72px;
                padding: 9px 10px;
            }

            .compact-price-value strong {
                font-size: 22px;
            }
        }

        @media (max-width: 390px) {
            .compact-price-header {
                grid-template-columns: minmax(0, 1fr);
            }

            .compact-price-value {
                justify-self: start;
                justify-items: start;
            }

            .compact-price-meta {
                grid-template-columns: 1fr;
            }
        }

        @media (hover: none) {
            .compact-price-card:hover {
                transform: none;
            }
        }
    


        /* =========================================================
           AVISO DE TARIFAS · FRANJA PREMIUM
           ========================================================= */

        .pricing-notice-premium {
            position: relative;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            gap: 18px;
            align-items: center;
            margin-top: 22px;
            padding: 19px 22px;
            overflow: hidden;
            border: 1px solid rgba(242, 95, 39, 0.24);
            border-radius: 20px;
            background:
                radial-gradient(
                    circle at 0% 50%,
                    rgba(242, 95, 39, 0.12),
                    transparent 22%
                ),
                radial-gradient(
                    circle at 100% 50%,
                    rgba(8, 105, 223, 0.06),
                    transparent 26%
                ),
                linear-gradient(135deg, #fff8f4 0%, #ffffff 66%);
            box-shadow:
                0 16px 44px rgba(23, 23, 25, 0.065),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            isolation: isolate;
        }

        .pricing-notice-premium::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 4px;
            background: linear-gradient(
                to bottom,
                var(--orange),
                #ff9f74
            );
        }

        .pricing-notice-symbol {
            display: grid;
            width: 46px;
            height: 46px;
            place-items: center;
            border: 1px solid rgba(242, 95, 39, 0.12);
            border-radius: 15px;
            background: rgba(242, 95, 39, 0.10);
            color: var(--orange);
            box-shadow:
                0 9px 20px rgba(242, 95, 39, 0.09),
                inset 0 1px 0 rgba(255, 255, 255, 0.85);
        }

        .pricing-notice-symbol span {
            display: grid;
            width: 22px;
            height: 22px;
            place-items: center;
            border-radius: 50%;
            background: var(--orange);
            color: #ffffff;
            font-size: 12px;
            font-weight: 800;
        }

        .pricing-notice-copy {
            min-width: 0;
        }

        .pricing-notice-kicker {
            display: block;
            margin-bottom: 3px;
            color: var(--orange);
            font-size: 9px;
            font-weight: 790;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .pricing-notice-copy p {
            margin: 0;
            color: #62636a;
            font-size: 13px;
            line-height: 1.55;
        }

        .pricing-notice-copy strong {
            color: var(--ink);
            font-weight: 760;
        }

        .pricing-notice-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            color: var(--blue);
            font-size: 11px;
            font-weight: 740;
        }

        .pricing-notice-link span {
            display: grid;
            width: 29px;
            height: 29px;
            place-items: center;
            border: 1px solid rgba(8, 105, 223, 0.15);
            border-radius: 50%;
            background: rgba(8, 105, 223, 0.07);
            transition:
                transform 0.25s ease,
                background 0.25s ease,
                color 0.25s ease;
        }

        .pricing-notice-link:hover span {
            background: var(--blue);
            color: #ffffff;
            transform: translateX(3px);
        }

        /* =========================================================
           BECAS, DESCUENTOS Y ALQUILER · SECCIÓN PREMIUM
           ========================================================= */

        .study-benefits {
            position: relative;
            margin-top: clamp(74px, 9vw, 112px);
            padding: clamp(38px, 6vw, 66px);
            overflow: hidden;
            border: 1px solid rgba(8, 105, 223, 0.15);
            border-radius: 32px;
            background:
                radial-gradient(
                    circle at 4% 5%,
                    rgba(8, 105, 223, 0.13),
                    transparent 27%
                ),
                radial-gradient(
                    circle at 95% 100%,
                    rgba(111, 84, 232, 0.09),
                    transparent 29%
                ),
                linear-gradient(135deg, #f6f9ff 0%, #ffffff 54%, #faf9ff 100%);
            box-shadow:
                0 30px 86px rgba(23, 23, 25, 0.105),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            isolation: isolate;
        }

        .study-benefits::before {
            content: "";
            position: absolute;
            top: -230px;
            left: 38%;
            width: 500px;
            height: 500px;
            border: 1px solid rgba(8, 105, 223, 0.07);
            border-radius: 50%;
            box-shadow:
                0 0 0 72px rgba(8, 105, 223, 0.018),
                0 0 0 144px rgba(8, 105, 223, 0.012);
            pointer-events: none;
        }

        .study-benefits-heading {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
            gap: clamp(30px, 6vw, 72px);
            align-items: end;
            margin-bottom: 34px;
        }

        .study-benefits-heading h3 {
            max-width: 760px;
            margin: 13px 0 0;
            color: var(--ink);
            font-size: clamp(40px, 5.4vw, 64px);
            line-height: 0.98;
            letter-spacing: -0.052em;
            text-wrap: balance;
        }

        .study-benefits-heading h3 span {
            display: block;
            color: var(--blue);
        }

        .study-benefits-heading > p {
            max-width: 490px;
            margin: 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.68;
            text-wrap: pretty;
        }

        .study-benefits-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 15px;
        }

        .benefit-card {
            position: relative;
            display: flex;
            min-width: 0;
            padding: 25px;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(23, 23, 25, 0.10);
            border-radius: 23px;
            background: rgba(255, 255, 255, 0.88);
            box-shadow:
                0 16px 46px rgba(23, 23, 25, 0.065),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition:
                transform 0.45s var(--ease),
                border-color 0.3s ease,
                box-shadow 0.45s var(--ease);
        }

        .benefit-card::after {
            content: "";
            position: absolute;
            right: -105px;
            bottom: -125px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(
                circle,
                rgba(8, 105, 223, 0.08),
                transparent 68%
            );
            pointer-events: none;
            transition: transform 0.55s var(--ease);
        }

        .benefit-card:hover {
            border-color: rgba(8, 105, 223, 0.25);
            box-shadow:
                0 28px 72px rgba(23, 23, 25, 0.13),
                0 8px 28px rgba(8, 105, 223, 0.075);
            transform: translateY(-7px);
        }

        .benefit-card:hover::after {
            transform: scale(1.25);
        }

        .benefit-card-scholarship {
            grid-column: span 2;
            min-height: 430px;
            padding: clamp(30px, 5vw, 48px);
            border-color: rgba(8, 105, 223, 0.24);
            background:
                radial-gradient(
                    circle at 100% 0%,
                    rgba(8, 105, 223, 0.20),
                    transparent 34%
                ),
                linear-gradient(145deg, #eff5ff 0%, #ffffff 64%);
        }

        .benefit-card-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 22px;
            margin-bottom: 34px;
        }

        .benefit-label {
            display: inline-flex;
            align-self: flex-start;
            padding: 7px 10px;
            border: 1px solid rgba(8, 105, 223, 0.10);
            border-radius: 999px;
            background: rgba(8, 105, 223, 0.09);
            color: var(--blue);
            font-size: 9px;
            font-weight: 790;
            line-height: 1.2;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .benefit-big-mark {
            display: grid;
            width: 82px;
            height: 82px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.42);
            border-radius: 50%;
            background: var(--blue);
            box-shadow:
                0 18px 40px rgba(8, 105, 223, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
            color: #ffffff;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.025em;
            transform: rotate(5deg);
        }

        .benefit-card h4 {
            position: relative;
            z-index: 2;
            max-width: 25ch;
            margin: 0 0 14px;
            overflow-wrap: anywhere;
            color: var(--ink);
            font-size: clamp(24px, 3vw, 36px);
            line-height: 1.02;
            letter-spacing: -0.044em;
        }

        .benefit-card > p,
        .benefit-rental-copy p {
            position: relative;
            z-index: 2;
            max-width: 58ch;
            margin: 0;
            overflow-wrap: anywhere;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
        }

        .benefit-group-list {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 25px 0 30px;
        }

        .benefit-group-list li {
            padding: 9px 11px;
            border: 1px solid rgba(8, 105, 223, 0.11);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.78);
            box-shadow: 0 8px 18px rgba(23, 23, 25, 0.045);
            color: #5b5d63;
            font-size: 10px;
            font-weight: 650;
        }

        .benefit-primary-button {
            position: relative;
            z-index: 2;
            align-self: flex-start;
            margin-top: auto;
        }

        .benefit-card-discount {
            min-height: 332px;
        }

        .benefit-value {
            display: grid;
            align-self: flex-start;
            margin-bottom: 24px;
            padding: 13px 15px;
            border: 1px solid rgba(8, 105, 223, 0.12);
            border-radius: 17px;
            background:
                linear-gradient(
                    145deg,
                    rgba(8, 105, 223, 0.10),
                    rgba(255, 255, 255, 0.92)
                );
            box-shadow:
                0 11px 25px rgba(8, 105, 223, 0.07),
                inset 0 1px 0 rgba(255, 255, 255, 0.94);
        }

        .benefit-value strong {
            color: var(--blue);
            font-size: 31px;
            line-height: 1;
            letter-spacing: -0.055em;
        }

        .benefit-value small {
            margin-top: 5px;
            color: var(--muted);
            font-size: 8px;
            font-weight: 720;
            letter-spacing: 0.055em;
            text-transform: uppercase;
        }

        .benefit-card-discount .benefit-label {
            margin-bottom: 18px;
        }

        .benefit-card-discount h4 {
            font-size: 24px;
        }

        .benefit-card-rental {
            grid-column: span 3;
            display: grid;
            grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
            gap: clamp(28px, 6vw, 68px);
            align-items: center;
            min-height: 250px;
            border-color: rgba(111, 84, 232, 0.22);
            background:
                radial-gradient(
                    circle at 0% 50%,
                    rgba(111, 84, 232, 0.12),
                    transparent 28%
                ),
                linear-gradient(135deg, #faf8ff, #ffffff 64%);
        }

        .benefit-rental-mark {
            display: grid;
            min-height: 166px;
            place-content: center;
            padding: 25px;
            border: 1px solid rgba(111, 84, 232, 0.14);
            border-radius: 20px;
            background:
                linear-gradient(
                    145deg,
                    rgba(111, 84, 232, 0.13),
                    rgba(8, 105, 223, 0.07)
                );
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.88),
                0 14px 32px rgba(111, 84, 232, 0.08);
            text-align: center;
        }

        .benefit-rental-mark span {
            color: var(--violet);
            font-size: 11px;
            font-weight: 780;
            letter-spacing: 0.09em;
            text-transform: uppercase;
        }

        .benefit-rental-mark strong {
            display: block;
            margin-top: 7px;
            color: var(--ink);
            font-size: clamp(25px, 3vw, 38px);
            line-height: 1;
            letter-spacing: -0.045em;
        }

        .benefit-rental-copy {
            position: relative;
            z-index: 2;
        }

        .benefit-rental-copy .benefit-label {
            margin-bottom: 16px;
            color: var(--violet);
            background: rgba(111, 84, 232, 0.09);
            border-color: rgba(111, 84, 232, 0.11);
        }

        .benefit-rental-copy h4 {
            max-width: 24ch;
        }

        .benefit-text-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 22px;
            color: var(--blue);
            font-size: 12px;
            font-weight: 740;
        }

        .benefit-text-link span {
            transition: transform 0.24s ease;
        }

        .benefit-text-link:hover span {
            transform: translateX(4px);
        }

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

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

            .benefit-card-scholarship,
            .benefit-card-rental {
                grid-column: span 2;
            }

            .benefit-card-rental {
                grid-template-columns: minmax(190px, 0.6fr) minmax(0, 1.4fr);
            }
        }

        @media (max-width: 700px) {
            .pricing-notice-premium {
                grid-template-columns: auto minmax(0, 1fr);
            }

            .pricing-notice-link {
                grid-column: 1 / -1;
                justify-self: start;
                margin-left: 64px;
            }

            .study-benefits {
                padding: 34px 22px;
                border-radius: 26px;
            }

            .study-benefits-heading h3 {
                font-size: 42px;
            }

            .study-benefits-grid {
                grid-template-columns: 1fr;
            }

            .benefit-card-scholarship,
            .benefit-card-rental {
                grid-column: auto;
            }

            .benefit-card-rental {
                grid-template-columns: 1fr;
            }

            .benefit-card-scholarship {
                min-height: 0;
            }

            .benefit-card-discount {
                min-height: 0;
            }
        }

        @media (max-width: 460px) {
            .pricing-notice-premium {
                grid-template-columns: 1fr;
                padding: 20px;
            }

            .pricing-notice-link {
                grid-column: auto;
                margin-left: 0;
            }

            .study-benefits-heading h3 {
                font-size: 37px;
            }

            .benefit-card,
            .benefit-card-scholarship {
                padding: 22px;
            }

            .benefit-card-top {
                align-items: flex-start;
                flex-direction: column;
            }

            .benefit-big-mark {
                width: 72px;
                height: 72px;
            }
        }

        @media (hover: none) {
            .benefit-card:hover {
                transform: none;
            }
        }
    


        /* =========================================================
           BENEFICIOS · NUEVA DISTRIBUCIÓN
           Beca a ancho completo + tres descuentos en una fila
           ========================================================= */

        .study-benefits-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            align-items: stretch;
        }

        .benefit-card-scholarship {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns:
                minmax(0, 1.12fr)
                minmax(300px, 0.88fr);
            grid-template-rows: auto auto auto 1fr;
            column-gap: clamp(34px, 6vw, 78px);
            min-height: 360px;
            padding: clamp(32px, 5vw, 52px);
        }

        .benefit-card-scholarship .benefit-card-top {
            grid-column: 1 / -1;
            margin-bottom: 24px;
        }

        .benefit-card-scholarship h4 {
            grid-column: 1;
            align-self: end;
            max-width: 24ch;
        }

        .benefit-card-scholarship > p {
            grid-column: 1;
            max-width: 58ch;
        }

        .benefit-card-scholarship .benefit-group-list {
            grid-column: 2;
            grid-row: 2 / span 3;
            display: grid;
            align-self: stretch;
            align-content: center;
            gap: 9px;
            margin: 0;
            padding: 25px;
            border: 1px solid rgba(8, 105, 223, 0.12);
            border-radius: 21px;
            background:
                radial-gradient(
                    circle at 100% 0%,
                    rgba(8, 105, 223, 0.10),
                    transparent 38%
                ),
                rgba(255, 255, 255, 0.76);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.94),
                0 15px 36px rgba(23, 23, 25, 0.055);
        }

        .benefit-card-scholarship .benefit-group-list li {
            position: relative;
            width: 100%;
            padding: 12px 14px 12px 35px;
            border-radius: 14px;
            background: #ffffff;
            font-size: 11px;
            line-height: 1.35;
        }

        .benefit-card-scholarship .benefit-group-list li::before {
            content: "✓";
            position: absolute;
            top: 50%;
            left: 13px;
            display: grid;
            width: 16px;
            height: 16px;
            place-items: center;
            border-radius: 50%;
            background: rgba(8, 105, 223, 0.10);
            color: var(--blue);
            font-size: 9px;
            font-weight: 800;
            transform: translateY(-50%);
        }

        .benefit-card-scholarship .benefit-primary-button {
            grid-column: 1;
            align-self: end;
            justify-self: start;
            margin-top: 26px;
        }

        .benefit-card-discount {
            min-height: 340px;
        }

        .benefit-card-rental {
            grid-column: 1 / -1;
        }

        @media (max-width: 980px) {
            .study-benefits-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .benefit-card-scholarship,
            .benefit-card-rental {
                grid-column: 1 / -1;
            }

            .benefit-card-scholarship {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .benefit-card-scholarship .benefit-card-top,
            .benefit-card-scholarship h4,
            .benefit-card-scholarship > p,
            .benefit-card-scholarship .benefit-group-list,
            .benefit-card-scholarship .benefit-primary-button {
                grid-column: 1;
                grid-row: auto;
            }

            .benefit-card-scholarship .benefit-group-list {
                margin-top: 24px;
            }
        }

        @media (max-width: 700px) {
            .study-benefits-grid {
                grid-template-columns: 1fr;
            }

            .benefit-card-scholarship,
            .benefit-card-rental {
                grid-column: auto;
            }

            .benefit-card-discount {
                min-height: 0;
            }

            .benefit-card-scholarship .benefit-group-list {
                padding: 18px;
            }
        }
    


        /* =========================================================
           ALQUILER DE INSTRUMENTOS · FOTO INTEGRADA
           Único módulo modificado
           ========================================================= */

        .benefit-card-rental {
            grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
            gap: clamp(28px, 5vw, 62px);
            min-height: 390px;
            padding: 22px;
            align-items: stretch;
            overflow: hidden;
        }

        .benefit-card-rental .benefit-rental-copy {
            display: flex;
            min-width: 0;
            padding: clamp(20px, 4vw, 42px);
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }

        .benefit-card-rental .benefit-rental-copy h4 {
            max-width: 13ch;
            margin-top: 17px;
            font-size: clamp(34px, 4.4vw, 54px);
            line-height: 0.98;
            letter-spacing: -0.052em;
            text-wrap: balance;
        }

        .benefit-card-rental .benefit-rental-copy p {
            max-width: 46ch;
            font-size: 14px;
            line-height: 1.7;
        }

        .benefit-card-rental .benefit-text-link {
            margin-top: 27px;
            font-size: 13px;
        }

        .benefit-rental-photo {
            position: relative;
            min-width: 0;
            min-height: 346px;
            margin: 0;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.48);
            border-radius: 22px;
            background: #e9edf5;
            box-shadow:
                0 24px 58px rgba(17, 20, 30, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.22);
            isolation: isolate;
        }

        .benefit-rental-photo::before {
            content: "";
            position: absolute;
            inset: 12% -8% -8% 10%;
            z-index: -1;
            border-radius: 50%;
            background: linear-gradient(
                135deg,
                rgba(111, 84, 232, 0.24),
                rgba(8, 105, 223, 0.17)
            );
            filter: blur(32px);
        }

        .benefit-rental-photo > img {
            width: 100%;
            height: 100%;
            min-height: 346px;
            object-fit: cover;
            object-position: center;
            transition:
                transform 0.95s var(--ease),
                filter 0.7s ease;
        }

        .benefit-card-rental:hover .benefit-rental-photo > img {
            filter: saturate(1.08) contrast(1.03);
            transform: scale(1.045);
        }

        .benefit-rental-photo-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    to top,
                    rgba(7, 9, 16, 0.54),
                    transparent 58%
                ),
                linear-gradient(
                    135deg,
                    rgba(111, 84, 232, 0.12),
                    transparent 42%
                );
            pointer-events: none;
        }

        .benefit-rental-photo-caption {
            position: absolute;
            right: 18px;
            bottom: 18px;
            left: 18px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 15px;
            border: 1px solid rgba(255, 255, 255, 0.36);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 16px 36px rgba(8, 11, 19, 0.18);
            backdrop-filter: blur(17px) saturate(155%);
            -webkit-backdrop-filter: blur(17px) saturate(155%);
        }

        .benefit-rental-photo-status {
            flex: 0 0 auto;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--green);
            box-shadow:
                0 0 0 6px rgba(53, 184, 115, 0.13),
                0 0 18px rgba(53, 184, 115, 0.28);
        }

        .benefit-rental-photo-caption > span:last-child {
            display: grid;
            min-width: 0;
            gap: 2px;
        }

        .benefit-rental-photo-caption small {
            color: var(--muted);
            font-size: 8px;
            font-weight: 720;
            letter-spacing: 0.065em;
            text-transform: uppercase;
        }

        .benefit-rental-photo-caption strong {
            overflow-wrap: anywhere;
            color: var(--ink);
            font-size: 12px;
            line-height: 1.25;
            letter-spacing: -0.01em;
        }

        @media (max-width: 980px) {
            .benefit-card-rental {
                grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
            }
        }

        @media (max-width: 780px) {
            .benefit-card-rental {
                grid-template-columns: 1fr;
                min-height: 0;
            }

            .benefit-card-rental .benefit-rental-copy {
                padding: 28px 24px 18px;
            }

            .benefit-card-rental .benefit-rental-copy h4 {
                max-width: 16ch;
                font-size: 42px;
            }

            .benefit-rental-photo,
            .benefit-rental-photo > img {
                min-height: 330px;
                height: 330px;
            }
        }

        @media (max-width: 480px) {
            .benefit-card-rental {
                padding: 14px;
                border-radius: 22px;
            }

            .benefit-card-rental .benefit-rental-copy {
                padding: 24px 16px 16px;
            }

            .benefit-card-rental .benefit-rental-copy h4 {
                font-size: 36px;
            }

            .benefit-rental-photo,
            .benefit-rental-photo > img {
                min-height: 285px;
                height: 285px;
            }

            .benefit-rental-photo-caption {
                right: 12px;
                bottom: 12px;
                left: 12px;
                padding: 12px 13px;
            }
        }

        @media (hover: none) {
            .benefit-card-rental:hover .benefit-rental-photo > img {
                filter: none;
                transform: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .benefit-rental-photo > img,
            .benefit-card-rental:hover .benefit-rental-photo > img {
                transform: none;
            }
        }
    

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

.ynf-page{
	--blue:#0869df;
	--blue2:#005bbb;
	--ink:#151517;
	--muted:#6f7279;
	--soft:#f6f8fc;
	--line:rgba(23,23,25,.09);

	width:100%;
	margin:0;
	overflow:hidden;

	background:#fff;
	color:var(--ink);

	font-family:
		"Helvetica Neue",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Arial,
		sans-serif;
}

.ynf-shell{
	width:min(1180px,calc(100% - 40px));
	margin:0 auto;
}

.ynf-hero{
	padding:clamp(70px,8vw,112px) 0 clamp(65px,8vw,100px);

	background:
		radial-gradient(circle at 8% 5%,rgba(8,105,223,.12),transparent 30%),
		radial-gradient(circle at 95% 6%,rgba(98,72,255,.07),transparent 27%),
		linear-gradient(180deg,#fbfcff,#fff);
}

.ynf-hero-grid{
	display:grid;
	grid-template-columns:minmax(0,1fr) minmax(340px,.92fr);
	gap:clamp(44px,7vw,88px);
	align-items:center;
}

.ynf-kicker,
.ynf-eyebrow{
	display:inline-flex;
	align-items:center;
	color:var(--blue);
	font-size:10.5px;
	font-weight:800;
	letter-spacing:.105em;
	text-transform:uppercase;
}

.ynf-kicker{
	margin-bottom:18px;
	padding:8px 12px;
	border:1px solid rgba(8,105,223,.15);
	border-radius:999px;
	background:rgba(8,105,223,.055);
}

.ynf-page h1,
.ynf-page h2,
.ynf-page h3{
	margin:0!important;
	padding:0!important;
	color:var(--ink)!important;
}

.ynf-page h1{
	margin-bottom:22px!important;

	font-size:clamp(55px,6.6vw,84px)!important;
	font-weight:820!important;
	line-height:.91!important;
	letter-spacing:-.07em!important;
}

.ynf-lead{
	max-width:690px;
	margin:0 0 28px;
	color:var(--muted);
	font-size:clamp(15px,1.5vw,17px);
	line-height:1.72;
}

.ynf-actions{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}

.ynf-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;

	min-height:49px;
	padding:0 21px;

	border-radius:999px;

	font-size:12.5px;
	font-weight:760;
	text-decoration:none!important;

	transition:.24s ease;
}

.ynf-btn-primary{
	background:var(--blue);
	color:#fff!important;
	box-shadow:0 14px 30px rgba(8,105,223,.25);
}

.ynf-btn-primary:hover{
	background:var(--blue2);
	transform:translateY(-2px);
}

.ynf-btn-secondary{
	border:1px solid var(--line);
	background:#fff;
	color:#44464c!important;
}

.ynf-hero-img{
	position:relative;
	min-height:460px;
	overflow:hidden;

	border-radius:30px;

	background:#eef2f8;

	box-shadow:0 30px 80px rgba(23,23,25,.12);
}

.ynf-hero-img img{
	position:absolute;
	inset:0;

	width:100%;
	height:100%;

	object-fit:cover;
}

.ynf-section{
	padding:clamp(78px,9vw,116px) 0;
}

.ynf-section-soft{
	background:var(--soft);
}

.ynf-heading{
	display:grid;
	grid-template-columns:minmax(0,.75fr) minmax(300px,1.25fr);
	gap:30px 60px;
	align-items:end;

	margin-bottom:42px;
}

.ynf-heading h2{
	margin-top:10px!important;

	font-size:clamp(42px,5vw,62px)!important;
	font-weight:810!important;
	line-height:.95!important;
	letter-spacing:-.062em!important;
}

.ynf-heading p{
	max-width:610px;
	margin:0;
	color:var(--muted);
	font-size:14px;
	line-height:1.72;
}

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

.ynf-card{
	padding:25px;

	border:1px solid var(--line);
	border-radius:20px;

	background:#fff;

	box-shadow:0 12px 35px rgba(23,23,25,.045);
}

.ynf-card-num{
	display:grid;
	width:32px;
	height:32px;
	place-items:center;

	margin-bottom:22px;

	border-radius:50%;
	background:#171719;
	color:#fff;

	font-size:10px;
	font-weight:800;
}

.ynf-card small{
	display:block;

	margin-bottom:8px;

	color:var(--blue);

	font-size:9.5px;
	font-weight:800;
	letter-spacing:.085em;
	text-transform:uppercase;
}

.ynf-card h3{
	margin-bottom:12px!important;

	font-size:21px!important;
	font-weight:770!important;
	line-height:1.03!important;
	letter-spacing:-.035em!important;
}

.ynf-card p{
	margin:0;
	color:var(--muted);
	font-size:12.5px;
	line-height:1.65;
}

.ynf-split{
	display:grid;
	grid-template-columns:minmax(0,.9fr) minmax(320px,1.1fr);
	gap:clamp(36px,7vw,80px);
	align-items:center;
}

.ynf-split-img{
	min-height:430px;
	overflow:hidden;
	border-radius:28px;
	background:#edf1f7;
	box-shadow:0 22px 60px rgba(23,23,25,.09);
}

.ynf-split-img img{
	display:block;
	width:100%;
	height:100%;
	min-height:430px;
	object-fit:cover;
}

.ynf-split h2{
	margin:11px 0 20px!important;

	font-size:clamp(42px,5vw,61px)!important;
	font-weight:810!important;
	line-height:.95!important;
	letter-spacing:-.06em!important;
}

.ynf-split p{
	color:var(--muted);
	font-size:14px;
	line-height:1.75;
}

.ynf-feature-list{
	display:grid;
	gap:10px;
	margin:24px 0 28px;
}

.ynf-feature{
	display:flex;
	gap:12px;
	align-items:flex-start;
	padding:13px 15px;
	border:1px solid var(--line);
	border-radius:14px;
	background:#fff;
}

.ynf-dot{
	flex:0 0 auto;
	width:9px;
	height:9px;
	margin-top:5px;
	border-radius:50%;
	background:var(--blue);
}

.ynf-feature strong{
	display:block;
	margin-bottom:3px;
	font-size:12.5px;
}

.ynf-feature span{
	display:block;
	color:var(--muted);
	font-size:11.5px;
	line-height:1.5;
}

.ynf-price{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:14px;
	margin-top:32px;
}

.ynf-price-card{
	padding:24px;
	border:1px solid var(--line);
	border-radius:20px;
	background:#fff;
	text-align:center;
}

.ynf-price-card strong{
	display:block;
	margin-bottom:5px;
	font-size:31px;
	letter-spacing:-.045em;
}

.ynf-price-card span{
	display:block;
	color:var(--muted);
	font-size:11px;
}

.ynf-final{
	padding:0 0 clamp(80px,9vw,120px);
}

.ynf-final-card{
	display:grid;
	grid-template-columns:minmax(0,1fr) auto;
	gap:24px;
	align-items:center;

	padding:clamp(30px,5vw,48px);
	border-radius:28px;

	background:linear-gradient(135deg,#171719,#282b32);

	box-shadow:0 25px 70px rgba(23,23,25,.16);
}

.ynf-final-card h2{
	margin-bottom:9px!important;
	color:#fff!important;
	font-size:clamp(30px,4vw,45px)!important;
	font-weight:800!important;
	line-height:.98!important;
	letter-spacing:-.055em!important;
}

.ynf-final-card p{
	margin:0;
	color:rgba(255,255,255,.66);
	font-size:12.5px;
	line-height:1.65;
}

.ynf-agenda-grid{
	display:grid;
	grid-template-columns:1.05fr .95fr;
	gap:18px;
}

.ynf-agenda-main,
.ynf-agenda-side{
	border:1px solid var(--line);
	border-radius:24px;
	background:#fff;
	overflow:hidden;
}

.ynf-agenda-main img{
	width:100%;
	height:360px;
	object-fit:cover;
	display:block;
}

.ynf-agenda-copy{
	padding:28px;
}

.ynf-agenda-copy h3{
	margin:10px 0 12px!important;
	font-size:31px!important;
	font-weight:790!important;
	letter-spacing:-.045em!important;
}

.ynf-agenda-copy p{
	color:var(--muted);
	font-size:13px;
	line-height:1.7;
}

.ynf-agenda-side{
	padding:28px;
}

.ynf-agenda-side h3{
	margin-bottom:18px!important;
	font-size:23px!important;
	font-weight:780!important;
}

.ynf-agenda-side .ynf-feature{
	margin-bottom:10px;
}

@media(max-width:900px){

	.ynf-hero-grid,
	.ynf-heading,
	.ynf-split,
	.ynf-agenda-grid{
		grid-template-columns:1fr;
	}

	.ynf-cards,
	.ynf-price{
		grid-template-columns:1fr;
	}

	.ynf-final-card{
		grid-template-columns:1fr;
	}

	.ynf-hero-img{
		min-height:390px;
	}

}

@media(max-width:650px){

	.ynf-shell{
		width:min(100% - 28px,1180px);
	}

	.ynf-page h1{
		font-size:52px!important;
	}

	.ynf-actions{
		flex-direction:column;
	}

	.ynf-btn{
		width:100%;
	}
}


: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}
