/* =========================================
   TALLERES VIVENCIALES — ESCOLI
   Identidad: Roboto
   Paleta: #6A0572 · #F74436 · #F08E03 · #d8b26e
   Fondo: blanco premium — consistente con cursos
========================================= */

/* ══════════════════════════════
   VARIABLES
══════════════════════════════ */
:root {
    --tv-plum:      #6A0572;
    --tv-plum-lt:   #8f0a9e;
    --tv-plum-dim:  rgba(106,5,114,.07);
    --tv-plum-bdr:  rgba(106,5,114,.13);
    --tv-red:       #F74436;
    --tv-gold:      #F08E03;
    --tv-gold-fine: #d8b26e;
    --tv-ink:       #1E1E2F;
    --tv-ink-soft:  #3d2f4a;
    --tv-ink-muted: rgba(30,22,47,.52);
    --tv-bg:        #ffffff;
    --tv-bg-2:      #faf7fd;
    --tv-bg-3:      #f3eefb;
    --tv-white:     #ffffff;
    --tv-shadow-sm: 0 4px 18px rgba(106,5,114,.07);
    --tv-shadow-md: 0 12px 36px rgba(106,5,114,.11);
    --tv-shadow-lg: 0 24px 56px rgba(106,5,114,.15);
    --tv-f-t: 'Roboto', system-ui, sans-serif;
    --tv-f-b: 'Roboto', system-ui, sans-serif;
    --tv-r-xs: 6px;
    --tv-r-sm: 12px;
    --tv-r-md: 18px;
    --tv-r-lg: 24px;
    --tv-r-xl: 32px;
}

/* ══════════════════════════════
   SCOPE & RESET
══════════════════════════════ */
.tv-page {
    font-family: var(--tv-f-b);
    background: var(--tv-bg);
    color: var(--tv-ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
}
.tv-page *, .tv-page *::before, .tv-page *::after {
    box-sizing: border-box;
}
.tv-page a {
    text-decoration: none !important;
    color: inherit !important;
}
.tv-page img { display: block; max-width: 100%; }

.tv-page .wrap {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.tv-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 300;
    padding: 20px 0;
    transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
    border-bottom: 1px solid transparent;
}
.tv-nav.scrolled {
    background: rgba(255,255,255,.94) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 13px 0;
    border-bottom-color: rgba(106,5,114,.12);
    box-shadow: 0 4px 24px rgba(106,5,114,.07);
}
.tv-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tv-logo {
    font-family: var(--tv-f-t);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--tv-ink) !important;
    text-decoration: none !important;
}
.tv-logo span { color: var(--tv-plum) !important; }

.tv-nav-cta {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--tv-plum), #3d0045) !important;
    color: var(--tv-white) !important;
    border-radius: var(--tv-r-sm);
    font-family: var(--tv-f-t);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .03em;
    border: none !important;
    text-decoration: none !important;
    transition: box-shadow .25s, transform .25s;
    box-shadow: 0 6px 20px rgba(106,5,114,.25);
}
.tv-nav-cta:hover {
    box-shadow: 0 10px 28px rgba(106,5,114,.38);
    transform: translateY(-1px);
    color: var(--tv-white) !important;
}

/* ══════════════════════════════
   EYEBROW
══════════════════════════════ */
.tv-page .tv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--tv-f-t);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--tv-plum);
    margin-bottom: 18px;
}
.tv-page .tv-eyebrow::before,
.tv-page .tv-eyebrow::after {
    content: '';
    display: block;
    width: 20px; height: 1.5px;
    background: linear-gradient(90deg, var(--tv-plum), var(--tv-gold));
    border-radius: 2px;
    flex-shrink: 0;
}

/* ══════════════════════════════
   BOTONES
══════════════════════════════ */
.tv-page .tv-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 28px !important;
    border-radius: var(--tv-r-sm) !important;
    font-family: var(--tv-f-t) !important;
    font-size: .88rem !important;
    font-weight: 600 !important;
    letter-spacing: .03em;
    transition: transform .22s, box-shadow .22s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    width: 100%;
}
.tv-page .tv-btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22), transparent 70%);
    opacity: 0; transition: opacity .4s; pointer-events: none;
}
.tv-page .tv-btn:hover::after { opacity: 1; }
.tv-page .tv-btn:active       { transform: scale(.97) !important; }

