/* =========================================================================
   AllSports Brasil — Site Stylesheet
   Conteúdo baseado no Media Kit 2025/2026
   Design baseado no Design System (colors_and_type.css)
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--as-bg-dark); color: var(--as-white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* =========================================================================
   LAYOUT
   ========================================================================= */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

.section-kicker {
  font-family: var(--ff-condensed);
  font-weight: 800; font-style: italic;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--as-red);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.section-kicker::before { content:""; display:inline-block; width:20px; height:2px; background:var(--as-red); }

.section-title {
  font-family: var(--ff-headline);
  font-weight: 900; font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  text-transform: uppercase; line-height: 1;
  color: #fff;
}

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px; gap: 16px;
}
.section-header.centered { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }

.body-text { font-family: var(--ff-body); font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.65); }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 14px; padding: 10px 20px;
  border-radius: var(--r-sm);
  transform: skewX(var(--skew));
  transition: background 0.12s, transform 0.12s, filter 0.12s, border-color 0.12s;
  white-space: nowrap;
}
.btn > span { display: inline-flex; align-items: center; gap: 8px; transform: skewX(calc(-1 * var(--skew))); }
.btn.primary { background: var(--as-red); color: #fff; box-shadow: var(--shadow-logo); }
.btn.primary:hover { background: var(--as-red-deep); }
.btn.primary:active { transform: skewX(var(--skew)) translateY(1px); }
.btn.ghost { background: transparent; color: rgba(255,255,255,0.75); border: 2px solid rgba(255,255,255,0.3); padding: 8px 18px; }
.btn.ghost:hover { border-color: #fff; color: #fff; }
.btn-lg { font-size: 16px; padding: 13px 26px; }

/* tags */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 11px; padding: 3px 9px; border-radius: var(--r-sm);
}
.tag .dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.tag.red    { background: var(--as-red); color: #fff; }
.tag.navy   { background: var(--as-navy); color: #fff; }
.tag.yellow { background: var(--as-yellow); color: var(--as-navy); }
.tag.teal   { background: var(--as-teal); color: #fff; }
.tag.ghost  { background: transparent; color: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.2); }
.tag.plate  { transform: skewX(var(--skew)); font-size: 11px; padding: 3px 9px; }
.tag.plate > span { display: inline-block; transform: skewX(calc(-1 * var(--skew))); }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,11,51,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--as-line-dark);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px; gap: 24px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; margin-left: 20px; }
.nav-links a {
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  text-transform: uppercase; font-size: 13px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6); padding: 6px 11px; border-radius: var(--r-sm);
  transition: color 0.12s, background 0.12s;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-yt {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 12px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); transition: color 0.12s;
}
.nav-yt:hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display:block; width:22px; height:2px; background:#fff; border-radius:2px; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden; padding-top: 64px;
}
.hero-bg { position: absolute; inset: 0; background: var(--as-bg-dark); }
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.55;
  display: block;
}
.hero-bg::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,11,51,0.3) 0%, rgba(15,11,51,0) 25%, rgba(15,11,51,0.5) 65%, rgba(15,11,51,1) 100%);
}
.hero-halftone {
  position: absolute; top: 64px; right: 0;
  width: 400px; height: 400px;
  background-image: radial-gradient(var(--as-red) 28%, transparent 30%);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 100% 0%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 80% at 100% 0%, #000 10%, transparent 75%);
  opacity: 0.3; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 72px 0 96px; max-width: 760px; }
.hero-eyebrow { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.hero-title {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: clamp(56px, 9vw, 116px); line-height: 0.88;
  letter-spacing: -0.02em; text-transform: uppercase; color: #fff; margin-bottom: 22px;
}
.hero-title em { font-style: inherit; color: var(--as-red); }
.hero-sub { font-size: clamp(15px, 1.8vw, 19px); color: rgba(255,255,255,0.65); line-height: 1.5; max-width: 500px; margin-bottom: 36px; }
.hero-actions { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }

/* =========================================================================
   STATS BAR
   ========================================================================= */
.stats-bar {
  background: var(--as-navy-deep);
  border-top: 3px solid var(--as-red);
  border-bottom: 1px solid var(--as-line-dark);
  padding: 0;
}
.stats-bar-inner {
  display: flex; align-items: stretch;
  justify-content: space-between;
}
.stat-item {
  flex: 1; padding: 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.stat-num {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: clamp(22px, 3vw, 34px); color: #fff; line-height: 1;
}
.stat-label {
  font-family: var(--ff-condensed); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.4);
}
.stat-divider { width: 1px; background: var(--as-line-dark); flex-shrink: 0; }

/* =========================================================================
   TWO COL (O Canal)
   ========================================================================= */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.two-col-text { display: flex; flex-direction: column; gap: 0; }
.two-col-text .section-title { margin-bottom: 24px; }

.quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--as-red);
  background: rgba(230,59,46,0.07);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--ff-body); font-style: italic; font-size: 16px;
  color: rgba(255,255,255,0.75); line-height: 1.5;
}

