/* =====================================================
   IGREJA VIDA ONLINE — Design System
   Estética Way TV adaptada · Cores IV Teal
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --bg:          #09090f;
  --bg-2:        #0f0f18;
  --bg-3:        #15151f;
  --bg-4:        #1e1e2c;
  --text:        #ffffff;
  --text-2:      rgba(255,255,255,.62);
  --text-3:      rgba(255,255,255,.30);
  --text-4:      rgba(255,255,255,.10);
  --accent:      #009688;
  --accent-2:    #00bfa5;
  --red:         #e53935;
  --border:      rgba(255,255,255,.08);
  --border-2:    rgba(255,255,255,.18);
  --radius:      10px;
  --radius-lg:   16px;
  --header-h:    58px;
  --ticker-h:    38px;
  --ease:        cubic-bezier(.4,0,.2,1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --grad:         linear-gradient(135deg, #009688 0%, #00bfa5 55%, #035d54 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg); color: var(--text);
  min-height: 100vh; overflow-x: hidden;
  padding-top: var(--header-h);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -.02em; }
h1 em, h2 em, h3 em { font-style: italic; background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Ticker ──────────────────────────────────────── */
.ticker-bar {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  z-index: 800; height: var(--ticker-h);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--grad);
  color: #fff; font-weight: 700;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 0 16px; height: 100%;
  display: flex; align-items: center; white-space: nowrap;
}
.ticker-track-wrap { flex: 1; overflow: hidden; position: relative; }
.ticker-track {
  display: flex; gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 28px; font-size: .8rem; color: var(--text-2);
  white-space: nowrap; flex-shrink: 0;
}
.ticker-item::before { content: '·'; color: var(--text-4); }
.ticker-item a:hover { color: var(--text); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(9,9,15,.95) 0%, rgba(9,9,15,.88) 100%);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.02), 0 8px 24px rgba(0,0,0,.25);
  transition: transform .3s var(--ease), background .2s;
}
.site-header::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,150,136,.22) 30%, rgba(0,191,165,.18) 70%, transparent 100%);
  pointer-events: none; opacity: .6;
}
.site-header.is-scrolled { background: rgba(9,9,15,.98); }
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 32px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  transition: transform .25s var(--ease), filter .25s var(--ease);
}
.header-logo:hover { transform: translateY(-1px); filter: drop-shadow(0 4px 12px rgba(0,150,136,.3)); }
.header-logo img { height: 28px; width: auto; }
.header-logo-text {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--text); letter-spacing: -.02em;
}

.header-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: center;
  gap: 4px; pointer-events: none;
  z-index: 901;
}
.header-nav .nav-link,
.header-nav .nav-apoiar,
.header-nav .nav-dropdown { pointer-events: all; }

.nav-link {
  position: relative;
  padding: 7px 14px; border-radius: 10px;
  font-size: .85rem; font-weight: 500; color: var(--text-2);
  transition: color .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute;
  left: 50%; bottom: -2px; transform: translateX(-50%) scaleX(0);
  width: calc(100% - 24px); height: 2px; border-radius: 2px;
  background: var(--grad); transform-origin: center;
  transition: transform .3s var(--ease), opacity .25s var(--ease); opacity: 0;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); opacity: .7; }
.nav-link.active { color: var(--text); font-weight: 600; }
.nav-link.active::after { transform: translateX(-50%) scaleX(1); opacity: 1; }

.nav-link.live {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: #fff; -webkit-text-fill-color: #fff;
  display: flex; align-items: center; gap: 7px;
  font-weight: 600; padding: 6px 15px 6px 13px; border-radius: 50px;
  box-shadow: 0 4px 14px rgba(229,57,53,.35), inset 0 1px 0 rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), filter .2s var(--ease);
}
.nav-link.live::after { display: none; }
.nav-link.live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #fff; opacity: .95;
  box-shadow: 0 0 8px rgba(255,255,255,.7);
  animation: pulse 1.4s infinite; flex-shrink: 0;
}
.nav-link.live:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 22px rgba(229,57,53,.55), inset 0 1px 0 rgba(255,255,255,.22);
  transform: translateY(-1px); color: #fff; -webkit-text-fill-color: #fff;
}

