/* Pirate TV - Estilo moderno e responsivo */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

/* ═══════════════════════════════════════════
   MODAL TELEGRAM
═══════════════════════════════════════════ */
#tg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 14, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#tg-overlay.tg-visible {
  opacity: 1;
  pointer-events: all;
}

#tg-overlay.tg-hide {
  opacity: 0;
  pointer-events: none;
}

#tg-modal {
  background: #101720;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px 20px;
  max-width: 420px;
  width: 100%;
  text-align: left;
  max-height: min(88vh, 640px);
  overflow: auto;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 10px 30px rgba(0, 0, 0, 0.16);
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  opacity: 0;
}

#tg-overlay.tg-visible #tg-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Botão fechar */
#tg-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #171f2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  font-family: inherit;
  line-height: 1;
}

#tg-close:hover {
  background: #202938;
  color: #fff;
  transform: translateY(-1px);
}

/* Ícone */
.tg-icon-wrap {
  display: inline-flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.tg-svg {
  width: 56px;
  height: 56px;
  filter: none;
  border-radius: 16px;
}

.tg-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9aa7bd;
}

.tg-title {
  font-size: clamp(1.28rem, 1rem + 0.9vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tg-desc {
  font-size: 0.96rem;
  color: #c5cedd;
  line-height: 1.6;
  margin: 0 0 8px;
}

.tg-note {
  font-size: 0.84rem;
  color: #93a0b4;
  margin: 0 0 18px;
}

#tg-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #229ed9;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 13px 16px;
  border-radius: 12px;
  transition: transform 0.18s, filter 0.18s, background 0.18s;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

#tg-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

#tg-btn:active {
  transform: translateY(0);
}

.tg-skip {
  background: #171f2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d5deec;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 11px 12px;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  font-family: inherit;
  display: block;
  width: 100%;
  text-align: center;
}

.tg-skip:hover {
  color: #fff;
  background: #202938;
  border-color: rgba(255, 255, 255, 0.12);
}

/* Mobile */
@media (max-width: 480px) {
  #tg-overlay {
    align-items: flex-end;
    padding: 12px 10px max(12px, env(safe-area-inset-bottom));
  }

  #tg-modal {
    border-radius: 18px;
    padding: 22px 16px 16px;
    max-height: min(84vh, 560px);
  }

  .tg-svg {
    width: 48px;
    height: 48px;
  }

  .tg-title {
    font-size: 1.16rem;
  }

  .tg-desc {
    font-size: 0.91rem;
  }

  .tg-note {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  #tg-btn {
    padding: 12px 14px;
    font-size: 0.92rem;
    border-radius: 10px;
  }

  .tg-skip {
    padding: 10px;
    font-size: 0.87rem;
  }
}

:root {
  --primary: #8b5cf6;
  --primary-hover: #7c3aed;
  --secondary: #06b6d4;
  --primary-rgb: 139, 92, 246;
  --bg: #0c0c0c;
  --bg-card: rgba(20, 20, 20, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #d946ef;
  --red: #ef4444;
  --heading-font: 'Space Grotesk', 'Inter', sans-serif;
  --body-font: 'Inter', 'Manrope', sans-serif;
  --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --glow: 0 0 20px rgba(139, 92, 246, 0.15);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── HERO INTRO ── */
.hero-intro {
  padding: 32px 20px 20px;
  background: var(--bg);
  text-align: center;
}

.hero-intro-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 1.4rem;
  color: #c9ff00; /* Bright yellow-green like futemax */
  margin-bottom: 4px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(201, 255, 0, 0.2);
}

.hero-description {
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.4;
  opacity: 0.85;
  max-width: 850px;
  margin: 0 auto;
  font-weight: 500;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  background: #fff;
  color: #111827;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.bbb-page {
  overflow-x: hidden;
}

.bbb-page>a {
  color: var(--text);
  text-decoration: none;
}

/* ── LOGO BAR ── */
.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px 24px;
}

.logo-bar-img {
  height: 108px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(227, 27, 35, 0.4));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

