
        /* =========================================================
           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;
            }
        }
    


        /* =========================================================
           ESCUELA DE TEATRO · REFINAMIENTO FINAL UX/UI
           ========================================================= */

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

        .music-hero {
            min-height: 650px;
            padding: clamp(44px, 6.4vw, 76px);
        }

        .specialties-catalogue {
            padding-top: clamp(86px, 9vw, 118px);
            padding-bottom: clamp(82px, 9vw, 114px);
        }

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

        .specialty-carousel-toolbar {
            margin-bottom: 15px;
        }

        .specialty-track {
            gap: 18px;
            padding-bottom: 30px;
        }

        .specialty-slide {
            border-radius: 27px;
            box-shadow:
                0 20px 58px rgba(23, 23, 25, 0.075),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
        }

        .specialty-poster {
            height: 230px;
        }

        .specialty-slide-body {
            min-height: 320px;
            padding: 26px 25px 28px;
        }

        .specialty-type,
        .specialty-type-star {
            margin-bottom: 15px;
        }

        .specialty-slide h3 {
            margin-bottom: 14px;
            font-size: clamp(23px, 2.2vw, 27px);
        }

        .specialty-slide p {
            line-height: 1.72;
        }

        .member-banner {
            border-radius: 28px;
            box-shadow:
                0 22px 64px rgba(23, 23, 25, 0.085),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
        }

        .support-section {
            gap: 20px;
            margin-top: clamp(60px, 7vw, 86px);
        }

        .support-copy-card,
        .support-image-card {
            border-radius: 28px;
            box-shadow:
                0 22px 60px rgba(23, 23, 25, 0.085),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
        }

        .enrolment-cta {
            margin-top: clamp(92px, 10vw, 132px);
        }

        /* -------------------------
           Resumen de tarifas
           ------------------------- */

        .dance-pricing-section {
            padding-top: clamp(90px, 10vw, 130px);
            padding-bottom: clamp(86px, 9vw, 118px);
        }

        .dance-rates-hero {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: clamp(36px, 7vw, 88px);
            align-items: center;
            margin-bottom: 18px;
            padding: clamp(34px, 6vw, 62px);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 32px;
            background:
                radial-gradient(
                    circle at 8% 5%,
                    rgba(8, 105, 223, 0.44),
                    transparent 34%
                ),
                radial-gradient(
                    circle at 95% 100%,
                    rgba(111, 84, 232, 0.42),
                    transparent 36%
                ),
                linear-gradient(
                    135deg,
                    #09101f 0%,
                    #111a2e 58%,
                    #090c15 100%
                );
            box-shadow:
                0 34px 86px rgba(8, 13, 25, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.10);
            color: #ffffff;
            isolation: isolate;
        }

        .dance-rates-hero::before {
            content: "";
            position: absolute;
            top: -210px;
            left: 37%;
            width: 470px;
            height: 470px;
            border: 1px solid rgba(255, 255, 255, 0.065);
            border-radius: 50%;
            box-shadow:
                0 0 0 68px rgba(255, 255, 255, 0.016),
                0 0 0 136px rgba(255, 255, 255, 0.010);
            pointer-events: none;
        }

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

        .dance-rates-copy > span {
            color: rgba(255, 255, 255, 0.66);
            font-size: 10px;
            font-weight: 790;
            letter-spacing: 0.09em;
            text-transform: uppercase;
        }

        .dance-rates-copy h3 {
            max-width: 14ch;
            margin: 14px 0 18px;
            color: #ffffff;
            font-size: clamp(38px, 5vw, 60px);
            line-height: 0.98;
            letter-spacing: -0.055em;
            text-wrap: balance;
        }

        .dance-rates-copy h3 strong {
            display: block;
            color: #7eb8ff;
            font-weight: inherit;
        }

        .dance-rates-copy p {
            max-width: 570px;
            margin: 0;
            color: rgba(255, 255, 255, 0.66);
            font-size: 15px;
            line-height: 1.68;
        }

        .dance-rates-data {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, minmax(126px, 1fr));
            gap: 10px;
        }

        .dance-rates-data > div {
            display: grid;
            min-height: 126px;
            padding: 18px;
            align-content: space-between;
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: 19px;
            background: rgba(255, 255, 255, 0.075);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.09),
                0 16px 38px rgba(0, 0, 0, 0.14);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .dance-rates-data dt {
            color: rgba(255, 255, 255, 0.54);
            font-size: 8px;
            font-weight: 740;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .dance-rates-data dd {
            display: grid;
            margin: 16px 0 0;
        }

        .dance-rates-data strong {
            color: #ffffff;
            font-size: clamp(27px, 3vw, 36px);
            line-height: 1;
            letter-spacing: -0.055em;
        }

        .dance-rates-data small {
            margin-top: 6px;
            color: rgba(255, 255, 255, 0.56);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 0.055em;
            text-transform: uppercase;
        }

        /* -------------------------
           Tarjetas de especialidades
           ------------------------- */

        .dance-rate-grid {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: 16px;
        }

        .dance-rate-card {
            position: relative;
            display: flex;
            grid-column: span 4;
            min-width: 0;
            min-height: 304px;
            padding: 26px;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(23, 23, 25, 0.10);
            border-radius: 25px;
            background:
                radial-gradient(
                    circle at 100% 0%,
                    rgba(8, 105, 223, 0.10),
                    transparent 35%
                ),
                linear-gradient(145deg, #ffffff 0%, #fafcff 100%);
            box-shadow:
                0 18px 52px rgba(23, 23, 25, 0.065),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            isolation: isolate;
            transition:
                transform 0.46s var(--ease),
                border-color 0.3s ease,
                box-shadow 0.46s var(--ease);
        }

        .dance-rate-card-wide {
            grid-column: span 6;
            min-height: 326px;
        }

        .dance-rate-card::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(
                90deg,
                var(--blue),
                var(--violet),
                transparent 88%
            );
        }

        .dance-rate-card::after {
            content: "";
            position: absolute;
            right: -112px;
            bottom: -128px;
            z-index: -1;
            width: 235px;
            height: 235px;
            border-radius: 50%;
            background: radial-gradient(
                circle,
                rgba(111, 84, 232, 0.10),
                transparent 68%
            );
            transition: transform 0.55s var(--ease);
        }

        .dance-rate-card:hover {
            border-color: rgba(8, 105, 223, 0.27);
            box-shadow:
                0 31px 78px rgba(23, 23, 25, 0.14),
                0 9px 30px rgba(8, 105, 223, 0.08);
            transform: translateY(-7px);
        }

        .dance-rate-card:hover::after {
            transform: scale(1.26);
        }

        .dance-rate-card > header {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 18px;
            align-items: start;
            margin-bottom: 26px;
        }

        .dance-rate-type {
            display: inline-flex;
            max-width: 100%;
            margin-bottom: 13px;
            padding: 7px 10px;
            border: 1px solid rgba(8, 105, 223, 0.10);
            border-radius: 999px;
            background: rgba(8, 105, 223, 0.08);
            color: var(--blue);
            font-size: 8px;
            font-weight: 790;
            line-height: 1.22;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .dance-rate-card h3 {
            max-width: 18ch;
            margin: 0;
            overflow-wrap: anywhere;
            color: var(--ink);
            font-size: clamp(25px, 2.8vw, 34px);
            line-height: 1.01;
            letter-spacing: -0.047em;
        }

        .dance-rate-price {
            display: grid;
            min-width: 88px;
            justify-items: end;
            padding: 12px 13px;
            border: 1px solid rgba(8, 105, 223, 0.13);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.86);
            box-shadow:
                0 11px 26px rgba(23, 23, 25, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .dance-rate-price strong {
            white-space: nowrap;
            color: var(--blue);
            font-size: 26px;
            line-height: 1;
            letter-spacing: -0.052em;
        }

        .dance-rate-price small {
            margin-top: 5px;
            color: var(--muted);
            font-size: 8px;
            font-weight: 720;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .dance-rate-levels {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }

        .dance-rate-levels span {
            padding: 9px 11px;
            border: 1px solid rgba(23, 23, 25, 0.075);
            border-radius: 999px;
            background: rgba(248, 250, 254, 0.92);
            color: #62646a;
            font-size: 10px;
            font-weight: 660;
            line-height: 1.22;
        }

        .dance-rate-card > footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            margin-top: auto;
            padding: 14px 15px;
            border: 1px solid rgba(23, 23, 25, 0.075);
            border-radius: 15px;
            background: rgba(247, 249, 253, 0.84);
        }

        .dance-rate-card > footer span {
            color: var(--muted-light);
            font-size: 8px;
            font-weight: 720;
            letter-spacing: 0.065em;
            text-transform: uppercase;
        }

        .dance-rate-card > footer strong {
            white-space: nowrap;
            color: #505158;
            font-size: 11px;
            font-weight: 730;
        }

        /* -------------------------
           Descuentos
           ------------------------- */

        .dance-discounts {
            position: relative;
            margin-top: clamp(72px, 8vw, 104px);
            padding: clamp(36px, 6vw, 62px);
            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 96% 100%,
                    rgba(111, 84, 232, 0.10),
                    transparent 29%
                ),
                linear-gradient(
                    135deg,
                    #f6f9ff 0%,
                    #ffffff 54%,
                    #faf9ff 100%
                );
            box-shadow:
                0 30px 84px rgba(23, 23, 25, 0.10),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            isolation: isolate;
        }

        .dance-discounts::before {
            content: "";
            position: absolute;
            top: -215px;
            left: 40%;
            width: 470px;
            height: 470px;
            border: 1px solid rgba(8, 105, 223, 0.07);
            border-radius: 50%;
            box-shadow:
                0 0 0 68px rgba(8, 105, 223, 0.018),
                0 0 0 136px rgba(8, 105, 223, 0.012);
            pointer-events: none;
        }

        .dance-discounts-heading {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
            gap: clamp(30px, 6vw, 72px);
            align-items: end;
            margin-bottom: 32px;
        }

        .dance-discounts-heading h3 {
            max-width: 700px;
            margin: 13px 0 0;
            color: var(--ink);
            font-size: clamp(39px, 5.2vw, 60px);
            line-height: 0.99;
            letter-spacing: -0.052em;
            text-wrap: balance;
        }

        .dance-discounts-heading h3 strong {
            display: block;
            color: var(--blue);
            font-weight: inherit;
        }

        .dance-discounts-heading > p {
            max-width: 470px;
            margin: 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.68;
        }

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

        .dance-discount-card {
            position: relative;
            display: flex;
            min-width: 0;
            min-height: 328px;
            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.89);
            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.30s ease,
                box-shadow 0.45s var(--ease);
        }

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

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

        .dance-discount-index {
            position: absolute;
            top: 22px;
            right: 22px;
            display: grid;
            min-width: 34px;
            height: 34px;
            padding: 0 9px;
            place-items: center;
            border: 1px solid rgba(23, 23, 25, 0.075);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.80);
            color: rgba(23, 23, 25, 0.40);
            font-size: 9px;
            font-weight: 760;
        }

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

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

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

        .dance-discount-label {
            display: inline-flex;
            align-self: flex-start;
            margin-bottom: 16px;
            padding: 7px 10px;
            border: 1px solid rgba(8, 105, 223, 0.10);
            border-radius: 999px;
            background: rgba(8, 105, 223, 0.08);
            color: var(--blue);
            font-size: 8px;
            font-weight: 790;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .dance-discount-card h4 {
            position: relative;
            z-index: 2;
            max-width: 18ch;
            margin: 0 0 13px;
            overflow-wrap: anywhere;
            color: var(--ink);
            font-size: clamp(23px, 2.6vw, 29px);
            line-height: 1.03;
            letter-spacing: -0.043em;
        }

        .dance-discount-card p {
            position: relative;
            z-index: 2;
            margin: 0;
            overflow-wrap: anywhere;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.68;
        }

        @media (max-width: 1040px) {
            .dance-rates-hero {
                grid-template-columns: 1fr;
            }

            .dance-rates-data {
                width: 100%;
            }

            .dance-rate-card,
            .dance-rate-card-wide {
                grid-column: span 6;
            }
        }

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

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

            .dance-discount-card:last-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 680px) {
            .specialty-poster {
                height: 205px;
            }

            .specialty-slide-body {
                min-height: 0;
                padding: 23px 21px 25px;
            }

            .dance-rates-hero {
                padding: 28px 22px;
                border-radius: 25px;
            }

            .dance-rates-data {
                grid-template-columns: 1fr;
            }

            .dance-rates-data > div {
                min-height: 0;
            }

            .dance-rate-grid {
                grid-template-columns: 1fr;
            }

            .dance-rate-card,
            .dance-rate-card-wide {
                grid-column: auto;
                min-height: 0;
                padding: 23px 21px;
            }

            .dance-rate-card > header {
                gap: 13px;
            }

            .dance-rate-card h3 {
                font-size: 27px;
            }

            .dance-rate-price {
                min-width: 80px;
                padding: 10px 11px;
            }

            .dance-rate-card > footer {
                align-items: flex-start;
                flex-direction: column;
                gap: 5px;
            }

            .dance-rate-card > footer strong {
                white-space: normal;
            }

            .dance-discounts {
                padding: 32px 21px;
                border-radius: 26px;
            }

            .dance-discounts-heading h3 {
                font-size: 40px;
            }

            .dance-discount-grid {
                grid-template-columns: 1fr;
            }

            .dance-discount-card,
            .dance-discount-card:last-child {
                grid-column: auto;
                min-height: 0;
            }
        }

        @media (max-width: 430px) {
            .dance-rate-card > header {
                grid-template-columns: 1fr;
            }

            .dance-rate-price {
                justify-self: start;
                justify-items: start;
            }
        }

        @media (hover: none) {
            .dance-rate-card:hover,
            .dance-discount-card:hover {
                transform: none;
            }
        }
    