.nav-apoiar {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid rgba(0,150,136,.55);
  color: var(--accent) !important; -webkit-text-fill-color: var(--accent) !important;
  font-weight: 600; letter-spacing: .01em;
  padding: 5px 14px; border-radius: 50px;
  background: rgba(0,150,136,.04);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
  overflow: hidden; isolation: isolate;
}
.nav-apoiar::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--grad); opacity: 0; transition: opacity .25s var(--ease);
}
.nav-apoiar:hover {
  color: #fff !important; -webkit-text-fill-color: #fff !important;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0,150,136,.4);
  transform: translateY(-1px);
}
.nav-apoiar:hover::before { opacity: 1; }

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; pointer-events: all; }
.nav-dropdown__toggle {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .85rem; font-weight: 500;
  color: var(--text-2); padding: 7px 12px; border-radius: 10px;
  transition: color .25s var(--ease), background .25s var(--ease); white-space: nowrap;
}
.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle { color: var(--text); background: rgba(255,255,255,.04); }
.nav-dropdown__toggle svg { transition: transform .25s var(--ease); }
.nav-dropdown.is-open .nav-dropdown__toggle svg { transform: rotate(180deg); }
.nav-dropdown__panel {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 10px; z-index: 960;
}
.nav-dropdown__panel-inner {
  background: rgba(15,15,24,.96);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 6px; min-width: 220px;
  box-shadow: 0 24px 60px rgba(0,0,0,.65);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  animation: ddIn .22s var(--ease);
}
@keyframes ddIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav-dropdown.is-open .nav-dropdown__panel { display: block; }
.nav-dropdown__item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 9px;
  font-size: .85rem; color: var(--text-2); text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.nav-dropdown__item:hover { background: rgba(0,150,136,.1); color: var(--text); transform: translateX(2px); }
.nav-dropdown__item svg { color: var(--accent); flex-shrink: 0; }

/* Right cluster */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-search-btn {
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--text-2); display: flex; align-items: center; justify-content: center;
  border: 1px solid transparent;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.header-search-btn:hover {
  color: var(--text); background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08); transform: scale(1.06);
}

/* Nav burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 8px; color: var(--text);
}
.nav-burger span { display: block; width: 18px; height: 1.5px; background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(9,9,15,.97);
  display: flex; flex-direction: column; align-items: center;
  padding-top: 120px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.search-overlay.is-open { opacity: 1; pointer-events: all; }
.search-inner { width: 100%; max-width: 660px; padding: 0 24px; display: flex; gap: 12px; align-items: center; }
.search-form { flex: 1; display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--text-3); padding-bottom: 12px; }
.search-input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700; color: var(--text); letter-spacing: -.03em;
}
.search-input::placeholder { color: var(--text-3); }
.search-close {
  flex-shrink: 0; color: var(--text-2); transition: color .15s;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.search-close:hover { color: var(--text); background: var(--text-4); }

/* ── Layout ──────────────────────────────────────── */
.site-container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.site-section   { padding: 52px 0; }

/* Grid bg */
.has-grid-bg { position: relative; overflow: hidden; }
.has-grid-bg::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, #000 20%, transparent 72%);
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, #000 20%, transparent 72%);
}
.has-grid-bg > * { position: relative; z-index: 1; }

/* ── Section labels ──────────────────────────────── */
.section-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; letter-spacing: -.025em;
}
.section-heading {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px;
}
.section-heading-left { display: flex; flex-direction: column; gap: 4px; }
.section-more {
  font-size: .8rem; font-weight: 600; color: var(--accent);
  display: flex; align-items: center; gap: 3px;
  transition: opacity .15s; opacity: .85;
}
.section-more:hover { opacity: 1; }