.timeline { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.timeline-item { display: flex; gap: 16px; align-items: flex-start; }
.timeline-year {
  flex-shrink: 0;
  font-family: var(--ff-mono); font-size: 13px; color: var(--as-red);
  letter-spacing: 0.04em; min-width: 70px; padding-top: 2px;
}
.timeline-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }

.two-col-visual { height: 100%; }
.visual-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 16/9;
}
/* TV beach sozinha e maior */
.visual-card.visual-card-hero {
  aspect-ratio: unset;
  height: 100%;
  min-height: 460px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.visual-card.visual-card-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.visual-card img { width:100%; height:100%; object-fit:cover; object-position: center center; display:block; }
.visual-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,11,51,0.8) 100%);
}
.visual-card-tag { position: absolute; top: 16px; left: 16px; }

/* =========================================================================
   ESQUEMA TÁTICO
   ========================================================================= */
.esquema-section {
  background: var(--as-navy-deep); position: relative; overflow: hidden;
  border-top: 1px solid var(--as-line-dark); border-bottom: 1px solid var(--as-line-dark);
}
/* Faixa full-width do estúdio */
.studio-strip {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.studio-strip img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.studio-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15,11,51,0.3) 0%,
    transparent 20%,
    transparent 75%,
    rgba(15,11,51,0.5) 100%);
  display: flex; align-items: flex-end;
  pointer-events: none;
}
.studio-strip-overlay .container { padding-bottom: 28px; }
.studio-strip-label { display: flex; flex-direction: column; gap: 4px; }
.studio-strip-title {
  font-family: var(--ff-headline);
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 52px);
  color: #fff; line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.esquema-bg-halftone {
  position: absolute; right: -80px; top: -80px;
  width: 500px; height: 500px;
  background-image: radial-gradient(var(--as-red) 28%, transparent 30%);
  background-size: 16px 16px; opacity: 0.08; border-radius: 50%; pointer-events: none;
}
.pilares-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pilar {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--as-line-dark);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.pilar:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.pilar-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pilar-icon.red   { background: rgba(230,59,46,0.15); color: var(--as-red); }
.pilar-icon.navy  { background: rgba(34,26,92,0.5); color: rgba(255,255,255,0.8); }
.pilar-icon.teal  { background: rgba(26,164,142,0.15); color: var(--as-teal); }
.pilar-pos {
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.pilar-title {
  font-family: var(--ff-headline); font-weight: 900; font-style: italic;
  font-size: 26px; text-transform: uppercase; color: #fff; line-height: 1;
}
.pilar-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; flex: 1; }
.pilar-focus {
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--as-red); border-top: 1px solid var(--as-line-dark); padding-top: 12px; margin-top: 4px;
}
.producao-nota {
  margin-top: 36px; text-align: center;
  font-family: var(--ff-body); font-size: 15px; color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.producao-nota strong { color: rgba(255,255,255,0.8); }

/* =========================================================================
   PROGRAMAS
   ========================================================================= */
.programas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.programa-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--as-line-dark);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
}
.programa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); border-color: rgba(255,255,255,0.12); }

/* barra colorida no topo do card */
.programa-card-accent {
  height: 4px; width: 100%; flex-shrink: 0;
}
.programa-card-accent.red    { background: var(--as-grad-fire); }
.programa-card-accent.teal   { background: var(--as-grad-cool); }
.programa-card-accent.yellow { background: var(--as-grad-sun); }
.programa-card-accent.navy   { background: var(--as-grad-logo); }

