/* ===================================================
   TV Walden4 — estilos da seção (usa os tokens de theme.css)
   Canal pseudo-ao-vivo: player 16:9 + selo "ao vivo" + programação.
   =================================================== */

/* Hero um pouco mais largo p/ acomodar o player */
.tv-hero .hero-container { max-width: 1000px; }

/* Selo "No ar" reaproveitando o .live-dot já existente */
.tv-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
}

/* ---------- Palco do player (16:9) ---------- */
.tv-stage-wrap {
    max-width: 900px;
    margin: 40px auto 0;
}

.tv-stage {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;          /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: #000;
    box-shadow: var(--shadow-xl, 0 24px 60px rgba(13, 27, 46, 0.35));
    border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Poster (miniatura) enquanto a API do YouTube não carrega */
.tv-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    z-index: 1;
}

/* O <div> #tv-player é substituído por um <iframe> com o mesmo id */
.tv-stage #tv-player,
.tv-stage iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
}

/* Escudo transparente: engole cliques de pause/seek → sensação de canal */
.tv-shield {
    position: absolute;
    inset: 0;
    z-index: 3;
    cursor: default;
}

/* Overlay de entrada (ativar som) — acima do escudo */
.tv-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(180deg, rgba(13, 27, 46, 0.35), rgba(13, 27, 46, 0.62));
    cursor: pointer;
    transition: opacity var(--dur-mid) var(--ease-out);
}
.tv-overlay[hidden] { display: none; }

.tv-unmute {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--clay-500) 0%, var(--clay-600) 100%);
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(176, 87, 59, 0.5);
    transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-out);
}
.tv-unmute:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 14px 36px rgba(176, 87, 59, 0.58); }
.tv-unmute .material-icons { font-size: 22px; }

.tv-overlay-hint {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0;
}

/* ---------- Controles custom (legendas) — acima do escudo ---------- */
.tv-controls {
    position: absolute;
    z-index: 5;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
}
.tv-cc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: rgba(13, 27, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--r-full);
    cursor: pointer;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.tv-cc:hover { background: rgba(13, 27, 46, 0.82); }
.tv-cc .material-icons { font-size: 18px; }
.tv-cc.is-on { background: var(--clay-500); border-color: var(--clay-400); }

/* Botão de tela cheia (mesmo estilo dos controles) */
.tv-fs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 34px;
    color: var(--white);
    background: rgba(13, 27, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--r-full);
    cursor: pointer;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background var(--dur-fast) var(--ease-out);
}
.tv-fs:hover { background: rgba(13, 27, 46, 0.82); }
.tv-fs .material-icons { font-size: 20px; }