/* ── Hero slider ─────────────────────────────────── */
.hero-slider {
  position: relative; overflow: hidden;
  background: var(--bg);
  height: clamp(380px, 58vw, 720px);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s ease; pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide .hero-bg { position: absolute; inset: 0; overflow: hidden; }
/* Imagem 16:9 (poster_image) a preencher; topo alinhado mantém as cabeças visíveis */
.hero-slide .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.hero-slide .hero-overlay {
  z-index: 2;
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(9,9,15,.92) 0%, rgba(9,9,15,.65) 45%, rgba(9,9,15,.2) 100%),
              linear-gradient(to top, rgba(9,9,15,.85) 0%, transparent 55%);
}
.hero-slide .hero-content {
  position: absolute; z-index: 3;
  bottom: 0; left: 0; right: 0;
  padding: 0 max(24px, calc((100% - 1200px) / 2)) 48px;
}
.hero-slide .hero-content > * { max-width: 560px; }
.hero-eyebrow {
  display: inline-block; margin-bottom: 12px;
  background: var(--accent); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 4px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.15;
  color: var(--text); margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-excerpt {
  font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.6;
  max-width: 520px; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; border-radius: 50px;
  background: var(--text); color: #000;
  font-weight: 600; font-size: .875rem;
  transition: background .15s, transform .15s;
}
.hero-cta:hover { background: rgba(255,255,255,.88); transform: scale(1.02); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 42px; height: 42px;
  background: rgba(9,9,15,.55); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(6px);
}
.hero-arrow:hover { background: rgba(9,9,15,.85); transform: translateY(-50%) scale(1.08); }
.hero-arrow--prev { left: 20px; }
.hero-arrow--next { right: 20px; }
.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  padding: 0; transition: background .2s, width .25s;
}
.hero-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ── Live banner ─────────────────────────────────── */
.live-banner {
  background: linear-gradient(135deg, rgba(0,150,136,.08), rgba(0,191,165,.05));
  border-top: 1px solid rgba(0,150,136,.15);
  border-bottom: 1px solid rgba(0,191,165,.12);
  padding: 28px 0;
}
.live-banner-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: #fff;
  border-radius: 50px; padding: 6px 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,150,136,.35); white-space: nowrap;
}
.live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #fff; animation: pulse 1.4s infinite; flex-shrink: 0;
}
.live-banner-info { flex: 1; }
.live-banner-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -.02em; }
.live-banner-sub { font-size: .85rem; color: var(--text-2); margin-top: 4px; }
.live-epg-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 16px; margin-top: 10px;
  font-size: .8rem; color: var(--text-2);
}
.live-epg-pill strong { color: var(--text); }
.live-banner-btn a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 50px;
  background: var(--text); color: #000;
  font-weight: 700; font-size: .875rem;
  transition: background .15s, transform .15s;
}
.live-banner-btn a:hover { background: rgba(255,255,255,.9); transform: scale(1.02); }

/* EPG slots */
.live-banner-epg { display: flex; gap: 32px; flex-wrap: wrap; }
.epg-slot { display: flex; flex-direction: column; gap: 4px; min-width: 160px; }
.epg-slot-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.epg-slot--now .epg-slot-label { color: var(--accent); }
.epg-slot--next .epg-slot-label { color: var(--text-3); }
.epg-slot-title {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--text); line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.epg-slot--next .epg-slot-title { color: var(--text-2); font-weight: 400; }
.epg-slot-time { font-size: .72rem; color: var(--text-3); }
.epg-prog-bar { height: 3px; background: var(--bg-4); border-radius: 2px; overflow: hidden; margin: 2px 0; }
.epg-prog-fill { height: 100%; width: var(--prog-pct, 0%); background: var(--grad); border-radius: 2px; transition: width 1s linear; }

/* ── Video card — 9:16 PORTRAIT ─────────────────── */
/* Grid wrapper */
.v-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.v-grid--5 { grid-template-columns: repeat(5, 1fr); }
.v-grid--4 { grid-template-columns: repeat(4, 1fr); }

.v-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .25s var(--ease);
}
.v-card:hover { border-color: rgba(255,255,255,.18); transform: translateY(-4px); }

/* Portrait 9:16 thumb */
.v-card__thumb-wrap {
  position: relative; overflow: hidden; background: var(--bg-3);
  aspect-ratio: 9/16;
  /* Fallback for old WebViews */
  flex-shrink: 0;
}
@supports not (aspect-ratio: 9/16) {
  .v-card__thumb-wrap { padding-bottom: 177.78%; height: 0; }
  .v-card__thumb-wrap > * { position: absolute; inset: 0; }
}
.v-card__thumb {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .4s var(--ease); display: block;
}
.v-card:hover .v-card__thumb { transform: scale(1.05); }
.v-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(9,9,15,.5); color: #fff; opacity: 0; transition: opacity .2s;
}
.v-card:hover .v-card__play { opacity: 1; }
.v-card__play svg { width: 40px; height: 40px; }
.v-card__cat {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff;
  font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 4px;
}
.v-card__dur {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(9,9,15,.8); color: #fff;
  font-size: .65rem; font-weight: 600; padding: 2px 7px; border-radius: 4px;
}