.logo-bar-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 25px rgba(227, 27, 35, 0.6));
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px 40px;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 44px;
}

.hero-copy,
.hero-panel,
.info-card {
  background:
    linear-gradient(145deg, rgba(12, 20, 36, 0.96) 0%, rgba(13, 20, 35, 0.82) 55%, rgba(26, 17, 32, 0.78) 100%);
  border: 1px solid rgba(126, 162, 255, 0.14);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  border-radius: 34px;
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: auto -60px -80px auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.28) 0%, transparent 68%);
  pointer-events: none;
}

.hero-copy::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.04) 0%, transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(112, 153, 255, 0.12) 0%, transparent 30%);
  pointer-events: none;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 14px;
}

.hero-home h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  max-width: 13ch;
  text-wrap: balance;
}

.hero-lead {
  max-width: 62ch;
  color: #c5d0e4;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 0;
}

.hero-btn {
  text-decoration: none;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  box-shadow: 0 16px 40px rgba(217, 45, 32, 0.25);
}

.hero-btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-highlights li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 16px 15px;
  color: #d5deee;
  font-size: 0.92rem;
}

.hero-panel {
  border-radius: 34px;
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: center;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: auto auto -40px -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.hero-panel-top {
  display: grid;
  gap: 10px;
  margin-bottom: 4px;
}

.hero-panel-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb38e;
}

.hero-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-panel-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7e0ef;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-metric {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 18px;
  position: relative;
}

.hero-metric strong {
  display: block;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 6px;
}

.hero-metric span {
  color: var(--text-muted);
  font-size: 0.94rem;
}


/* ── BBB BANNER ── */
.bbb-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 48px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bbb-banner:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.12);
}

.bbb-banner-live {
  background: #ef4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bbb-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.2s ease-in-out infinite;
}

.bbb-banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.bbb-banner-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bbb-banner-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bbb-banner-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bbb-banner:hover .bbb-banner-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

/* ── CANAIS SECTION ── */
.home-canais-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}
.home-canais-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.home-canais-title {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 800;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
  padding: 0 4px;
}

.section-heading.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 28px;
}

.section-heading.centered .home-canais-title {
  text-align: center;
  margin: 0;
}

.sections-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-section {
  margin-bottom: 32px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 0 8px;
}

.category-header h2 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.02em;
}

.category-dot {
  width: 8px;
  height: 8px;
  background: #8b5cf6;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.search-container-wrap {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 0 16px;
}

.search-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 18px;
  color: #666;
  pointer-events: none;
}

#search-canais {
  width: 100%;
  padding: 15px 16px 15px 50px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s;
}

#search-canais:focus {
  border-color: #8b5cf6;
  background: #1a1a1a;
  outline: none;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.section-heading.centered .home-canais-title {
  text-align: center;
}

.section-description {
  max-width: 48ch;
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.search-wrap {
  display: block;
  flex: 1;
  min-width: 200px;
  max-width: 400px;
}

#search-canais {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--text);
  font-size: 0.97rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#search-canais::placeholder {
  color: var(--text-muted);
}

#search-canais:focus {
  border-color: rgba(255, 179, 142, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.1);
}

.results-summary {
  color: var(--text-muted);
  margin: 0 0 18px;
  font-size: 0.94rem;
}

/* ── GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.channel-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: rgba(139, 92, 246, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.channel-card:hover::before {
  transform: translateX(100%);
}

.channel-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.channel-card:hover .channel-logo {
  transform: scale(1.1);
}

.channel-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.channel-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.empty-state {
  color: var(--text-muted);
  text-align: center;
  padding: 64px 24px;
  grid-column: 1 / -1;
  background: var(--bg-glass);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.info-card {
  border-radius: 26px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  inset: auto -30px -50px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(112, 153, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.info-card h2 {
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* ── SEO CONTENT CARD ── */
.card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 40px 48px;
  margin-top: 56px;
  box-shadow: var(--card-shadow);
}

.card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}

.card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text-muted);
}