.tv-page .tv-btn-gold {
    background: linear-gradient(135deg, var(--tv-gold), #c47500) !important;
    color: var(--tv-white) !important;
    border: none !important;
    box-shadow: 0 8px 28px rgba(240,142,3,.3);
}
.tv-page .tv-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(240,142,3,.42) !important;
    color: var(--tv-white) !important;
}

.tv-page .tv-btn-outline-light {
    background: var(--tv-white) !important;
    border: 1.5px solid var(--tv-plum-bdr) !important;
    color: var(--tv-plum) !important;
    box-shadow: var(--tv-shadow-sm);
}
.tv-page .tv-btn-outline-light:hover {
    background: var(--tv-plum-dim) !important;
    border-color: rgba(106,5,114,.28) !important;
    transform: translateY(-2px);
    color: var(--tv-plum) !important;
}


/* ══════════════════════════════
   HERO — si-hero
══════════════════════════════ */
.si-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}
.si-hero {
    padding: 140px 0 90px;
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(240,142,3,.08), transparent 22%),
        radial-gradient(circle at bottom right, rgba(106,5,114,.10), transparent 28%),
        linear-gradient(180deg, #f7f1fb 0%, #f3edf8 100%);
}
.si-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}
.si-badge {
    display: inline-block;
    color: #a25f00;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.si-hero-copy h1 {
    font-family: var(--tv-f-t);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.96;
    margin: 0 0 10px;
    color: #2c1a3f;
    font-weight: 700;
}
.si-hero-copy h2 {
    font-family: var(--tv-f-b);
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    line-height: 1.35;
    margin: 0 0 22px;
    font-weight: 500;
    color: #6a0572;
}
.si-hero-copy p {
    font-family: var(--tv-f-b);
    font-size: 1.05rem;
    line-height: 1.95;
    color: rgba(44,26,63,.82);
    max-width: 620px;
    margin: 0 0 28px;
    font-weight: 400;
}
.si-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.si-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 14px;
    text-decoration: none !important;
    font-family: var(--tv-f-t);
    font-weight: 700;
    font-size: .9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}
.si-btn-primary {
    background: linear-gradient(135deg, #F08E03, #d97706);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(240,142,3,.22);
}
.si-btn-primary::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.3), transparent);
    opacity: 0; transition: .4s; pointer-events: none;
}
.si-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(240,142,3,.3); }
.si-btn-primary:hover::after { opacity: 1; }
.si-btn-secondary {
    border: 1px solid rgba(106,5,114,.14) !important;
    color: #6a0572 !important;
    background: rgba(255,255,255,.55);
}
.si-btn-secondary:hover { transform: translateY(-3px); background: rgba(255,255,255,.88); }
.si-hero-copy {
    opacity: 0;
    transform: translateY(30px);
    animation: si-fadeUp .8s ease forwards;
}
.si-hero-visual {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: si-fadeUp .8s ease .2s forwards;
}
@keyframes si-fadeUp { to { opacity: 1; transform: translateY(0); } }
.si-image-frame {
    position: relative;
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(240,142,3,.40), rgba(106,5,114,.18), rgba(255,255,255,.80));
    box-shadow: 0 24px 60px rgba(63,35,85,.16);
}
.si-image-frame img {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: contain;
    max-height: none;
}
@media (max-width: 950px) {
    .si-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .si-hero { padding: 100px 0 60px; }
    .si-actions { flex-direction: column; }
    .si-btn { width: 100%; justify-content: center; }
    .si-image-frame img { max-height: none; }
}
@media (max-width: 480px) {
    .si-hero { padding: 90px 0 50px; }
    .si-hero-copy h1 { font-size: 2.5rem; }
    .si-hero-copy h2 { font-size: 1.15rem; }
}

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.tv-page .tv-marquee {
    background: linear-gradient(90deg, #3d0045, var(--tv-plum), #3d0045);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(240,142,3,.22);
    border-bottom: 1px solid rgba(240,142,3,.22);
}
.tv-page .tv-marquee-track {
    display: inline-flex;
    animation: tv-marquee 26s linear infinite;
    will-change: transform;
}
.tv-page .tv-marquee-track span {
    font-family: var(--tv-f-t);
    font-size: .65rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.85); padding: 0 34px;
}
.tv-page .tv-marquee-track span::before {
    content: '◆'; margin-right: 34px;
    color: var(--tv-gold-fine); font-size: .45rem;
}
@keyframes tv-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   EDITORIAL
══════════════════════════════ */
.tv-page .tv-editorial {
    padding: 80px 0;
    background: var(--tv-bg);
    position: relative; overflow: hidden;
}
.tv-page .tv-editorial::before {
    content: ''; position: absolute;
    top: -60px; left: -60px; width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106,5,114,.06) 0%, transparent 65%);
    pointer-events: none;
}