.v-card__body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.v-card__title {
  font-family: var(--font-display); font-size: .88rem; font-weight: 700;
  color: var(--text); letter-spacing: -.01em; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.v-card:hover .v-card__title { color: var(--accent); }
.v-card__meta { font-size: .7rem; color: var(--text-3); margin-top: auto; padding-top: 4px; }

/* ── Live TV cards — 16:9 ────────────────────────── */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ch-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .25s var(--ease);
}
.ch-card:hover { border-color: rgba(0,150,136,.35); transform: translateY(-3px); }
.ch-card__thumb-wrap {
  aspect-ratio: 16/10; overflow: hidden; background: var(--bg-3);
  position: relative;
}
@supports not (aspect-ratio: 16/10) {
  .ch-card__thumb-wrap { padding-bottom: 62.5%; height: 0; position: relative; }
  .ch-card__thumb-wrap > * { position: absolute; inset: 0; }
}
.ch-card__thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.ch-card:hover .ch-card__thumb { transform: scale(1.04); }
.ch-card__live {
  position: absolute; top: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(229,57,53,.9); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.ch-card__live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: #fff;
  animation: pulse 1.2s infinite;
}
.ch-card__body { padding: 14px 16px; }
.ch-card__title {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: var(--text); letter-spacing: -.01em; margin-bottom: 4px;
}
.ch-card__epg { font-size: .75rem; color: var(--text-3); }

