﻿/* La TV del Abuelo — Design System + Bootstrap mapping */

/* ──────────────────────────────────────────────────────────────────────────────
   1) TOKENS DE COLOR (fundacionales)
   ─────────────────────────────────────────────────────────────────────────── */
:root {
    /* Paleta base */
    --bg: #F4EDE2;
    --bg-alt: #EAF2F7;
    --surface: #FFFFFF;
    --text: #1F4753;
    --muted: #4B6570;
    /* Marca / acción */
    --brand: #2F6A77;
    --brand-600: #285A65;
    --brand-200: #C9DEE2;
    --brand-050: #EDF5F7;
    /* Integraciones */
    --kofi: #29ABE0;
    --kofi-600: #218FBD;
    --paypal: #003087;
    --paypal-600: #00256A;
    /* Estados */
    --success: #2E7D32;
    --warning: #B26A00;
    --danger: #B00020;
    --info: #2F6A77;
    /* Bordes, radios, sombras */
    --radius: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
    --shadow: 0 2px 8px rgba(0,0,0,.08);
    /* Tipografía y ritmo */
    --font-base: 18px;
    --lh: 1.6;
    --scale-xxl: clamp(2.0rem, 4.5vw, 2.6rem);
    --scale-xl: clamp(1.6rem, 3.0vw, 2.0rem);
    --scale-lg: clamp(1.25rem,2.2vw, 1.5rem);
    --scale-md: 1rem;
    --scale-sm: .9rem;
    /* Espaciado */
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    /* Enlaces/foco */
    --focus-ring: 0 0 0 3px #fff, 0 0 0 6px rgba(47,106,119,.6);
    /* MAPEADO Bootstrap (temprano + global) */
    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
}

/* ──────────────────────────────────────────────────────────────────────────────
   2) MODO OSCURO (pref. sistema)
   ─────────────────────────────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0E1416;
        --bg-alt: #0F1A1E;
        --surface: #0F1A1E;
        --text: #E7EEF1;
        --muted: #B5C3C9;
        --brand: #3C8C99;
        --brand-600: #2C6D79;
        --brand-200: #27464D;
        --brand-050: #142A2F;
        --shadow-sm: 0 1px 4px rgba(0,0,0,.4);
        --shadow: 0 4px 16px rgba(0,0,0,.45);

    /* mantener mapeo en dark */
    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
  }
}

/* ──────────────────────────────────────────────────────────────────────────────
   3) BASE TIPOGRÁFICA Y FONDOS
   ─────────────────────────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth
}

* {
    box-sizing: border-box
}

body {
    /* Fallback seguro: usa --bs-body-bg si está presente, si no usa --bg */
    background-color: var(--bs-body-bg, var(--bg));
    color: var(--bs-body-color, var(--text));
    font-size: var(--font-base);
    line-height: var(--lh);
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

h1 {
    font-size: var(--scale-xxl);
    line-height: 1.25;
    margin: 0 0 var(--space-3)
}

h2 {
    font-size: var(--scale-xl);
    line-height: 1.3;
    margin: 0 0 var(--space-3)
}

h3 {
    font-size: var(--scale-lg);
    line-height: 1.3;
    margin: 0 0 var(--space-2)
}

p {
    margin: 0 0 var(--space-4)
}

small, .muted {
    color: var(--muted)
}

/* Utilidades design system */
.ltv-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-4) var(--space-4)
}

.surface {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ──────────────────────────────────────────────────────────────────────────────
   4) Bootstrap mapping
   ─────────────────────────────────────────────────────────────────────────── */
:root {
    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
    --bs-link-color: var(--brand);
    --bs-link-hover-color: var(--brand-600);
    --bs-focus-ring-color: rgba(47,106,119,.35);
    --bs-primary: var(--brand);
    --bs-primary-rgb: 47,106,119;
    --bs-secondary: var(--muted);
    --bs-success: var(--success);
    --bs-warning: var(--warning);
    --bs-danger: var(--danger);
    --bs-info: var(--info);
    --bs-border-radius: var(--radius);
    --bs-border-radius-sm: calc(var(--radius) - 4px);
    --bs-border-radius-lg: var(--radius-lg);
    --bs-border-radius-xl: var(--radius-lg);
    --bs-border-radius-xxl: var(--radius-pill);
    --bs-btn-border-radius: var(--radius);
    --bs-box-shadow: var(--shadow);
    --bs-box-shadow-sm: var(--shadow-sm);
}

.card {
    background: var(--surface);
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-600);
    --bs-btn-hover-border-color: var(--brand-600);
    --bs-btn-focus-shadow-rgb: 47,106,119;
}