.card p {
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.card ul {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 14px;
}

.card ul li {
  margin-bottom: 6px;
  color: #ffb38e;
  font-weight: 500;
}

.card a {
  color: var(--primary);
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0 24px;
  margin-top: 72px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px 64px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.2));
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
}

.footer-links {
  display: flex;
  gap: 64px;
  justify-content: flex-start;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 24px 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .footer-logo-img {
    height: 42px;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ── BBB PAGE ESPECÍFICO ── */
.bbb-logo-bar {
  padding-bottom: 8px;
}

.bbb-hero {
  text-align: center;
  padding: 28px 24px;
  max-width: 960px;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.08) 0%, rgba(17, 17, 17, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.bbb-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 28px rgba(220, 38, 38, 0.15);
}

.bbb-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.bbb-hero p.subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.bbb-helper {
  max-width: 960px;
  margin: 0 auto 18px;
  padding: 0 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── PLAYER WRAPPER ── */
.player-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.player-box {
  background: #050505;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  aspect-ratio: 16/9;
}

.player-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── CONTROLES ── */
.controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 960px;
  margin: 16px auto 10px;
  padding: 0 16px;
}

.ctrl-btn {
  background: #161616;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.ctrl-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ── SOURCE BUTTONS ── */
.source-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 960px;
  margin: 0 auto 28px;
  padding: 0 16px;
}

.source-btn {
  background: #161616;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  text-align: center;
}

.source-btn:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
  color: #fff;
}

.source-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.bbb-benefits-list {
  color: var(--text-muted);
  margin-left: 20px;
  margin-bottom: 16px;
}

.bbb-benefits-list li {
  margin-bottom: 8px;
}

/* ── LIVE BADGE ── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* dead hero-stat rules removed — no longer used in HTML */

/* ═══════════════════════════════════════════
   RESPONSIVE — mobile-first
═══════════════════════════════════════════ */

/* ── Tablets largos / desktops pequenos ── */
@media (max-width: 900px) {
  .container {
    padding: 0 16px 48px 16px;
    margin-top: 20px;
  }

  .hero-home {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar,
  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .card {
    padding: 36px 32px;
  }

  .bbb-hero {
    margin-left: 16px;
    margin-right: 16px;
  }
}

/* ── Tablets / Celulares grandes ── */
@media (max-width: 700px) {

  /* LOGO BAR */
  .logo-bar {
    padding: 28px 16px 18px;
  }

  .logo-bar-img {
    height: 84px;
  }

  /* CONTAINER */
  .container {
    padding: 0 12px 40px 12px;
    margin-top: 12px;
  }

  /* CARDS */
  .card {
    padding: 24px 16px 20px;
  }

  .card h2 {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  /* CANAIS NA HOME */
  .home-canais-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  .hero-copy,
  .hero-panel,
  .info-card {
    border-radius: 20px;
  }

  .hero-copy {
    padding: 24px 20px;
  }

  .hero-home h1 {
    max-width: none;
    font-size: clamp(1.85rem, 8vw, 2.8rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .home-canais-section {
    margin-bottom: 36px;
  }

  #search-canais {
    max-width: 100%;
    font-size: 0.97rem;
    padding: 10px 14px;
  }

  .filter-btn {
    padding: 7px 13px;
    font-size: 0.83rem;
  }

  /* GRID DE CANAIS */
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    gap: 8px;
    padding: 0 4px;
  }

  .channel-card {
    padding: 14px 6px 10px;
  }

  .channel-logo {
    width: 52px;
    height: 52px;
  }

  .channel-card h3 {
    font-size: 0.82rem;
  }

  .channel-card p {
    font-size: 0.76rem;
  }

  .hero-title {
    font-size: 1.15rem;
    padding: 0 10px;
  }

  .hero-description {
    font-size: 0.8rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .section-heading.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
  }

  .channel-card h3 {
    font-size: 0.75rem;
  }

  .channel-card p {
    font-size: 0.6rem;
  }

  .bbb-hero {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .bbb-logo {
    width: 82px;
    height: 82px;
  }

  .bbb-hero p.subtitle {
    font-size: 0.94rem;
  }

  .bbb-helper {
    font-size: 0.86rem;
    margin-bottom: 16px;
  }

  .controls {
    justify-content: stretch;
  }

  .ctrl-btn {
    width: 100%;
  }

  .source-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

/* ── Celulares pequenos ── */
@media (max-width: 480px) {

  /* LOGO BAR */
  .logo-bar {
    padding: 22px 12px 14px;
  }

  .logo-bar-img {
    height: 68px;
  }

  /* GRID — 2 colunas fixas */
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* CARDS */
  .card {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .card h2 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  /* CONTAINER */
  .container {
    padding: 0 8px 32px 8px;
    margin-top: 16px;
  }

  .home-canais-title {
    font-size: 1.15rem;
  }

  .filter-btn {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .bbb-hero {
    padding: 20px 14px;
    margin-bottom: 18px;
  }

  .bbb-logo {
    width: 74px;
    height: 74px;
    border-radius: 16px;
  }

  .bbb-hero h1 {
    font-size: 1.45rem;
  }

  .bbb-hero p.subtitle {
    font-size: 0.88rem;
  }

  .bbb-helper {
    font-size: 0.82rem;
    padding: 0 12px;
  }

  .player-box {
    border-radius: 16px;
  }

  .source-buttons {
    grid-template-columns: 1fr;
  }

  .source-btn {
    font-size: 0.84rem;
    padding: 11px 12px;
  }
}

::selection {
  background: var(--red);
  color: #fff;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
.carousel-heading.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
  gap: 6px;
  flex-wrap: wrap;
}

.blog-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-breadcrumb a:hover {
  color: var(--red);
}

.blog-breadcrumb span {
  color: #55556a;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blog-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(230, 50, 50, 0.1);
  border: 1px solid rgba(230, 50, 50, 0.3);
  color: var(--red);
  padding: 3px 10px;
  border-radius: 20px;
}

.blog-article h1 {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.blog-intro {
  font-size: 1.02rem;
  color: #b0b0c8;
  line-height: 1.75;
  margin-bottom: 36px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.blog-article-body h2 {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text);
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(230, 50, 50, 0.15);
}

.blog-article-body h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: #e0b080;
  margin: 28px 0 10px;
}

.blog-article-body p {
  color: #c0c0d8;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.96rem;
}

.blog-article-body a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 50, 50, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.blog-article-body a:hover {
  color: #ff6060;
  border-color: #ff6060;
}

.blog-article-body ul,
.blog-article-body ol {
  color: #c0c0d8;
  font-size: 0.96rem;
  line-height: 1.85;
  padding-left: 24px;
  margin-bottom: 16px;
}

.blog-article-body li {
  margin-bottom: 8px;
}

.blog-article-body strong {
  color: var(--text);
}

.blog-tip {
  background: rgba(230, 50, 50, 0.07);
  border: 1px solid rgba(230, 50, 50, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.93rem;
  color: #c8c8e0;
  line-height: 1.7;
}

.blog-tip strong {
  color: var(--red);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  margin: 24px 0 32px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.faq-q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  border-radius: 5px;
  margin-top: 2px;
  flex-shrink: 0;
  letter-spacing: 0;
}

.faq-answer {
  color: #b4b4cc;
  font-size: 0.94rem;
  line-height: 1.8;
  padding-left: 34px;
  margin: 0;
}

.faq-answer a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 50, 50, 0.3);
}

.faq-answer a:hover {
  color: #ff6060;
  border-color: #ff6060;
}

/* ── Blog Index ── */
.blog-index-header {
  text-align: center;
  padding: 48px 0 36px;
}

.blog-index-header h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.blog-index-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 56px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(230, 50, 50, 0.12);
}

.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}

.blog-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card-date {
  font-size: 0.76rem;
  color: #55556a;
}

.blog-card-arrow {
  font-size: 0.88rem;
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 640px) {
  .blog-article h1 {
    font-size: 1.45rem;
  }

  .blog-article-body h2 {
    font-size: 1.1rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-header h1 {
    font-size: 1.5rem;
  }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION (Acessibilidade)
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Tema dark simples */
:root {
  --primary: #8b5cf6;
  --primary-hover: #7c3aed;
  --bg: #0c0c0c;
  --bg-card: #141414;
  --text: #f3f5f7;
  --text-muted: #9da8b8;
  --border: rgba(255, 255, 255, 0.06);
  --accent: #d946ef;
  --red: #ef4444;
  --card-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

body {
  background: #0c0c0c;
}

.logo-bar {
  padding: 28px 16px 20px;
}

.logo-bar-img {
  height: 92px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

.logo-bar-img:hover {
  transform: scale(1.01);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.32));
}

.container {
  max-width: 1120px;
  padding-top: 8px;
}

.hero-home {
  display: block;
  margin-bottom: 28px;
}

.hero-copy,
.hero-panel,
.info-card,
.card,
.catalog-toolbar,
.channel-card,
.empty-state,
.faq-home {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy,
.hero-panel,
.info-card,
.card,
.catalog-toolbar,
.channel-card,
.faq-home {
  border-radius: 20px;
}

.hero-copy {
  padding: 28px;
}

.hero-copy::before,
.hero-copy::after,
.hero-panel::before,
.info-card::before,
.channel-card-glow {
  display: none;
}

.hero-panel,
.hero-highlights {
  display: none;
}

.hero-kicker,
.section-kicker,
.hero-panel-label {
  color: #c7d0dc;
}

.hero-home h1 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero-lead {
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.65;
  margin-bottom: 0;
}

.hero-btn {
  border-radius: 12px;
  padding: 13px 18px;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.hero-btn-primary {
  background: var(--primary);
  box-shadow: none;
}

.hero-btn-primary:hover {
  background: var(--primary-hover);
}

.hero-btn-secondary {
  background: #1a1a1a;
  border-color: var(--border);
}

.section-heading {
  margin-bottom: 18px;
}

.section-description,
.results-summary,
.info-card p,
.card p,
.faq-answer,
.footer-tagline,
.footer-col a,
.footer-bottom,
.channel-card p {
  color: var(--text-muted);
}

.catalog-toolbar {
  gap: 14px;
  padding: 14px;
  grid-template-columns: minmax(0, 1fr) 280px;
}

.filter-bar {
  gap: 10px;
}

.filter-btn {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d7deea;
  padding: 9px 14px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #222222;
  border-color: rgba(255, 255, 255, 0.12);
}

#search-canais {
  background: #141414;
  border-color: rgba(255, 255, 255, 0.08);
  padding: 13px 16px;
}

#search-canais:focus {
  border-color: rgba(240, 79, 62, 0.6);
  box-shadow: 0 0 0 3px rgba(240, 79, 62, 0.12);
}

.grid {
  gap: 16px;
}

.channel-card {
  padding: 20px 16px 16px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.channel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  background: #161d28;
}

.channel-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
  filter: none;
}

.info-grid {
  gap: 16px;
  margin-top: 34px;
}

.info-card {
  padding: 22px 20px;
  min-height: 100%;
}

.info-card h2 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.card {
  padding: 32px;
  margin-top: 44px;
}

.card h2 {
  border-left: none;
  padding-left: 0;
}

.card ul li {
  color: #d7deea;
}

.faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.faq-q-badge {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f3f5f7;
}

footer {
  background: #090d13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 56px;
  padding-top: 40px;
}

.footer-logo-img {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.26));
}

.footer-bottom a,
.card a {
  color: #ff7869;
}

.ad-shell {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 0;
}

.home-page {
  padding-top: 24px;
}

.home-page .home-canais-section {
  background: rgba(18, 24, 33, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 24px;
}

.home-page .section-heading {
  align-items: center;
  margin-bottom: 18px;
  padding: 0;
}

.home-page .home-canais-title {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.home-page .catalog-toolbar {
  background: #101720;
  border-color: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 12px;
  gap: 12px;
  align-items: center;
}

.home-page .filter-bar {
  gap: 8px;
}

.home-page .filter-btn {
  border-radius: 11px;
  padding: 9px 13px;
  background: #151d29;
  color: #cbd5e1;
}

.home-page .filter-btn:hover,
.home-page .filter-btn.active {
  background: #ef4f3e;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.home-page #search-canais {
  border-radius: 12px;
  background: #151d29;
}

.home-page .grid {
  gap: 14px;
}

.home-page .channel-card {
  border-radius: 18px;
  background: #101720;
  border-color: rgba(255, 255, 255, 0.065);
  padding: 18px 14px 16px;
}

.home-page .channel-card:hover {
  background: #151d29;
  border-color: rgba(240, 79, 62, 0.48);
  transform: translateY(-4px);
}

.home-page .channel-logo {
  width: 68px;
  height: 68px;
}

.home-page .card {
  border-radius: 22px;
}

@media (max-width: 900px) {
  .hero-copy {
    padding: 26px;
  }

  .card {
    padding: 26px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .ad-shell {
    margin-bottom: 18px;
  }

  .home-page {
    padding-top: 16px;
  }

  .home-page .home-canais-section {
    padding: 14px;
    border-radius: 18px;
  }

  .logo-bar {
    padding: 24px 16px 14px;
  }

  .logo-bar-img {
    height: 76px;
  }

  .hero-copy,
  .hero-panel,
  .info-card,
  .card,
  .catalog-toolbar,
  .channel-card,
  .faq-home {
    border-radius: 16px;
  }

  .hero-copy,
  .hero-panel,
  .card {
    padding: 20px;
  }

  .hero-home h1 {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-btn {
    justify-content: center;
  }

  .grid {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .logo-bar-img {
    height: 64px;
  }

  .hero-copy,
  .hero-panel,
  .card {
    padding: 18px 16px;
  }

  .channel-card {
    padding: 16px 10px 14px;
  }

  .channel-logo {
    width: 56px;
    height: 56px;
  }
}

/* Catalog page */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .header-logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.site-header .header-logo-link:hover {
  transform: scale(1.02);
}

.site-header img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.site-header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-header nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.site-header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.site-header nav a:hover {
  color: #fff;
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
  width: 100%;
}

.site-header nav a.active {
  color: #fff;
}

.canais-page {
  padding-top: 40px;
}

@media (max-width: 700px) {
  .site-header .header-inner {
    padding: 10px 12px;
  }

  .site-header img {
    height: 34px;
  }

  .site-header nav {
    gap: 12px;
  }

  .site-header nav a {
    font-size: 0.8rem;
  }
}

/* ── CHANNELS CAROUSEL ── */
.channels-carousel-section {
  padding: 20px 0;
  background: #0c0c0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.carousel-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto 10px;
  padding: 0 40px;
}

.carousel-heading.centered {
  justify-content: center;
  margin-bottom: 24px;
  gap: 12px;
}

.carousel-heading h2 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ef4444;
  animation: blink 1.2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.carousel-main-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 35px;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track-container {
  width: 100%;
}

.carousel-track {
  display: grid;
  grid-template-rows: repeat(2, 105px);
  grid-auto-flow: column;
  gap: 6px; /* Menor separação */
  /* Espaçamento menor */
  padding: 5px 0;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 auto;
  width: 120px;
  /* Tamanho reduzido */
  height: 98px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.carousel-item:hover {
  background: #1a1a1a;
  border-color: rgba(139, 92, 246, 0.5);
  /* Cor igual ao tema principal */
  transform: translateY(-2px);
}

.carousel-item-img {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.carousel-item img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.carousel-item-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: #ccc;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.carousel-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 5px;
}

.carousel-nav.next {
  right: 5px;
}

@media (max-width: 768px) {
  .carousel-main-wrap {
    padding: 0 5px;
  }

  .carousel-container {
    padding: 0;
  }

  .carousel-track {
    grid-template-rows: 105px; /* 1 row on mobile */
    gap: 10px;
    padding-bottom: 10px;
  }

  .carousel-item {
    width: 135px;
    height: 100px;
  }

  .carousel-nav {
    display: none; /* Hide arrows on mobile for better touch experience */
  }
  
  .carousel-heading {
    padding: 0 15px;
  }
}