/* ── Article cards — 16:9 (notícias / blog) ─────── */
.a-card {
  display: flex; flex-direction: column;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s, transform .25s var(--ease);
}
.a-card:hover { border-color: rgba(255,255,255,.18); transform: translateY(-4px); }
.a-card__img-wrap {
  display: block; overflow: hidden; aspect-ratio: 16/9;
  background: var(--bg-3); position: relative; flex-shrink: 0;
}
.a-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.a-card:hover .a-card__img { transform: scale(1.04); }
.a-card__cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
}
.a-card__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.a-card__title {
  font-family: var(--font-display); font-size: clamp(.92rem, 1.1vw, 1.05rem);
  font-weight: 700; letter-spacing: -.015em; line-height: 1.3; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.a-card:hover .a-card__title { color: var(--accent); }
.a-card__excerpt {
  font-size: .83rem; color: var(--text-2); line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.a-card__time { font-size: .72rem; color: var(--text-3); margin-top: auto; padding-top: 4px; }

/* Featured article (tall) */
.a-card--featured .a-card__img-wrap { aspect-ratio: 3/4; }
.a-card--featured .a-card__title { font-size: clamp(1.1rem, 1.5vw, 1.35rem); -webkit-line-clamp: 4; }

/* News grid layouts */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-grid--4 { grid-template-columns: repeat(4,1fr); gap: 20px; }
.news-featured-layout {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
}
.a-card.featured { grid-column: 1; grid-row: 1 / 3; }

/* ── Category tabs ───────────────────────────────── */
.cat-tabs-bar {
  background: linear-gradient(180deg, rgba(9,9,15,.92) 0%, rgba(9,9,15,.82) 100%);
  backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cat-tabs-wrap { position: relative; max-width: 1400px; margin: 0 auto; }
.cat-tabs {
  display: flex; align-items: center; gap: 6px;
  overflow-x: auto; scrollbar-width: none;
  padding: 10px 32px; scroll-behavior: smooth;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0; display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 50px;
  font-size: .8rem; font-weight: 500; color: var(--text-2);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap; text-decoration: none;
}
.cat-tab:hover { background: rgba(255,255,255,.07); color: var(--text); border-color: rgba(255,255,255,.14); }
.cat-tab.active {
  background: var(--grad); color: #fff; -webkit-text-fill-color: #fff;
  border-color: transparent; font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,150,136,.35);
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: .875rem;
  cursor: pointer; transition: opacity .15s, transform .15s; border: none;
}
.btn:hover { opacity: .85; transform: scale(1.02); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-gradient { background: var(--grad); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: .875rem;
  border: 1px solid var(--border); color: var(--text-2);
  transition: border-color .15s, color .15s, background .15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.25); color: var(--text); background: var(--text-4); }

/* ── Player page ─────────────────────────────────── */
.player-page { padding-bottom: 60px; }
.player-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 0;
  align-items: start;
}
.player-main { background: #000; }
.player-wrap {
  position: relative; width: 100%; background: #000;
  aspect-ratio: 16/9; overflow: hidden;
}
@supports not (aspect-ratio: 16/9) {
  .player-wrap { padding-bottom: 56.25%; height: 0; }
  .player-wrap > * { position: absolute; inset: 0; }
}
.player-wrap video,
.player-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.player-info { padding: 20px 24px; }
.player-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 8px;
}
.player-meta { font-size: .8rem; color: var(--text-3); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.player-sidebar {
  background: var(--bg-2); border-left: 1px solid var(--border);
  height: 100%; min-height: 400px;
  display: flex; flex-direction: column;
}
.player-sidebar-head {
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.player-sidebar-head h3 { font-size: 1rem; font-weight: 700; letter-spacing: -.01em; }
.player-now-card {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  background: rgba(0,150,136,.06);
}
.player-now-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.player-now-title { font-family: var(--font-display); font-size: .95rem; font-weight: 700; }
.player-now-time { font-size: .75rem; color: var(--text-3); margin-top: 4px; }
.player-prog-bar { height: 3px; background: var(--bg-4); border-radius: 2px; overflow: hidden; margin-top: 8px; }
.player-prog-fill { height: 100%; width: var(--prog-pct, 0%); background: var(--grad); border-radius: 2px; transition: width 1s linear; }
.player-next-card {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.player-next-thumb {
  width: 60px; height: 44px; border-radius: 6px; overflow: hidden; background: var(--bg-3); flex-shrink: 0;
}
.player-next-thumb img { width: 100%; height: 100%; object-fit: cover; }
.player-next-label { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.player-next-title { font-size: .83rem; font-weight: 600; color: var(--text-2); line-height: 1.3; }
.player-apps { padding: 16px 20px; }
.player-apps-title { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.player-app-btns { display: flex; flex-direction: column; gap: 8px; }
.player-app-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: var(--radius);
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-2); font-size: .82rem; font-weight: 600;
  transition: background .15s, color .15s, border-color .15s;
}
.player-app-btn:hover { background: var(--bg-4); color: var(--text); border-color: var(--border-2); }
.player-app-btn svg { flex-shrink: 0; color: var(--accent); }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px 40px;
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr 1fr; gap: 36px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-logo img { height: 24px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.footer-tagline {
  font-size: .83rem; color: var(--text-2); line-height: 1.6;
  max-width: 240px; margin-bottom: 18px;
}
.footer-tagline em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: color .15s, border-color .15s;
}
.footer-social a:hover { color: var(--text); border-color: rgba(255,255,255,.22); }
.footer-social svg { width: 14px; height: 14px; }
.footer-heading {
  font-size: .68rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a { font-size: .84rem; color: var(--text-2); transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0 0; }
.footer-bottom-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px 20px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: .75rem; color: var(--text-3);
}
.footer-bottom-inner a { color: var(--text-3); transition: color .15s; }
.footer-bottom-inner a:hover { color: var(--text); }
.footer-sep { color: var(--text-4); }

/* ── Misc utilities ──────────────────────────────── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.empty-state { text-align: center; padding: 60px 24px; color: var(--text-3); }
.empty-state svg { margin: 0 auto 12px; opacity: .3; }
.empty-state h3 { font-size: 1.1rem; color: var(--text-2); margin-bottom: 6px; }

/* Listing page */
.listing-page { padding: 40px 0 80px; }
.listing-hero { padding: 52px 32px 44px; max-width: 1400px; margin: 0 auto; }
.listing-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 10px;
}
.listing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; letter-spacing: -.035em; line-height: 1; margin-bottom: 8px;
}
.listing-count { font-size: .85rem; color: var(--text-3); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-btn {
  min-width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 500; color: var(--text-2);
  background: var(--bg-3); border: 1px solid var(--border);
  transition: background .15s, color .15s, border-color .15s;
}
.page-btn:hover, .page-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700; }
.page-btn.disabled { opacity: .3; pointer-events: none; }

/* Paginação do CodeIgniter ($links) — estiliza markup bruto */
.iv-pagination {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px; margin-top: 48px; list-style: none;
}
.iv-pagination ul { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0; }
.iv-pagination li { list-style: none; }
.iv-pagination a,
.iv-pagination strong,
.iv-pagination b,
.iv-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px;
  font-size: .875rem; font-weight: 500; color: var(--text-2);
  background: var(--bg-3); border: 1px solid var(--border);
  transition: background .15s, color .15s, border-color .15s; text-decoration: none;
}
.iv-pagination a:hover {
  background: var(--bg-4); color: var(--text); border-color: var(--border-2);
}
.iv-pagination .active a,
.iv-pagination strong,
.iv-pagination b,
.iv-pagination li.active a {
  background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700;
}
.iv-pagination .pagination-hvr { display: none; }

/* ── Grelha de coleções Bunny ────────────────────────── */
.col-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.col-card {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--border);
  transition: border-color .2s, transform .25s var(--ease);
}
.col-card:hover { border-color: rgba(0,150,136,.4); transform: translateY(-4px); }
.col-card__cover {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-3);
}
@supports not (aspect-ratio: 16/9) {
  .col-card__cover { padding-bottom: 56.25%; height: 0; }
  .col-card__cover > * { position: absolute; inset: 0; }
}
.col-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.col-card:hover .col-card__cover img { transform: scale(1.05); }
.col-card__ph { width: 100%; height: 100%; background: var(--grad); opacity: .25; }
.col-card__grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,15,.92) 0%, rgba(9,9,15,.2) 55%, transparent 100%);
}
.col-card__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px; }
.col-card__count {
  display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; background: var(--accent);
  padding: 2px 8px; border-radius: 4px; margin-bottom: 8px;
}
.col-card__name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  letter-spacing: -.01em; line-height: 1.2; color: #fff;
}

