/* ════════════════════════════════════════════════════════════════════════
   masterclass-evolved.css — ConsultorIA · Evolución visual de masterclass.html
   Carga SOLO en masterclass.html, al final del <head> (tras el <style> inline).
   Toque ligero: firma de marca (chevron eyebrows), barra de progreso y alineación.
   La página ya usa el azul premium del brandbook; aquí solo se refuerza la marca.
   ════════════════════════════════════════════════════════════════════════ */

/* ── BARRA DE PROGRESO DE SCROLL ─────────────────────────────────────── */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0; z-index: 2000;
    background: linear-gradient(90deg, #002483 0%, #0051FF 45%, #9FC5FF 100%);
    box-shadow: 0 0 12px rgba(0, 81, 255, 0.6);
    transition: width 0.08s linear; pointer-events: none;
}

/* ── EYEBROW DE SECCIÓN (chevron) — sobre fondo azul oscuro ───────────── */
.mc-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 0.45rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.16em; color: #9FC5FF; margin-bottom: 0.9rem;
}
.mc-eyebrow-chev { font-weight: 800; color: #FFFFFF; font-size: 1.1em; transform: translateY(1px); }

/* Eyebrow del hero: un poco más de aire bajo él */
.hero-masterclass .mc-eyebrow { margin-bottom: 1.1rem; }

/* ── DESTELLO EN EL CTA PRINCIPAL ────────────────────────────────────── */
.btn-premium { position: relative; overflow: hidden; }
.btn-premium::after {
    content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.30) 50%, transparent 100%);
    transform: skewX(-18deg); transition: left 0.6s ease; pointer-events: none;
}
.btn-premium:hover::after { left: 130%; }

@media (prefers-reduced-motion: reduce) {
    .scroll-progress { transition: none; }
    .btn-premium::after { display: none; }
}