.programa-card-body {
  padding: 24px 22px 26px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.programa-card.featured .programa-card-body { padding: 28px 26px 30px; }
.programa-card-title {
  font-family: var(--ff-headline); font-weight: 800; font-style: italic;
  text-transform: uppercase; font-size: 17px; line-height: 1.05; color: #fff;
}
.programa-card-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; flex: 1; }
.programa-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; padding-top: 4px; }

/* Card com thumbnail real */
.programa-card.has-thumb {}
.programa-card-thumb {
  width: 100%; overflow: hidden; flex-shrink: 0;
  background: var(--as-navy-deep);
}
.programa-card-thumb img {
  width: 100%; display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.programa-card:hover .programa-card-thumb img { transform: scale(1.03); }

/* Conexão: logo em fundo branco — sem corte */
.conexao-card .programa-card-thumb {
  background: #fff;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.conexao-card .programa-card-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* Todos os outros thumbs: 16:9 */
.programa-card.has-thumb:not(.conexao-card) .programa-card-thumb {
  aspect-ratio: 16/9;
}

/* Pantera: thumbnail 16:9 do vídeo */
.pantera-thumb {
  background: #111;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pantera-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Em breve */
.programas-em-breve {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px dashed var(--as-line-dark);
  border-radius: var(--r-lg);
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.em-breve-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4); white-space: nowrap;
}
.em-breve-list {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.em-breve-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.em-breve-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
}

/* =========================================================================
   AUDIÊNCIA
   ========================================================================= */
.audiencia-section {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--as-line-dark);
  border-bottom: 1px solid var(--as-line-dark);
}
.audiencia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.audiencia-stats { display: flex; flex-direction: column; gap: 28px; }
.big-stat { display: flex; flex-direction: column; gap: 6px; }
.big-stat-num {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: clamp(48px, 7vw, 88px); color: #fff; line-height: 0.9;
  letter-spacing: -0.02em;
}
.big-stat-label {
  font-family: var(--ff-condensed); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4);
}
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; padding-top: 8px; border-top: 1px solid var(--as-line-dark); }
.mini-stat { display: flex; flex-direction: column; gap: 5px; }
.mini-stat-num {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: clamp(22px, 3vw, 32px); color: var(--as-red); line-height: 1;
}
.mini-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.4; }

.audiencia-perfil { display: flex; flex-direction: column; gap: 0; }
.perfil-title {
  font-family: var(--ff-headline); font-weight: 800; font-style: italic;
  font-size: 22px; text-transform: uppercase; color: #fff; margin-bottom: 24px;
}
.perfil-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--as-line-dark);
}
.perfil-item:last-child { border-bottom: none; }
.perfil-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(230,59,46,0.12); color: var(--as-red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.perfil-item-title {
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff; margin-bottom: 4px;
}
.perfil-item-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Hall da fama */
.hall-fama { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--as-line-dark); }
.hall-fama-title { margin-bottom: 28px; }
.hall-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.hall-card {
  border-radius: var(--r-lg); padding: 28px 24px;
  border: 1px solid var(--as-line-dark);
  background: rgba(255,255,255,0.04);
  display: flex; flex-direction: column; gap: 10px;
}
.hall-card.gold { border-color: rgba(244,198,30,0.4); background: rgba(244,198,30,0.06); }
.hall-pos {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}
.hall-views {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: clamp(28px, 4vw, 44px); line-height: 1; color: #fff;
}
.hall-views span { font-size: 0.45em; color: rgba(255,255,255,0.4); font-style: italic; }
.hall-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* =========================================================================
   PARA MARCAS
   ========================================================================= */
.parceiros-section {
  background: var(--as-navy-deep);
  border-top: 3px solid var(--as-red);
  position: relative;
  overflow: hidden;
}

.parceiros-content {
  position: relative;
  z-index: 1;
}
.parceiros-intro {
  font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7;
  margin-bottom: 48px; max-width: 640px;
}
.parceiros-intro strong { color: rgba(255,255,255,0.9); }

.formatos-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 64px; }
.formato-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--as-line-dark);
  border-radius: var(--r-lg); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.formato-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.formato-card.destaque { border-color: rgba(230,59,46,0.5); background: rgba(230,59,46,0.07); }