/* ── Player Bunny (VOD) ──────────────────────────────── */
.bunny-watch { padding-bottom: 60px; }
.bw-player {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000; border-radius: var(--radius-lg); overflow: hidden;
}
@supports not (aspect-ratio: 16/9) {
  .bw-player { padding-bottom: 56.25%; height: 0; }
}
.bw-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.bw-info { padding: 24px 2px 0; }
.bw-title {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 10px;
}
.bw-meta { font-size: .82rem; color: var(--text-3); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bw-sep { color: var(--text-4); }
.bw-desc {
  margin-top: 18px; padding: 18px 20px; border-radius: var(--radius);
  background: var(--bg-2); border: 1px solid var(--border);
  font-size: .9rem; color: var(--text-2); line-height: 1.65; max-width: 820px;
}

@media (max-width: 1024px) { .col-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .col-grid { grid-template-columns: 1fr; } }

/* ── App download badges ─────────────────────────────── */
.app-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 12px;
  background: #000; border: 1px solid rgba(255,255,255,.18);
  color: #fff; transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s;
  white-space: nowrap;
}
.app-badge:hover { border-color: rgba(255,255,255,.45); transform: translateY(-2px); background:#0a0a0a; }
.app-badge__ico { flex-shrink: 0; }
.app-badge__txt { display: flex; flex-direction: column; line-height: 1.1; }
.app-badge__txt small { font-size: .58rem; opacity: .8; letter-spacing: .02em; }
.app-badge__txt strong { font-size: .98rem; font-weight: 600; letter-spacing: -.01em; }

/* ── Home app strip ─────────────────────────────────── */
.app-strip {
  background: linear-gradient(135deg, rgba(0,150,136,.1), rgba(0,191,165,.05));
  border-top: 1px solid rgba(0,150,136,.15); border-bottom: 1px solid rgba(0,191,165,.12);
  padding: 40px 0;
}
.app-strip-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.app-strip-text { flex: 1; min-width: 260px; }
.app-strip-text h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; }
.app-strip-text p { font-size: .95rem; color: var(--text-2); }