.tv-page .tv-editorial-h {
    font-family: var(--tv-f-t);
    font-size: clamp(2rem, 8vw, 3.2rem);
    font-weight: 700; line-height: 1.15;
    color: var(--tv-ink); letter-spacing: -.022em;
    margin-bottom: 36px;
}
.tv-page .tv-editorial-h em {
    font-style: italic; font-weight: 300;
    background: linear-gradient(135deg, var(--tv-plum), var(--tv-gold-fine));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tv-page .tv-editorial-body p {
    font-family: var(--tv-f-b); font-size: 1rem;
    line-height: 1.95; color: rgba(30,22,47,.72);
    margin-bottom: 20px; font-weight: 400;
}
.tv-page .tv-editorial-quote {
    margin-top: 10px; padding: 22px 24px;
    background: var(--tv-plum-dim);
    border: 1px solid var(--tv-plum-bdr);
    border-left: 3px solid var(--tv-plum);
    border-radius: 0 var(--tv-r-sm) var(--tv-r-sm) 0;
}
.tv-page .tv-editorial-quote p {
    font-size: .96rem; line-height: 1.85;
    color: var(--tv-plum); font-weight: 500;
    margin: 0; font-style: italic;
}

/* ══════════════════════════════
   TALLERES — lista
══════════════════════════════ */
.tv-page .tv-talleres {
    padding: 80px 0;
    background: var(--tv-bg-2);
    position: relative; overflow: hidden;
}
.tv-page .tv-talleres::before {
    content: ''; position: absolute;
    top: -80px; right: -80px; width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106,5,114,.07) 0%, transparent 65%);
    pointer-events: none;
}
.tv-page .tv-talleres::after {
    content: ''; position: absolute;
    bottom: -60px; left: -40px; width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,68,54,.05) 0%, transparent 65%);
    pointer-events: none;
}

.tv-page .tv-talleres-h {
    font-family: var(--tv-f-t);
    font-size: clamp(1.9rem, 7.5vw, 3rem);
    font-weight: 700; letter-spacing: -.022em;
    color: var(--tv-ink); margin-bottom: 14px; line-height: 1.12;
}
.tv-page .tv-talleres-sub {
    font-family: var(--tv-f-b); font-size: .95rem;
    line-height: 1.9; color: rgba(30,22,47,.68);
    margin-bottom: 52px; font-weight: 400;
}

.tv-page .tv-taller-item {
    display: grid;
    grid-template-columns: 52px 1fr 36px;
    gap: 16px; align-items: center;
    padding: 28px 14px;
    border-top: 1px solid rgba(106,5,114,.1);
    cursor: pointer; border-radius: var(--tv-r-sm);
    transition: background .3s, border-color .3s;
    position: relative; background: transparent;
}
.tv-page .tv-taller-item:last-child {
    border-bottom: 1px solid rgba(106,5,114,.1);
}
.tv-page .tv-taller-item::before {
    content: ''; position: absolute;
    left: 0; top: 0; bottom: 0; width: 0;
    background: linear-gradient(180deg, var(--tv-plum), var(--tv-red));
    border-radius: var(--tv-r-xs) 0 0 var(--tv-r-xs);
    transition: width .3s;
}
.tv-page .tv-taller-item:hover::before,
.tv-page .tv-taller-item.touch::before { width: 3px; }
.tv-page .tv-taller-item:hover,
.tv-page .tv-taller-item.touch {
    background: var(--tv-plum-dim);
    border-color: rgba(106,5,114,.2);
}

.tv-page .tv-taller-num {
    font-family: var(--tv-f-t); font-size: 2.6rem; font-weight: 700;
    color: rgba(106,5,114,.18); line-height: 1; transition: color .3s; text-align: center;
}
.tv-page .tv-taller-item:hover .tv-taller-num,
.tv-page .tv-taller-item.touch .tv-taller-num { color: var(--tv-plum); }