.formato-num {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: 48px; line-height: 1; color: rgba(255,255,255,0.08); align-self: flex-end;
}
.formato-freq {
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--as-red);
}
.formato-title {
  font-family: var(--ff-headline); font-weight: 800; font-style: italic;
  font-size: 20px; text-transform: uppercase; color: #fff; line-height: 1.1;
}
.formato-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; flex: 1; }
.formato-tag { margin-top: auto; }

.ecossistema {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 48px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--as-line-dark); border-radius: var(--r-xl);
}
.ecossistema-title {
  font-family: var(--ff-headline); font-weight: 900; font-style: italic;
  font-size: clamp(22px, 3vw, 36px); text-transform: uppercase; color: #fff;
  margin-bottom: 16px; margin-top: 8px;
}
.ecossistema-desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; }

.ecossistema-nums { display: flex; flex-direction: column; gap: 20px; }
.eco-num {
  padding: 20px 24px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.04); border: 1px solid var(--as-line-dark);
}
.eco-num.highlight { border-color: var(--as-red); background: rgba(230,59,46,0.1); }
.eco-val {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: 36px; color: #fff; line-height: 1;
}
.eco-num.highlight .eco-val { color: var(--as-red); }
.eco-lbl { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; line-height: 1.4; }

/* =========================================================================
   CTA FINAL
   ========================================================================= */
.cta-section {
  background: var(--as-bg-dark); position: relative; overflow: hidden;
  border-top: 1px solid var(--as-line-dark);
}

.cta-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  display: block;
}
.cta-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,11,51,0.55) 0%,
    rgba(15,11,51,0.3) 40%,
    rgba(15,11,51,0.3) 60%,
    rgba(15,11,51,0.75) 100%
  );
}

.cta-bg-halftone {
  position: absolute; left: -80px; bottom: -80px;
  width: 600px; height: 600px;
  background-image: radial-gradient(var(--as-red) 28%, transparent 30%);
  background-size: 18px 18px; opacity: 0.06; border-radius: 50%; pointer-events: none;
  z-index: 1;
}
.cta-inner {
  max-width: 760px; display: flex; flex-direction: column; gap: 24px;
  position: relative; z-index: 2;
}
.cta-title {
  font-family: var(--ff-display); font-weight: 900; font-style: italic;
  font-size: clamp(32px, 5vw, 64px); text-transform: uppercase;
  line-height: 0.92; color: #fff;
}
.cta-title em { font-style: inherit; color: var(--as-red); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-links {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding-top: 8px;
}
.cta-link {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--ff-condensed); font-weight: 700; font-style: italic;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5); transition: color 0.12s;
}
.cta-link:hover { color: #fff; }
.cta-sep { color: var(--as-line-dark); }
.cta-badge {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.04); border: 1px solid var(--as-line-dark);
  align-self: flex-start; margin-top: 8px;
}
.cta-badge img {
  width: 120px; height: auto;
  border-radius: var(--r-sm);
  object-fit: contain;
  flex-shrink: 0;
}
.cta-badge-title {
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 15px; text-transform: uppercase; color: #fff;
}
.cta-badge-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--as-navy-deep); border-top: 1px solid var(--as-line-dark); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { max-height: 90px; width: auto; margin-bottom: 20px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 220px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5);
  transition: background 0.12s, color 0.12s;
}
.footer-social a:hover { background: var(--as-red); color: #fff; }
.footer-col-title {
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.12s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--as-line-dark); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-copy {
  font-family: var(--ff-condensed); font-size: 11px; font-style: italic; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.25);
}
.footer-yt {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ff-condensed); font-weight: 800; font-style: italic;
  font-size: 12px; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.12s;
}
.footer-yt:hover { color: #fff; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .programas-grid { grid-template-columns: 1fr 1fr; }
  .formatos-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .visual-card { aspect-ratio: 16/9; max-height: 400px; }
  .audiencia-grid { grid-template-columns: 1fr; gap: 48px; }
  .ecossistema { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hall-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(48px, 13vw, 72px); }
  .stats-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .programas-grid { grid-template-columns: 1fr; }
  .pilares-grid { grid-template-columns: 1fr; }
  .hall-grid { grid-template-columns: 1fr; }
  .formatos-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