/* ── Página /apps ───────────────────────────────────── */
.apps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.app-card {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, transform .25s var(--ease);
}
.app-card:hover { border-color: rgba(0,150,136,.35); transform: translateY(-4px); }
.app-card.is-featured { border-color: rgba(0,150,136,.4); background: linear-gradient(160deg, rgba(0,150,136,.08), var(--bg-2) 60%); }
.app-card__badge { display:inline-block; align-self:flex-start; font-size:.6rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#fff; background:var(--grad); padding:3px 10px; border-radius:999px; }
.app-card__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -.01em; }
.app-card__tagline { font-size: .82rem; color: var(--accent); font-weight: 600; margin-top: -8px; }
.app-card__desc { font-size: .9rem; color: var(--text-2); line-height: 1.6; flex: 1; }
.app-card .app-badges { flex-direction: column; }
.app-card .app-badge { justify-content: flex-start; }

/* ── Footer apps ────────────────────────────────────── */
.footer-apps { margin-top: 14px; }
.footer-apps .app-badge { padding: 6px 12px; }
.footer-apps .app-badge__txt strong { font-size: .85rem; }

@media (max-width: 1024px){ .apps-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px){ .app-strip-inner { flex-direction: column; align-items: flex-start; } }

/* ══ Em Direto — layout broadcast ══════════════════════ */
.bc-hero { padding: 24px 0 8px; }
.bc-hero__inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start;
}
/* Player */
.bc-player {
  position: relative; width: 100%; aspect-ratio: 16/9; background: #000;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
}
@supports not (aspect-ratio: 16/9) { .bc-player { padding-bottom: 56.25%; height: 0; } }
.bc-player video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background:#000; }
.bc-spinner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.bc-ring { width: 44px; height: 44px; border-radius: 50%; border: 3px solid rgba(255,255,255,.15); border-top-color: var(--accent); animation: bc-spin .8s linear infinite; }
@keyframes bc-spin { to { transform: rotate(360deg); } }
.bc-bigplay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(9,9,15,.35); border: none; cursor: pointer; }
.bc-bigplay span { width: 70px; height: 70px; border-radius: 50%; background: rgba(0,150,136,.9); display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.bc-bigplay:hover span { transform: scale(1.07); }
.bc-unmute {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; z-index: 6;
  background: rgba(9,9,15,.85); color: #fff; border: 1px solid rgba(255,255,255,.15);
  padding: 9px 16px; border-radius: 50px; font-size: .82rem; font-weight: 600; cursor: pointer;
}
.bc-controls {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; gap: 10px;
  background: linear-gradient(to top, rgba(9,9,15,.85), transparent);
  transition: opacity .25s; opacity: 1;
}
.bc-idle .bc-controls { opacity: 0; }
.bc-idle { cursor: none; }
.bc-controls__l, .bc-controls__r { display: flex; align-items: center; gap: 10px; }
.bc-cbtn { width: 36px; height: 36px; border-radius: 8px; color: #fff; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.bc-cbtn:hover { background: rgba(255,255,255,.12); }
.bc-livetag { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; }
.bc-livetag__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 1.4s infinite; }
.bc-error { position: absolute; inset: 0; z-index: 7; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(9,9,15,.92); color: var(--text-2); text-align: center; padding: 20px; }
.bc-error p { font-size: .9rem; }
.bc-error button { padding: 9px 18px; border-radius: 50px; background: var(--accent); color: #fff; font-weight: 600; font-size: .82rem; cursor: pointer; }

/* Painel lateral */
.bc-side { display: flex; flex-direction: column; gap: 16px; }
.bc-now { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 22px; }
.bc-now__live { display: inline-flex; align-items: center; gap: 7px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.bc-now__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.4s infinite; }
.bc-now__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; margin: 12px 0 4px; }
.bc-now__sub { font-size: .82rem; color: var(--text-3); }
.bc-channels { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 18px; }
.bc-channels__head { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.bc-channel { display: flex; align-items: center; gap: 12px; width: 100%; padding: 8px; border-radius: 10px; text-align: left; transition: background .15s; margin-bottom: 4px; }
.bc-channel:hover { background: var(--bg-3); }
.bc-channel.is-active { background: rgba(0,150,136,.1); }
.bc-channel__thumb { position: relative; width: 60px; height: 40px; border-radius: 6px; overflow: hidden; background: var(--bg-4); flex-shrink: 0; }
.bc-channel__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bc-channel__on { position: absolute; top: 4px; right: 4px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 2px rgba(9,9,15,.6); animation: pulse 1.4s infinite; }
.bc-channel__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bc-channel__body strong { font-size: .9rem; font-weight: 600; color: var(--text); }
.bc-channel.is-active .bc-channel__body strong { color: var(--accent); }
.bc-channel__body span { font-size: .7rem; color: var(--text-3); }
.bc-actions { display: flex; gap: 10px; }
.bc-action { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; border-radius: 10px; font-size: .82rem; font-weight: 600; border: 1px solid var(--border); color: var(--text-2); background: var(--bg-2); transition: background .15s, color .15s, border-color .15s; }
.bc-action:hover { background: var(--bg-3); color: var(--text); border-color: var(--border-2); }
.bc-action--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.bc-action--primary:hover { filter: brightness(1.08); color: #fff; }
.bc-apps-mini .app-badges { justify-content: center; }

/* ── Botão de pedido de oração ─────────────────────── */
.bc-pray-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 11px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,150,136,.15), rgba(0,191,165,.08));
  border: 1px solid rgba(0,150,136,.4); color: var(--accent);
  font-size: .86rem; font-weight: 600;
  transition: background .2s, border-color .2s, transform .2s;
}
.bc-pray-btn:hover {
  background: linear-gradient(135deg, rgba(0,150,136,.28), rgba(0,191,165,.16));
  border-color: rgba(0,150,136,.7); transform: translateY(-1px);
}