.tv-page .tv-taller-text h4 {
    font-family: var(--tv-f-t); font-size: .97rem; font-weight: 600;
    color: var(--tv-ink); margin-bottom: 5px;
    line-height: 1.35; letter-spacing: -.01em; transition: color .3s;
}
.tv-page .tv-taller-item:hover .tv-taller-text h4,
.tv-page .tv-taller-item.touch .tv-taller-text h4 { color: var(--tv-plum); }

.tv-page .tv-taller-text p {
    font-family: var(--tv-f-b); font-size: .86rem;
    line-height: 1.65; color: rgba(30,22,47,.62); margin: 0; font-weight: 400;
}

.tv-page .tv-taller-arrow {
    width: 34px; height: 34px;
    border: 1px solid var(--tv-plum-bdr);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--tv-plum); font-size: .75rem; flex-shrink: 0;
    transition: background .3s, transform .3s, border-color .3s, color .3s;
}
.tv-page .tv-taller-item:hover .tv-taller-arrow,
.tv-page .tv-taller-item.touch .tv-taller-arrow {
    background: linear-gradient(135deg, var(--tv-plum), #3d0045);
    border-color: var(--tv-plum);
    color: var(--tv-white);
    transform: rotate(45deg);
}

/* ══════════════════════════════
   EXPERIENCIA — cards
══════════════════════════════ */
.tv-page .tv-experiencia {
    padding: 80px 0;
    background: var(--tv-bg);
    position: relative; overflow: hidden;
}
.tv-page .tv-experiencia::before {
    content: ''; position: absolute;
    top: 50%; right: -100px; transform: translateY(-50%);
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,142,3,.05) 0%, transparent 65%);
    pointer-events: none;
}

.tv-page .tv-exp-intro-text {
    font-family: var(--tv-f-b); font-size: 1rem;
    line-height: 1.9; color: rgba(30,22,47,.7);
    margin-bottom: 10px; font-weight: 400;
}
.tv-page .tv-exp-intro-text.italic {
    font-style: italic; color: var(--tv-plum);
    font-weight: 500; margin-bottom: 44px;
}

.tv-page .tv-exp-cards {
    display: grid; grid-template-columns: 1fr; gap: 16px;
}
.tv-page .tv-exp-card {
    background: var(--tv-white);
    border: 1.5px solid var(--tv-plum-bdr);
    border-radius: var(--tv-r-lg);
    padding: 30px 24px;
    position: relative; overflow: hidden;
    box-shadow: var(--tv-shadow-sm);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.tv-page .tv-exp-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--tv-plum), var(--tv-red));
    transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.tv-page .tv-exp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tv-shadow-lg);
    border-color: rgba(216,178,110,.45);
}
.tv-page .tv-exp-card:hover::before { transform: scaleX(1); }

.tv-page .tv-exp-icon {
    width: 46px; height: 46px;
    border-radius: var(--tv-r-sm);
    background: var(--tv-plum-dim);
    border: 1px solid var(--tv-plum-bdr);
    display: flex; align-items: center; justify-content: center;
    color: var(--tv-plum); font-size: 1.1rem;
    margin-bottom: 20px; position: relative; z-index: 1;
}
.tv-page .tv-exp-card h5 {
    font-family: var(--tv-f-t); font-size: 1rem; font-weight: 700;
    color: var(--tv-ink); margin-bottom: 10px;
    letter-spacing: -.01em; position: relative; z-index: 1;
}
.tv-page .tv-exp-card p {
    font-family: var(--tv-f-b); font-size: .9rem;
    line-height: 1.78; color: rgba(30,22,47,.68);
    margin: 0; font-weight: 400; position: relative; z-index: 1;
}

/* ══════════════════════════════
   DETALLES
══════════════════════════════ */
.tv-page .tv-detalles {
    padding: 80px 0;
    background: var(--tv-bg-2);
    position: relative; overflow: hidden;
}
.tv-page .tv-detalles::after {
    content: ''; position: absolute;
    bottom: -80px; right: -60px; width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106,5,114,.06) 0%, transparent 65%);
    pointer-events: none;
}