/* ---------- Aparelho de TV (moldura) ---------- */
.tv-set {
    background: linear-gradient(180deg, #232329 0%, #121216 100%);
    padding: 14px;
    border-radius: 20px;
    border: 1px solid #000;
    box-shadow: 0 28px 60px rgba(13, 27, 46, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.tv-set .tv-stage {
    border-radius: 10px;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}
.tv-set-base {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 12px;
}
.tv-set-brand {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.tv-set-led {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #38d39f;
    box-shadow: 0 0 8px #38d39f;
}
.tv-stage:fullscreen,
.tv-stage:-webkit-full-screen {
    padding-bottom: 0;
    width: 100%; height: 100%;
    border-radius: 0;
    background: #000;
}

/* ---------- Barra de canais (zapear) ---------- */
.tv-channelbar {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.tv-chan {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 8px 14px;
    border-radius: var(--r-full);
    border: 1px solid var(--color-border);
    background: var(--warm-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.tv-chan:hover { border-color: var(--clay-300); }
.tv-chan .material-icons { font-size: 18px; color: var(--clay-500); }
.tv-chan-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    background: var(--mist-2, #E9EDF2);
    padding: 1px 7px;
    border-radius: var(--r-full);
}
.tv-chan.is-active { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--white); border-color: var(--navy-700); }
.tv-chan.is-active .material-icons { color: var(--clay-300); }
.tv-chan.is-active .tv-chan-count { background: rgba(255, 255, 255, 0.18); color: var(--white); }

/* ---------- Barra "Agora no ar" ---------- */
.tv-nowbar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 14px 20px;
    background: var(--warm-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
}
.tv-nowbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clay-600);
    padding: 5px 12px;
    background: var(--clay-50);
    border: 1px solid var(--clay-100);
    border-radius: var(--r-full);
}
.tv-nowbar-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

/* ---------- Estado vazio ---------- */
.tv-empty {
    max-width: 520px;
    margin: 40px auto 0;
    padding: 40px;
    text-align: center;
    background: var(--warm-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}
.tv-empty .material-icons { font-size: 48px; color: var(--clay-400); }
.tv-empty h2 { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin: 12px 0 8px; }
.tv-empty p { font-size: 14px; color: var(--color-text-muted); }

/* ---------- Programação ---------- */
.tv-schedule-section { padding: 96px 32px; background: var(--off-white); }

.tv-schedule {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.tv-schedule-item {
    display: flex;
    flex-direction: column;
    background: var(--warm-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-spring), border-color var(--dur-mid) var(--ease-out);
}
.tv-schedule-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--clay-200); }

.tv-schedule-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.tv-schedule-link:hover .tv-schedule-title { color: var(--clay-600); }

.tv-schedule-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}
.tv-schedule-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Badge "No ar" na miniatura — só aparece no item atual */
.tv-schedule-live {
    position: absolute;
    top: 10px; left: 10px;
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    padding: 4px 10px;
    background: rgba(211, 47, 47, 0.92);
    border-radius: var(--r-full);
    backdrop-filter: blur(2px);
}
.tv-schedule-item.is-current .tv-schedule-live { display: inline-flex; }

/* Play/abrir no YouTube — aparece no hover da miniatura */
.tv-schedule-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 27, 46, 0.32);
    opacity: 0;
    transition: opacity var(--dur-fast) var(--ease-out);
}
.tv-schedule-play .material-icons {
    font-size: 40px;
    color: var(--white);
    background: rgba(211, 47, 47, 0.92);
    border-radius: var(--r-full);
    padding: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.tv-schedule-item:hover .tv-schedule-play { opacity: 1; }

.tv-schedule-info {
    position: relative;
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.tv-schedule-num {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--clay-500);
}
.tv-schedule-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    margin: 0;
}
.tv-schedule-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}
.tv-schedule-dur {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
}
.tv-schedule-dur .material-icons { font-size: 16px; }
.tv-schedule-yt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--clay-600);
    opacity: 0;
    transition: opacity var(--dur-fast) var(--ease-out);
}
.tv-schedule-yt .material-icons { font-size: 15px; }
.tv-schedule-item:hover .tv-schedule-yt { opacity: 1; }

/* Item atual em destaque */
.tv-schedule-item.is-current {
    border-color: var(--clay-400);
    box-shadow: 0 0 0 2px var(--clay-300) inset, var(--shadow-md, var(--shadow-sm));
}
.tv-schedule-item.is-current .tv-schedule-thumb img { filter: none; }
.tv-schedule-item:not(.is-current) .tv-schedule-thumb img { filter: saturate(0.92); }

/* Próximo item (marcado pelo JS) */
.tv-schedule-item.is-next { border-color: var(--clay-200); }

/* Tag do canal na barra "Agora no ar" */
.tv-nowbar-chan {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-700);
    padding: 4px 10px;
    background: var(--mist-2, #E9EDF2);
    border-radius: var(--r-full);
}