@media (max-width: 980px){ .bc-hero__inner { grid-template-columns: 1fr; } }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .4s var(--ease) both; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1200px) {
  .v-grid { grid-template-columns: repeat(5,1fr); }
  .player-layout { grid-template-columns: 1fr 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1024px) {
  .v-grid { grid-template-columns: repeat(4,1fr); }
  .ch-grid { grid-template-columns: repeat(3,1fr); }
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .news-featured-layout { grid-template-columns: 1fr 1fr; }
  .a-card.featured { grid-column: 1/3; grid-row: 1; }
  .a-card.featured .a-card__img-wrap { aspect-ratio: 16/9; }
  .player-layout { grid-template-columns: 1fr; }
  .player-sidebar { display: none; }
}
@media (max-width: 768px) {
  :root { --header-h: 52px; }
  body { padding-top: calc(var(--header-h) + var(--ticker-h)); }
  .header-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; height: auto; background: #0c0c14; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 12px; z-index: 950; overflow-y: auto; pointer-events: all; }
  .header-nav.is-open { display: flex; }
  .header-nav .nav-link,
  .header-nav .nav-apoiar { padding: 13px 16px; border-radius: 10px; font-size: .95rem; }
  .nav-dropdown { flex-direction: column; align-items: stretch; width: 100%; pointer-events: all; }
  .nav-dropdown__toggle { padding: 13px 16px; font-size: .95rem; justify-content: space-between; width: 100%; }
  .nav-dropdown__panel { position: static; transform: none; padding-top: 0; }
  .nav-dropdown__panel-inner { box-shadow: none; border: none; background: rgba(255,255,255,.04); border-radius: 10px; margin: 4px 0 4px 8px; }
  .nav-burger { display: flex; }
  .site-container { padding: 0 20px; }
  .v-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .ch-grid { grid-template-columns: repeat(2,1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured-layout { grid-template-columns: 1fr; }
  .a-card.featured { grid-column: 1; grid-row: 1; }
  .hero-slider { height: clamp(240px, 56vw, 400px); }
  .hero-arrow { display: none; }
  .hero-slide .hero-content { padding: 0 16px 36px; }
  .hero-excerpt { display: none; }
  .live-banner-inner { flex-direction: column; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .listing-hero { padding: 36px 20px 32px; }
}
@media (max-width: 480px) {
  .v-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .ch-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hero-slider { height: clamp(200px, 60vw, 300px); }
  .hero-title  { font-size: 1.1rem !important; }
}