.tv-page .tv-detalles-h {
    font-family: var(--tv-f-t);
    font-size: clamp(1.9rem, 7.5vw, 2.8rem);
    font-weight: 700; color: var(--tv-ink);
    margin-bottom: 44px; letter-spacing: -.022em; line-height: 1.15;
}
.tv-page .tv-detalles-h em {
    font-style: italic; font-weight: 300;
    background: linear-gradient(135deg, var(--tv-gold), var(--tv-gold-fine));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tv-page .tv-detalles-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.tv-page .tv-detalle-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

.tv-page .tv-detalle-card {
    background: var(--tv-white);
    border: 1.5px solid var(--tv-plum-bdr);
    border-radius: var(--tv-r-md);
    padding: 26px 18px; text-align: center;
    box-shadow: var(--tv-shadow-sm);
    transition: transform .28s, background .28s, border-color .28s, box-shadow .28s;
    position: relative; overflow: hidden;
}
.tv-page .tv-detalle-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--tv-plum), var(--tv-gold));
    opacity: 0; transition: opacity .3s;
}
.tv-page .tv-detalle-card:hover {
    transform: translateY(-5px);
    background: var(--tv-plum-dim);
    border-color: rgba(106,5,114,.25);
    box-shadow: var(--tv-shadow-md);
}
.tv-page .tv-detalle-card:hover::after { opacity: 1; }

.tv-page .tv-det-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--tv-plum-dim);
    border: 1px solid var(--tv-plum-bdr);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; color: var(--tv-plum); font-size: .9rem;
    transition: background .3s;
}
.tv-page .tv-detalle-card:hover .tv-det-icon {
    background: rgba(106,5,114,.14);
}
.tv-page .tv-det-title {
    font-family: var(--tv-f-t); font-size: .62rem; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    color: var(--tv-ink-muted); margin-bottom: 7px; transition: color .3s;
}
.tv-page .tv-det-val {
    font-family: var(--tv-f-b); font-size: .92rem; font-weight: 500;
    color: var(--tv-ink); line-height: 1.45; transition: color .3s;
}

/* ══════════════════════════════
   FRASE CENTRAL
══════════════════════════════ */
.tv-page .tv-frase {
    padding: 80px 0;
    background: var(--tv-bg-3);
    text-align: center; position: relative; overflow: hidden;
}
.tv-page .tv-frase::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(106,5,114,.08) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(247,68,54,.05) 0%, transparent 55%);
    pointer-events: none;
}
.tv-page .tv-frase::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--tv-plum-bdr), transparent);
}
.tv-page .tv-frase-inner { position: relative; z-index: 1; }

.tv-page .tv-frase-h {
    font-family: var(--tv-f-t);
    font-size: clamp(1.8rem, 7.5vw, 3.5rem);
    font-weight: 700; color: var(--tv-ink);
    line-height: 1.15; margin-bottom: 12px; letter-spacing: -.022em;
}
.tv-page .tv-frase-sub {
    font-family: var(--tv-f-b);
    font-size: clamp(1rem, 4.5vw, 1.5rem);
    font-style: italic; font-weight: 300;
    background: linear-gradient(135deg, var(--tv-plum), var(--tv-gold-fine));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════
   CTA FINAL
══════════════════════════════ */
.tv-page .tv-cta {
    padding: 80px 0 110px;
    background: var(--tv-bg-2);
    position: relative; overflow: hidden;
}
.tv-page .tv-cta::before {
    content: ''; position: absolute;
    bottom: -140px; left: 50%; transform: translateX(-50%);
    width: 620px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(106,5,114,.07) 0%, rgba(247,68,54,.03) 45%, transparent 68%);
    pointer-events: none;
}
.tv-page .tv-cta::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--tv-plum-bdr), rgba(240,142,3,.15), transparent);
}

.tv-page .tv-cta-box {
    text-align: center; position: relative; z-index: 1;
    max-width: 560px; margin: 0 auto;
}
.tv-page .tv-cta-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--tv-f-t); font-size: .65rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--tv-plum); margin-bottom: 26px;
}
.tv-page .tv-cta-eyebrow .line {
    width: 22px; height: 1.5px;
    background: linear-gradient(90deg, var(--tv-plum), var(--tv-gold));
    display: inline-block; border-radius: 2px;
}