/* ---------- Guia de programação ---------- */
.tv-guide-section { padding: 96px 32px; background: var(--off-white); }
.tv-guide-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 860px;
    margin: 0 auto 32px;
}
.tv-gchip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: var(--r-full);
    border: 1px solid var(--color-border);
    background: var(--warm-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.tv-gchip .material-icons { font-size: 16px; color: var(--clay-500); }
.tv-gchip:hover { border-color: var(--clay-300); }
.tv-gchip.is-active { background: var(--navy-800); color: var(--white); border-color: var(--navy-700); }
.tv-gchip.is-active .material-icons { color: var(--clay-300); }

.tv-guide { max-width: 760px; margin: 0 auto; }
.tv-guide-day { margin-bottom: 22px; }
.tv-guide-daylabel {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clay-600);
    margin: 0 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
}
.tv-guide-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: var(--r-md);
    text-decoration: none;
    color: inherit;
    transition: background var(--dur-fast) var(--ease-out);
}
.tv-guide-row:hover { background: var(--clay-50); }
.tv-guide-time {
    flex: 0 0 auto;
    width: 60px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy-800);
}
.tv-guide-thumb { flex: 0 0 auto; width: 96px; height: 54px; object-fit: cover; border-radius: 8px; background: #000; }
.tv-guide-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.tv-guide-title {
    font-weight: 600; color: var(--ink); line-height: 1.35; font-size: 14px;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
}
.tv-guide-sub { font-size: 12px; color: var(--color-text-muted); }
.tv-guide-open { font-size: 16px; color: var(--clay-500); opacity: 0; flex: 0 0 auto; transition: opacity var(--dur-fast) var(--ease-out); }
.tv-guide-row:hover .tv-guide-open { opacity: 1; }
.tv-guide-row.is-live { background: var(--clay-50); box-shadow: inset 2px 0 0 #d32f2f; }
.tv-guide-row.is-live .tv-guide-time { color: #d32f2f; }
.tv-guide-empty { text-align: center; color: var(--color-text-muted); }
.tv-guide-fallback { list-style: none; padding: 0; max-width: 760px; margin: 0 auto; }
.tv-guide-fallback li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--color-border); font-size: 14px; }
.tv-guide-fallback a { color: var(--navy-800); text-decoration: none; }
.tv-guide-fallback a:hover { color: var(--clay-600); }

/* ---------- Responsivo ---------- */
@media (max-width: 640px) {
    .tv-schedule-section { padding: 64px 20px; }
    .tv-schedule { grid-template-columns: 1fr; }
    .tv-nowbar { flex-direction: column; align-items: flex-start; gap: 8px; }
    .tv-unmute { font-size: 15px; padding: 12px 22px; }
    .tv-controls { top: 8px; right: 8px; }
    .tv-cc-label { display: none; }
    .tv-cc { padding: 8px; }
    .tv-schedule-yt { opacity: 1; }   /* sem hover no touch: mostra sempre o link */
    .tv-set { padding: 8px; border-radius: 14px; }
    .tv-guide-section { padding: 64px 16px; }
    .tv-guide-thumb { width: 72px; height: 40px; }
    .tv-guide-time { width: 48px; font-size: 13px; }
    .tv-guide-open { display: none; }
    .tv-nowbar-chan { order: 3; }
}

/* =====================================================================
   Visual estilo YouTube — escopo .pg-tv (só a página da TV)
   Sobrepõe o tema/estilos base acima. Layout limpo, chips, cards.
   ===================================================================== */
.pg-tv {
    --yt-text: #0f0f0f;
    --yt-text-2: #606060;
    --yt-chip: #f2f2f2;
    --yt-chip-h: #e5e5e5;
    --yt-line: #e5e5e5;
    --yt-red: #f10000;
    background: #fff;
    font-family: 'Roboto', var(--font-body), system-ui, -apple-system, sans-serif;
    color: var(--yt-text);
}
.pg-tv .section-container { max-width: 1000px; }

/* ---- Hero enxuto (cabeçalho de canal) ---- */
.pg-tv .hero { background: #fff; padding: 28px 24px 4px; min-height: 0; }
.pg-tv .hero-bg,
.pg-tv .hero-divider { display: none; }
.pg-tv .hero-container { max-width: 1000px; }
.pg-tv .hero-subtitle { display: none; }
.pg-tv .hero-eyebrow { justify-content: center; margin-bottom: 10px; }
.pg-tv .hero-eyebrow > .material-icons { display: none; }
.pg-tv .tv-live-badge {
    background: var(--yt-red); color: #fff;
    padding: 3px 9px; border-radius: 6px;
    font-size: 12px; letter-spacing: 0.02em;
}
.pg-tv .tv-live-badge .live-dot { background: #fff; box-shadow: none; }
.pg-tv .hero-title {
    color: var(--yt-text);
    font-family: var(--font-display), 'Roboto', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    text-align: center; margin-bottom: 4px;
}
.pg-tv .hero-title em { color: var(--yt-red); font-style: normal; }

/* ---- Aparelho de TV: moldura fina e moderna ---- */
.pg-tv .tv-stage-wrap { max-width: 960px; }
.pg-tv .tv-set {
    background: #0f0f0f;
    padding: 8px; border-radius: 16px; border: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}
.pg-tv .tv-set .tv-stage { border-radius: 10px; box-shadow: none; }
.pg-tv .tv-set-base { padding-top: 8px; }
.pg-tv .tv-set-brand { color: rgba(255, 255, 255, 0.7); }

/* ---- Bloco de título estilo "watch page" ---- */
.pg-tv .tv-nowbar {
    display: block;
    background: transparent; border: none; box-shadow: none;
    padding: 16px 2px 0; margin-top: 6px;
}
.pg-tv .tv-nowbar-title { font-size: 20px; font-weight: 700; line-height: 1.3; color: var(--yt-text); }
.pg-tv .tv-nowbar-meta { display: flex; align-items: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.pg-tv .tv-live-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--yt-red); color: #fff;
    font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
    padding: 4px 10px; border-radius: 6px;
}
.pg-tv .tv-live-pill .live-dot { background: #fff; box-shadow: none; }
.pg-tv .tv-nowbar-chan {
    background: var(--yt-chip); color: var(--yt-text);
    font-weight: 500; text-transform: none; letter-spacing: 0;
    font-size: 13px; padding: 5px 12px;
}

/* ---- Chips estilo YouTube (canais + filtro do guia) ---- */
.pg-tv .tv-chan,
.pg-tv .tv-gchip {
    background: var(--yt-chip);
    border: none; color: var(--yt-text);
    border-radius: 8px; padding: 8px 12px;
    font-weight: 500; font-size: 14px;
}
.pg-tv .tv-chan:hover,
.pg-tv .tv-gchip:hover { background: var(--yt-chip-h); }
.pg-tv .tv-chan .material-icons,
.pg-tv .tv-gchip .material-icons { color: var(--yt-text); }
.pg-tv .tv-chan-count { background: rgba(0, 0, 0, 0.08); color: var(--yt-text-2); }
.pg-tv .tv-chan.is-active,
.pg-tv .tv-gchip.is-active { background: var(--yt-text); color: #fff; }
.pg-tv .tv-chan.is-active .material-icons,
.pg-tv .tv-gchip.is-active .material-icons { color: #fff; }
.pg-tv .tv-chan.is-active .tv-chan-count { background: rgba(255, 255, 255, 0.25); color: #fff; }

/* ---- Seções claras + títulos alinhados à esquerda ---- */
.pg-tv .features-section,
.pg-tv .tv-guide-section { background: #fff; padding: 40px 24px; }
.pg-tv .features-section { border-top: 1px solid var(--yt-line); }
.pg-tv .tv-guide-section .section-header-center,
.pg-tv .tv-guide-section .tv-guide-filter,
.pg-tv .tv-guide-section .tv-guide { text-align: left; max-width: 1000px; margin-left: auto; margin-right: auto; }
.pg-tv .tv-guide-section .section-header-center { text-align: left; }
.pg-tv .tv-guide-section .section-title { text-align: left; }
.pg-tv .tv-guide-filter { justify-content: flex-start; }
.pg-tv .tv-guide { max-width: 1000px; }
.pg-tv .section-label { color: var(--yt-red); }

/* ---- Guia = resultados estilo YouTube (thumb grande + badge) ---- */
.pg-tv .tv-guide-daylabel { color: var(--yt-text); border-bottom-color: var(--yt-line); }
.pg-tv .tv-guide-row { gap: 12px; padding: 8px; border-radius: 12px; }
.pg-tv .tv-guide-row:hover { background: var(--yt-chip); }
.pg-tv .tv-guide-row.is-live { background: transparent; box-shadow: none; }
.pg-tv .tv-guide-row.is-live:hover { background: var(--yt-chip); }
.pg-tv .tv-guide-time { display: none; }
.pg-tv .tv-guide-open { display: none; }
.pg-tv .tv-guide-thumbwrap { position: relative; flex: 0 0 auto; width: 168px; }
.pg-tv .tv-guide-thumb { width: 168px; height: 94px; border-radius: 12px; }
.pg-tv .tv-guide-badge {
    position: absolute; right: 6px; bottom: 6px;
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(0, 0, 0, 0.8); color: #fff;
    font-size: 12px; font-weight: 600; line-height: 1;
    padding: 3px 5px; border-radius: 4px;
}
.pg-tv .tv-guide-badge.is-live { background: var(--yt-red); left: 6px; right: auto; }
.pg-tv .tv-guide-badge.is-live .live-dot { background: #fff; box-shadow: none; width: 6px; height: 6px; }
.pg-tv .tv-guide-title { font-size: 15px; font-weight: 600; color: var(--yt-text); }
.pg-tv .tv-guide-sub { color: var(--yt-text-2); font-size: 13px; }

/* ---- Cartões "Sobre" mais leves ---- */
.pg-tv .features-section .feature-card { box-shadow: none; border-color: var(--yt-line); border-radius: 12px; }
.pg-tv .features-section .feature-card:hover { box-shadow: 0 1px 8px rgba(0,0,0,.08); transform: none; }

@media (max-width: 640px) {
    .pg-tv .tv-guide-thumbwrap { width: 128px; }
    .pg-tv .tv-guide-thumb { width: 128px; height: 72px; }
    .pg-tv .tv-nowbar-title { font-size: 17px; }
}