.btn-outline-primary {
    --bs-btn-color: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-050);
    --bs-btn-hover-border-color: var(--brand-600);
}

.btn-link {
    color: var(--brand)
}

    .btn-link:hover {
        color: var(--brand-600)
    }

.btn-kofi {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--kofi);
    --bs-btn-border-color: var(--kofi);
    --bs-btn-hover-bg: var(--kofi-600);
    --bs-btn-hover-border-color: var(--kofi-600);
}

.btn-paypal {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--paypal);
    --bs-btn-border-color: var(--paypal);
    --bs-btn-hover-bg: var(--paypal-600);
    --bs-btn-hover-border-color: var(--paypal-600);
}

.btn-ghost {
    --bs-btn-color: var(--brand);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-050);
    --bs-btn-hover-border-color: var(--brand-600);
    border-width: 2px;
}

/* ──────────────────────────────────────────────────────────────────────────────
   5) Elementos comunes
   ─────────────────────────────────────────────────────────────────────────── */
.kbd {
    font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
    background: var(--brand-050);
    border-radius: 8px;
    padding: .15rem .4rem;
    border: 1px solid var(--brand-200)
}

.grid {
    display: grid;
    gap: var(--space-4)
}

.grid--2 {
    grid-template-columns: repeat(2, minmax(0,1fr))
}

@media (max-width: 760px) {
    .grid--2 {
        grid-template-columns: 1fr
    }
}

.link {
    color: var(--brand);
    text-underline-offset: 2px
}

    .link:focus-visible {
        outline: 3px solid rgba(47,106,119,.45);
        outline-offset: 2px
    }

.tabs {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow)
}

.tabs__list {
    display: flex;
    flex-wrap: wrap
}

.tabs__trigger {
    flex: 1 1 auto;
    text-align: center;
    padding: .75rem 1rem;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    font-weight: 700;
    color: var(--muted);
}

    .tabs__trigger[aria-selected="true"] {
        color: var(--text);
        border-bottom-color: var(--brand)
    }

.tabs__panel {
    padding: 1rem 1.25rem
}

.step {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin: .5rem 0
}

.step__num {
    min-width: 28px;
    height: 28px;
    border-radius: var(--radius-pill);
    background: var(--brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

/* ──────────────────────────────────────────────────────────────────────────────
   6) Utilidades para páginas inmersivas (vídeo en negro)
   ─────────────────────────────────────────────────────────────────────────── */
.theme-immersive {
    background: #000;
    color: #fff;
}

    .theme-immersive .card,
    .theme-immersive .surface {
        background: rgba(20,20,20,.92);
        color: #fff;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
    }

/* Botón ghost para fondos negros */
.btn-ghost-light {
    --bs-btn-color: #fff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgba(255,255,255,.7);
    --bs-btn-hover-bg: rgba(255,255,255,.12);
    --bs-btn-hover-border-color: #fff;
    border-width: 2px;
}
/* Navbar con color de marca (azul oscuro del tema) */
.navbar.bg-brand-600 {
    background-color: var(--brand-600) !important;
}

.navbar.bg-brand {
    background-color: var(--brand) !important;
}

/* Resalte de enlace activo en la navbar (discreto y accesible) */
.navbar.navbar-dark .nav-link.active {
    color: #fff;
    font-weight: 700;
    position: relative;
}

    .navbar.navbar-dark .nav-link.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -.35rem;
        width: 100%;
        height: 2px;
        background: rgba(255,255,255,.9);
        border-radius: 2px;
    }
/* Fix contraste en hover de outline-primary (Temas) */
.btn-outline-primary {
    --bs-btn-color: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-050);
    --bs-btn-hover-border-color: var(--brand-600);
    --bs-btn-hover-color: var(--brand); /* ← texto legible sobre fondo claro */
    --bs-btn-active-bg: var(--brand-200);
    --bs-btn-active-border-color: var(--brand-600);
    --bs-btn-active-color: var(--brand);
    --bs-btn-disabled-color: var(--brand);
}
/* Logo de marca en navbar */
.navbar-brand .brand-logo {
    width: 28px;
    height: 28px;
    border-radius: var(--radius, 8px);
    box-shadow: var(--shadow-sm, 0 1px 4px rgba(0,0,0,.06));
    object-fit: contain;
}
.tvda-twitch-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
}

    .tvda-twitch-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        background: #000;
    }

.tvda-twitch-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(rgba(0,0,0,.65), rgba(0,0,0,.9));
    transition: opacity .3s ease;
    z-index: 2;
}

    .tvda-twitch-loading.tvda-hide {
        opacity: 0;
        pointer-events: none;
    }

@media (prefers-reduced-motion: reduce) {
    .tvda-twitch-loading {
        transition: none;
    }
}