/* =========================================================
   TEATRO · PÁGINA RECONSTRUIDA
   ========================================================= */

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

.ynt-page{
	width:100%;
	overflow:hidden;
	background:#fff;
	color:var(--yng-ink);

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

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

.ynt-hero{
	padding:clamp(80px,9vw,126px) 0 clamp(72px,8vw,108px);

	background:
		radial-gradient(circle at 8% 8%,rgba(111,84,232,.11),transparent 31%),
		radial-gradient(circle at 92% 8%,rgba(8,105,223,.10),transparent 28%),
		linear-gradient(180deg,#fbfcff,#fff);
}

.ynt-hero-grid{
	display:grid;
	grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);

	gap:clamp(46px,7vw,90px);
	align-items:center;
}

.ynt-kicker,
.ynt-eyebrow{
	display:inline-flex;
	align-items:center;

	color:var(--yng-blue);

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

.ynt-kicker{
	margin-bottom:18px;
	padding:8px 12px;

	border:1px solid rgba(8,105,223,.15);
	border-radius:999px;

	background:rgba(8,105,223,.055);
}

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

.ynt-page h1{
	margin-bottom:23px!important;

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

.ynt-lead{
	max-width:680px;
	margin:0 0 29px;

	color:var(--yng-muted);

	font-size:clamp(15px,1.5vw,17px);
	line-height:1.72;
}

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

.ynt-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:.25s ease;
}

.ynt-btn-primary{
	background:var(--yng-blue);
	color:#fff!important;

	box-shadow:0 14px 30px rgba(8,105,223,.25);
}

.ynt-btn-primary:hover{
	background:var(--yng-blue-hover);
	transform:translateY(-2px);
}

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

.ynt-hero-media{
	position:relative;

	min-height:470px;
	overflow:hidden;

	border-radius:32px;

	background:#eceff5;

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

.ynt-hero-media img{
	position:absolute;
	inset:0;

	width:100%;
	height:100%;

	object-fit:cover;
}

.ynt-hero-media::after{
	content:"";

	position:absolute;
	inset:0;

	background:
		linear-gradient(
			to top,
			rgba(12,14,20,.20),
			transparent 45%
		);
}

.ynt-section{
	padding:clamp(82px,9vw,120px) 0;
}

.ynt-section-soft{
	background:#f6f8fc;
}

.ynt-heading{
	display:grid;
	grid-template-columns:minmax(0,.75fr) minmax(300px,1.25fr);

	gap:32px 62px;
	align-items:end;

	margin-bottom:44px;
}

.ynt-heading h2{
	margin-top:11px!important;

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

.ynt-heading p{
	max-width:610px;
	margin:0;

	color:var(--yng-muted);

	font-size:14px;
	line-height:1.74;
}

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

	gap:16px;
}

.ynt-card{
	position:relative;

	padding:27px;

	overflow:hidden;

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

	background:#fff;

	box-shadow:0 15px 42px rgba(23,23,25,.055);

	transition:
		transform .3s var(--yng-ease),
		box-shadow .3s var(--yng-ease);
}

.ynt-card:hover{
	transform:translateY(-5px);

	box-shadow:0 24px 58px rgba(23,23,25,.10);
}

.ynt-card-top{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;

	gap:20px;

	margin-bottom:22px;
}

.ynt-index{
	display:grid;

	width:33px;
	height:33px;

	place-items:center;

	border-radius:50%;

	background:#171719;
	color:#fff;

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

.ynt-price{
	text-align:right;
}

.ynt-price strong{
	display:block;

	color:var(--yng-ink);

	font-size:29px;
	font-weight:800;
	line-height:1;
	letter-spacing:-.045em;
}

.ynt-price small{
	display:block;

	margin-top:4px;

	color:var(--yng-muted-light);

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

.ynt-type{
	display:block;

	margin-bottom:8px;

	color:var(--yng-blue);

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

.ynt-card h3{
	margin-bottom:13px!important;

	font-size:25px!important;
	font-weight:780!important;
	line-height:1.03!important;
	letter-spacing:-.04em!important;
}

.ynt-card p{
	margin:0;

	color:var(--yng-muted);

	font-size:13px;
	line-height:1.68;
}

.ynt-card-footer{
	display:flex;
	justify-content:space-between;

	gap:18px;

	margin-top:24px;
	padding-top:17px;

	border-top:1px solid var(--yng-line);

	color:#56585e;

	font-size:11px;
}

.ynt-card-footer strong{
	color:var(--yng-ink);
}

.ynt-split{
	display:grid;
	grid-template-columns:minmax(0,.94fr) minmax(320px,1.06fr);

	gap:clamp(38px,7vw,82px);
	align-items:center;
}

.ynt-split-media{
	min-height:450px;
	overflow:hidden;

	border-radius:30px;

	background:#edf0f6;

	box-shadow:0 24px 65px rgba(23,23,25,.10);
}

.ynt-split-media img{
	display:block;

	width:100%;
	height:100%;
	min-height:450px;

	object-fit:cover;
}

.ynt-split h2{
	margin:12px 0 20px!important;

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

.ynt-split p{
	color:var(--yng-muted);

	font-size:14px;
	line-height:1.75;
}

.ynt-list{
	display:grid;
	gap:10px;

	margin:25px 0 29px;
}

.ynt-list-item{
	display:flex;
	gap:12px;
	align-items:flex-start;

	padding:13px 15px;

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

	background:#fff;
}

.ynt-dot{
	flex:0 0 auto;

	width:9px;
	height:9px;

	margin-top:5px;

	border-radius:50%;

	background:var(--yng-blue);
}

.ynt-list-item strong{
	display:block;

	margin-bottom:3px;

	font-size:12.5px;
}

.ynt-list-item span:last-child{
	display:block;

	color:var(--yng-muted);

	font-size:11.5px;
	line-height:1.5;
}

.ynt-final{
	padding:0 0 clamp(84px,9vw,122px);
}

.ynt-final-card{
	display:grid;
	grid-template-columns:minmax(0,1fr) auto;

	gap:24px;
	align-items:center;

	padding:clamp(30px,5vw,48px);

	border-radius:29px;

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

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

.ynt-final-card h2{
	margin-bottom:9px!important;

	color:#fff!important;

	font-size:clamp(31px,4vw,46px)!important;
	font-weight:800!important;
	line-height:.98!important;
	letter-spacing:-.055em!important;
}

.ynt-final-card p{
	margin:0;

	color:rgba(255,255,255,.66);

	font-size:12.5px;
	line-height:1.65;
}



@media(max-width:980px){
 .ynt-hero-grid,.ynt-heading,.ynt-split{grid-template-columns:1fr}
 .ynt-hero-media{min-height:390px}
}
@media(max-width:700px){
 .ynt-shell{width:min(100% - 28px,1180px)}
 .ynt-page h1{font-size:52px!important}
 .ynt-actions{flex-direction:column}
 .ynt-btn{width:100%}
 .ynt-grid{grid-template-columns:1fr}
 .ynt-final-card{grid-template-columns:1fr}
}


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