.tv-page .tv-cta-h {
    font-family: var(--tv-f-t);
    font-size: clamp(2.4rem, 10vw, 4.8rem);
    font-weight: 700; color: var(--tv-ink);
    line-height: .98; margin-bottom: 22px; letter-spacing: -.03em;
}
.tv-page .tv-cta-h em {
    font-style: italic; font-weight: 300; display: block;
    background: linear-gradient(135deg, var(--tv-plum), var(--tv-gold-fine));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tv-page .tv-cta-p {
    font-family: var(--tv-f-b); font-size: .97rem;
    line-height: 1.88; color: rgba(30,22,47,.68);
    margin-bottom: 14px; font-weight: 400;
}
.tv-page .tv-cta-p strong { color: var(--tv-plum); font-weight: 600; }

.tv-page .tv-cta-urgency {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 26px auto 32px; padding: 12px 24px;
    border: 1px solid rgba(247,68,54,.25); border-radius: 50px;
    background: rgba(247,68,54,.06);
}
.tv-page .tv-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--tv-red);
    animation: tv-pulse-dot 1.9s ease infinite; flex-shrink: 0;
}
@keyframes tv-pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(247,68,54,.4); }
    50%      { box-shadow: 0 0 0 6px rgba(247,68,54,0); }
}
.tv-page .tv-cta-urgency span {
    font-family: var(--tv-f-t); font-size: .78rem; font-weight: 500;
    color: var(--tv-ink-soft); letter-spacing: .01em;
}
.tv-page .tv-cta-actions {
    display: flex; flex-direction: column; gap: 12px;
}

/* Título experiencia (tamaño menor) */
.tv-page .tv-experiencia-h {
    font-size: clamp(1.9rem, 7.5vw, 2.9rem);
    margin-bottom: 0;
}

/* ══════════════════════════════
   FADE ANIMACIONES
══════════════════════════════ */
.tv-page.js-ready .tv-fade {
    opacity: 0; transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.tv-page .tv-fade.vis {
    opacity: 1 !important; transform: translateY(0) !important;
}
.tv-page.js-ready .tv-fade:nth-child(2) { transition-delay: .09s; }
.tv-page.js-ready .tv-fade:nth-child(3) { transition-delay: .18s; }
.tv-page.js-ready .tv-fade:nth-child(4) { transition-delay: .27s; }
.tv-page.js-ready .tv-fade:nth-child(5) { transition-delay: .36s; }

/* ══════════════════════════════
   HERO — MOBILE ≤768px
══════════════════════════════ */
@media (max-width: 768px) {
    .tv-page .tv-hero             { padding: 100px 0 60px; }
}

@media (max-width: 480px) {
    .tv-page .tv-hero             { padding: 90px 0 50px; }
}

/* ══════════════════════════════
   RESPONSIVE — TABLET ≥600px
══════════════════════════════ */
@media (min-width: 600px) {
    .tv-page .tv-hero-actions,
    .tv-page .tv-cta-actions     { flex-direction: row; flex-wrap: wrap; }
    .tv-page .tv-btn              { width: auto; }
    .tv-page .tv-exp-cards        { grid-template-columns: 1fr 1fr; }
    .tv-page .tv-detalles-grid    { grid-template-columns: repeat(3, 1fr); }
    .tv-page .tv-detalle-card:last-child:nth-child(odd) { grid-column: auto; }
}

/* ══════════════════════════════
   RESPONSIVE — DESKTOP ≥860px
══════════════════════════════ */
@media (min-width: 860px) {

    .tv-page .tv-editorial-grid   { display: grid; grid-template-columns: .42fr .58fr; gap: 64px; align-items: start; }
    .tv-page .tv-editorial-sticky { position: sticky; top: 110px; }

    .tv-page .tv-exp-2col         { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: end; margin-bottom: 52px; }
    .tv-page .tv-exp-intro-text.italic { margin-bottom: 0 !important; }
    .tv-page .tv-exp-cards        { grid-template-columns: repeat(3, 1fr); }

    .tv-page .tv-detalles-grid    { grid-template-columns: repeat(5, 1fr); }
    .tv-page .tv-detalle-card:last-child:nth-child(odd) { grid-column: auto; }

    .tv-page .tv-taller-item      { grid-template-columns: 70px 1fr 40px; gap: 22px; }
    .tv-page .tv-taller-num       { font-size: 3rem; }
}

@media (min-width: 1040px) {
    .tv-page .wrap { width: min(1140px, calc(100% - 80px)); }
}

/* ══════════════════════════════
   MOBILE XS ≤400px
══════════════════════════════ */
@media (max-width: 400px) {
    .tv-nav-cta                   { display: none; }
    .tv-page .tv-detalles-grid    { grid-template-columns: 1fr; }
    .tv-page .tv-detalle-card:last-child:nth-child(odd) { grid-column: auto; }
}