/* =============================================
   UNA NUEVA MAÑANA — Estilos Globales
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Variables de Diseño ─────────────────── */
:root {
  --primary:       #1E3EFF;
  --primary-dark:  #0D24CC;
  --primary-glow:  rgba(30, 62, 255, 0.35);
  --yellow:        #FFB800;
  --yellow-light:  #FFD052;
  --orange:        #FF8C00;
  --orange-glow:   rgba(255, 140, 0, 0.25);
  --dark:          #060A18;
  --dark-2:        #0C1228;
  --dark-3:        #111830;
  --glass:         rgba(255, 255, 255, 0.05);
  --glass-border:  rgba(255, 255, 255, 0.12);
  --text-main:     #FFFFFF;
  --text-muted:    rgba(255,255,255,0.6);
  --text-dim:      rgba(255,255,255,0.35);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-primary: 0 8px 32px rgba(30, 62, 255, 0.4);
  --shadow-yellow:  0 8px 32px rgba(255, 184, 0, 0.35);
  --shadow-card:    0 20px 60px rgba(0,0,0,0.4);

  --nav-height: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Scrollbar ────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ─── Utilidades ───────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(30,62,255,0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--glass);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 60px rgba(255,184,0,0.5);
}

/* ─── Noise Overlay ────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 clamp(16px, 4vw, 60px);
}

#navbar.scrolled {
  background: rgba(6, 10, 24, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(255,184,0,0.35));
  transition: var(--transition);
}
.nav-logo img:hover {
  filter: drop-shadow(0 4px 20px rgba(255,184,0,0.6));
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 50, 50, 0.2);
  border: 1px solid rgba(255, 80, 80, 0.4);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.live-badge .pulse-dot {
  width: 7px; height: 7px;
  background: #ff4444;
  border-radius: 50%;
  animation: livePulse 1.2s infinite;
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(6,10,24,0.98);
  backdrop-filter: blur(24px);
  padding: 24px clamp(16px,4vw,60px) 32px;
  border-bottom: 1px solid var(--glass-border);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--yellow); padding-left: 8px; }

/* ─── Ticker ───────────────────────────────── */
#ticker-bar {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  height: 36px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 998;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-label {
  flex-shrink: 0;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-content {
  display: flex;
  align-items: center;
  width: max-content;
  height: 36px;
  animation: ticker 40s linear infinite;
}
.ticker-content span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 0 40px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .modal-suggestions { display: none; }
}
@media (min-width: 1024px) {
  video { max-width: 800px; }
}
.ticker-content span::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  transform: rotate(45deg);
  margin-right: 14px;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 36px + 60px) clamp(16px,5vw,80px) 130px;
}

/* Fondo animado */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(6, 10, 24, 0) 0%, rgba(12, 18, 40, 0.15) 100%),
                    url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Orbes flotantes */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,62,255,0.18) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,184,0,0.12) 0%, transparent 70%);
  bottom: -200px; right: -150px;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, transparent 70%);
  top: 40%; left: 10%;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}

/* Grid lines de fondo */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

/* Sol decorativo */
.hero-sun {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  z-index: 0;
}
.hero-sun-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,0.08) 0%, rgba(255,140,0,0.04) 50%, transparent 70%);
  animation: sunPulse 4s ease-in-out infinite;
}
.hero-sun-ring {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,184,0,0.12);
  animation: sunRing 6s linear infinite;
}
.hero-sun-ring-2 {
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,184,0,0.08);
  animation: sunRing 10s linear infinite reverse;
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
@keyframes sunRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contenido hero */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-logo {
  width: clamp(280px, 45vw, 500px);
  margin: 0 auto 32px;
  animation: logoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) both, logoPulse 4s 1s infinite alternate ease-in-out;
}
@keyframes logoEntrance {
  0% { transform: scale(0.6) translateY(30px); opacity: 0; filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0)); }
  100% { transform: scale(1) translateY(0); opacity: 1; filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)); }
}
@keyframes logoPulse {
  0% { transform: scale(1) translateY(0); filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)); }
  100% { transform: scale(1.02) translateY(0); filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.8)); }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  animation: fadeUp 0.8s 0.3s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-break { display: none; }

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.5s both;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #4da6ff 0%, var(--primary) 50%, var(--primary-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
  animation: shimmerText 3s infinite alternate ease-in-out;
}
@keyframes shimmerText {
  0% { background-position: 0% 50%; filter: drop-shadow(0 0 10px rgba(77, 166, 255, 0.3)); }
  100% { background-position: 100% 50%; filter: drop-shadow(0 0 25px rgba(77, 166, 255, 0.8)); }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.7s both;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-schedule {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  margin-bottom: 40px;
  backdrop-filter: blur(12px);
  animation: fadeUp 0.8s 0.85s both;
  flex-wrap: wrap;
  justify-content: center;
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.schedule-icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.schedule-text {
  text-align: left;
}
.schedule-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}
.schedule-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.schedule-sep {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 1s both;
}

.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-yellow);
  position: relative;
  overflow: hidden;
}
.btn-live::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-live:hover::before { opacity: 1; }
.btn-live:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 60px rgba(255,184,0,0.55);
}
.btn-live-icon { font-size: 1.1rem; }

@keyframes fadeUp {
  0% { transform: translateY(24px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  animation: fadeUp 1s 1.3s both;
}
.scroll-wheel {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel::before {
  content: '';
  width: 3px; height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   NOTICIAS DEL PROGRAMA — Premium Editorial Design
   ============================================================ */
#noticias {
  padding: 110px clamp(16px, 5vw, 80px) 100px;
  position: relative;
  overflow: hidden;
}
.nv-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30,62,255,0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

/* ── Wrapper ── */
.nv-wrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Masthead ── */
.nv-masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.nv-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.nv-live-ring {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255,184,0,0.5);
  animation: nv-ring 2.2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes nv-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,184,0,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(255,184,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,184,0,0); }
}
.nv-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}
.nv-date-block { text-align: right; }
.nv-date-label {
  font-size: 0.62rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.nv-date-value {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: capitalize;
}

/* ── Category tags ── */
.nv-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.nv-tag--pol  { background: rgba(107,143,255,0.15); color: #8ba4ff; border: 1px solid rgba(107,143,255,0.3); }
.nv-tag--geo  { background: rgba(255,140,0,0.15);   color: #ffaa44; border: 1px solid rgba(255,140,0,0.3); }
.nv-tag--inter{ background: rgba(80,210,140,0.12);  color: #5dd4a0; border: 1px solid rgba(80,210,140,0.25); }
.nv-tag--nac  { background: rgba(255,90,90,0.12);   color: #ff8080; border: 1px solid rgba(255,90,90,0.25); }

/* ── FEATURE CARD ── */
.nv-feature {
  position: relative;
  background: var(--dark-3);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  margin-bottom: 32px;
  transition: box-shadow 0.4s ease;
}
.nv-feature:hover {
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.nv-feature-accent {
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--orange) 100%);
  border-radius: 20px 0 0 20px;
}
.nv-feature-num {
  position: absolute;
  top: 32px; right: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.nv-feature-body {
  padding: clamp(28px, 4vw, 52px) clamp(28px, 5vw, 60px);
}
.nv-feature-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.nv-feature-date {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.nv-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.22;
  color: #fff;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 0 18px;
}
.nv-feature-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 24px;
}

/* ── GRID CARDS ── */
.nv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nv-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.nv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.45); background: rgba(255,255,255,0.04); }
.nv-card:hover::before { opacity: 1; }

.nv-card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
}
.nv-card-body { padding: 28px 26px 24px; }
.nv-card-body .nv-tag { margin-bottom: 16px; display: inline-block; }
.nv-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.nv-card-lead {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── Article expanded text ── */
.nv-article-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
}
.nv-article-text.is-open {
  max-height: 1400px;
  opacity: 1;
}
.nv-article-text p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  padding-top: 4px;
}
.nv-article-text p:first-child { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; margin-top: 4px; }
.nv-article-text p:last-child { margin-bottom: 12px; }

/* ── Toggle button ── */
.nv-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s, gap 0.2s;
}
.nv-toggle:hover { color: var(--orange); gap: 12px; }
.nv-toggle-icon {
  display: flex;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.nv-toggle[aria-expanded="true"] .nv-toggle-icon { transform: rotate(180deg); }

/* ── Newsletter Section ── */
#newsletter {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  z-index: 10;
}
.nl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.nl-content {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px 5vw;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.nl-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #4da6ff);
}
.nl-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.nl-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.nl-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.nl-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.nl-input:focus {
  outline: none;
  border-color: #4da6ff;
  background: rgba(255,255,255,0.1);
}
.nl-btn {
  padding: 16px 32px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .nl-form { flex-direction: column; }
  .nl-btn { width: 100%; }
}

/* ── Responsive ── */
@media (max-width: 1100px) { .nv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .nv-grid { grid-template-columns: 1fr; gap: 14px; }
  .nv-masthead { flex-direction: column; align-items: flex-start; }
  .nv-date-block { text-align: left; }
  .nv-feature-num { font-size: 5rem; }
}

/* ============================================================
   SOBRE EL PROGRAMA
   ============================================================ */


#sobre {
  padding: 120px clamp(16px,5vw,80px);
  position: relative;
  overflow: hidden;
}

.sobre-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 0% 50%, rgba(30,62,255,0.06) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 100% 50%, rgba(255,140,0,0.05) 0%, transparent 60%);
}

.sobre-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sobre-left { }

.sobre-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pillar-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar-card:hover { 
  border-color: rgba(255,184,0,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255,184,0,0.15), rgba(255,140,0,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--yellow);
}
.pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.pillar-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 40px;
}
.stat-item {
  background: var(--dark-2);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover { background: var(--dark-3); }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================================
   TALENTOS
   ============================================================ */
#talentos {
  padding: 120px clamp(16px,5vw,80px);
  position: relative;
  overflow: hidden;
}

.talentos-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
}

.talentos-header {
  max-width: 1280px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.talentos-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.talent-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark-2) 100%);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  cursor: pointer;
  group: true;
  display: block;
  text-decoration: none;
  color: inherit;
}
.talent-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,184,0,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,184,0,0.15);
}

.talent-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--orange) 100%);
}

.talent-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.talent-card:hover .talent-img-wrap img {
  transform: scale(1.06);
}

.talent-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(6,10,24,0.4) 70%,
    rgba(6,10,24,0.85) 100%
  );
}

.talent-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,62,255,0.15), rgba(255,184,0,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.talent-card:hover .talent-glow { opacity: 1; }

.talent-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 18px;
}

.talent-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.talent-role {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--yellow);
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.25);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* Featured talent (first card bigger) */
.talent-card.featured {
  grid-row: span 1;
}
/* ============================================================
   LLAMADAS EN VIVO
   ============================================================ */
.live-call-banner {
  background: linear-gradient(135deg, rgba(30, 62, 255, 0.1), rgba(12, 18, 40, 0.8));
  border: 1px solid rgba(77, 166, 255, 0.2);
  max-width: 900px;
  margin: 60px auto;
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  z-index: 20;
  width: 90%;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(77, 166, 255, 0.05);
}

.call-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(30, 62, 255, 0.6);
  z-index: 2;
}

.call-icon {
  width: 36px;
  height: 36px;
  color: #fff;
  animation: ringPhone 2s infinite ease-in-out;
}

.call-pulse-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: pulseRing 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: -1;
}

.live-call-title {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.live-call-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}

.live-call-desc strong {
  color: #4da6ff;
  font-weight: 700;
}

.live-call-numbers {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1rem, 2.8vw, 1.8rem);
  letter-spacing: 1px;
}

.phone-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.phone-loc {
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-shadow: none;
}
.phone-loc.rd {
  background: #4da6ff;
  color: var(--dark);
}
.phone-loc.usa {
  background: var(--yellow);
  color: var(--dark);
}

.live-call-numbers .sep {
  color: var(--text-dim);
  margin: 0 4px;
  opacity: 0.6;
}

.live-call-numbers .num {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes ringPhone {
  0%, 10%, 20%, 30%, 40% { transform: rotate(0deg); }
  5% { transform: rotate(15deg); }
  15% { transform: rotate(-15deg); }
  25% { transform: rotate(15deg); }
  35% { transform: rotate(-15deg); }
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (min-width: 768px) {
  .live-call-banner {
    flex-direction: row;
    text-align: left;
    padding: 50px;
  }
  .live-call-desc {
    margin: 0 0 20px 0;
  }
  .call-icon-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
  }
  .call-icon {
    width: 48px;
    height: 48px;
  }
  .call-pulse-ring {
    inset: -15px;
  }
}

/* ============================================================
   EN VIVO / YOUTUBE
   ============================================================ */
#en-vivo {
  padding: 120px clamp(16px,5vw,80px);
  position: relative;
  overflow: hidden;
}

.en-vivo-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(30,62,255,0.1) 0%, transparent 70%),
    linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.en-vivo-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.video-container {
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--glass-border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 10;
}
.video-badge .yt-dot {
  width: 7px; height: 7px;
  background: #FF0000;
  border-radius: 50%;
  animation: livePulse 1.2s infinite;
}

.vivo-sidebar { }

.channel-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
}
.channel-info-card .ch-logo {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #FF0000, #cc0000);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.channel-info-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.channel-info-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.horario-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
}
.horario-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--yellow);
}
.horario-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.85rem;
}
.horario-row:last-child { border-bottom: none; }
.horario-day { color: var(--text-muted); font-weight: 500; }
.horario-time {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
}
.horario-channel {
  font-size: 0.72rem;
  color: var(--yellow);
  font-weight: 600;
  background: rgba(255,184,0,0.1);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(255,184,0,0.2);
}

/* TV channels strip */
.tv-channels-strip {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.tv-channel-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}
.tv-channel-badge:hover {
  border-color: rgba(255,184,0,0.4);
  background: rgba(255,184,0,0.08);
}
.tv-channel-badge span { font-size: 1rem; }
.tv-channel-badge--yt {
  text-decoration: none;
  color: inherit;
}
.tv-channel-badge--yt:hover {
  border-color: rgba(255, 0, 0, 0.4);
  background: rgba(255, 0, 0, 0.08);
}

/* ============================================================
   DONACIONES
   ============================================================ */
#donaciones {
  padding: 80px clamp(16px, 5vw, 80px);
  position: relative;
  background: var(--dark);
}
.donaciones-inner {
  max-width: 900px;
  margin: 0 auto;
}
.donaciones-content {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(12, 18, 40, 0.8));
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donaciones-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}
.donaciones-icon {
  width: 80px; height: 80px;
  background: rgba(255, 184, 0, 0.15);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.donaciones-title {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.donaciones-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}
.btn-donate {
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-donate:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 184, 0, 0.5);
  color: var(--dark);
}

.donation-methods {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.methods-title {
  color: var(--text-dim);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.methods-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.method-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}
.method-badge:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ============================================================
   ÚLTIMOS VIDEOS (YouTube Grid)
   ============================================================ */
#videos {
  padding: 120px clamp(16px,5vw,80px);
  position: relative;
  overflow: hidden;
}

.videos-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255,0,0,0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.videos-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.videos-header {
  text-align: center;
  margin-bottom: 56px;
}
/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.video-modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-modal.is-active .video-modal-content {
  transform: translateY(0) scale(1);
}
.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 10;
  transition: transform 0.2s, background 0.2s;
}
.video-modal-close:hover {
  transform: scale(1.1);
  background: var(--yellow);
  color: var(--dark);
}
.main-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  margin-bottom: 24px;
}
.main-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.modal-suggestions h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #fff;
}
.modal-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.modal-suggestions-grid .video-card {
  /* Smaller version of the video card for suggestions */
}
.modal-suggestions-grid .video-card .video-title {
  font-size: 0.85rem;
  -webkit-line-clamp: 2;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.videos-grid .video-card:nth-child(n+9) {
  display: none !important;
}

.video-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,0,0,0.1);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.video-card:hover .video-thumb-wrap img {
  transform: scale(1.06);
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
}
.video-play-btn span {
  width: 48px; height: 48px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
  color: #fff;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(255,0,0,0.5);
}
.video-card:hover .video-play-btn {
  background: rgba(0,0,0,0.25);
}
.video-card:hover .video-play-btn span {
  transform: scale(1);
  opacity: 1;
}

/* Duration badge */
.video-duration {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* Video info */
.video-info {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.video-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.video-channel {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.video-channel::before {
  content: '';
  width: 14px; height: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 50%;
  flex-shrink: 0;
}

/* Responsive videos grid */
@media (max-width: 1200px) {
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .videos-grid { grid-template-columns: 1fr; gap: 16px; }
  .video-play-btn span { transform: scale(1); opacity: 0.85; }
}

/* ============================================================
   CANALES DIGITALES
   ============================================================ */
#digitales {
  padding: 120px clamp(16px,5vw,80px);
  position: relative;
  overflow: hidden;
}

.digitales-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
}

.digitales-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.digitales-header {
  margin-bottom: 64px;
}

.social-grid {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.social-grid::-webkit-scrollbar { height: 8px; }
.social-grid::-webkit-scrollbar-track { background: transparent; }
.social-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

.social-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 240px;
  scroll-snap-align: start;
}
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-gradient, linear-gradient(135deg, rgba(255,255,255,0.03), transparent));
  opacity: 0;
  transition: opacity 0.4s;
}
.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow, 0 24px 60px rgba(0,0,0,0.4));
  border-color: var(--card-border, rgba(255,255,255,0.2));
}
.social-card:hover::before { opacity: 1; }

/* Per-platform colors */
.social-card[data-platform="youtube"]   { --card-gradient: linear-gradient(135deg, rgba(255,0,0,0.08), transparent); --card-shadow: 0 24px 60px rgba(255,0,0,0.15); --card-border: rgba(255,0,0,0.25); }
.social-card[data-platform="instagram"] { --card-gradient: linear-gradient(135deg, rgba(225,48,108,0.08), transparent); --card-shadow: 0 24px 60px rgba(225,48,108,0.15); --card-border: rgba(225,48,108,0.25); }
.social-card[data-platform="facebook"]  { --card-gradient: linear-gradient(135deg, rgba(24,119,242,0.08), transparent); --card-shadow: 0 24px 60px rgba(24,119,242,0.15); --card-border: rgba(24,119,242,0.25); }
.social-card[data-platform="x"]        { --card-gradient: linear-gradient(135deg, rgba(255,255,255,0.05), transparent); --card-shadow: 0 24px 60px rgba(255,255,255,0.08); --card-border: rgba(255,255,255,0.2); }
.social-card[data-platform="tiktok"]   { --card-gradient: linear-gradient(135deg, rgba(0,242,234,0.06), transparent); --card-shadow: 0 24px 60px rgba(0,242,234,0.12); --card-border: rgba(0,242,234,0.2); }
.social-card[data-platform="threads"]  { --card-gradient: linear-gradient(135deg, rgba(150,150,150,0.06), transparent); --card-shadow: 0 24px 60px rgba(150,150,150,0.12); --card-border: rgba(150,150,150,0.2); }

.social-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  transition: var(--transition);
}
.social-card:hover .social-icon-wrap {
  transform: rotate(-6deg) scale(1.1);
}

.social-icon-wrap.yt    { background: rgba(255,0,0,0.15); }
.social-icon-wrap.ig    { background: linear-gradient(135deg, rgba(225,48,108,0.15), rgba(253,121,36,0.15)); }
.social-icon-wrap.fb    { background: rgba(24,119,242,0.15); }
.social-icon-wrap.x     { background: rgba(255,255,255,0.08); }
.social-icon-wrap.tt    { background: rgba(0,242,234,0.1); }
.social-icon-wrap.th    { background: rgba(150,150,150,0.1); }

.social-info { flex: 1; }
.social-platform {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 4px;
}
.social-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
}
.social-handle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.social-arrow {
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.social-card:hover .social-arrow {
  color: var(--yellow);
  transform: translateX(4px) translateY(-4px);
}

/* ============================================================
   CTA BAND
   ============================================================ */
#cta-band {
  padding: 80px clamp(16px,5vw,80px);
  position: relative;
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0820A0 50%, #0B0D2A 100%);
}

/* Geometric shapes */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,184,0,0.08);
  filter: blur(40px);
}
.cta-shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.cta-shape-2 { width: 300px; height: 300px; bottom: -80px; left: 5%; }

.cta-band-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-band-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-band-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #030610;
  border-top: 1px solid var(--glass-border);
  padding: 60px clamp(16px,5vw,80px) 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {}
.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(255,184,0,0.25));
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social-row {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: rgba(255,184,0,0.15);
  border-color: rgba(255,184,0,0.35);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-col ul li a::before {
  content: '→';
  opacity: 0;
  transition: var(--transition);
  font-size: 0.8rem;
}
.footer-col ul li a:hover::before { opacity: 1; }

.footer-divider {
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-copy span { color: var(--yellow); }
.footer-credits {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ============================================================
   ANIMACIONES DE ENTRADA (IntersectionObserver)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }
.fade-up.delay-7 { transition-delay: 0.7s; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .sobre-inner { grid-template-columns: 1fr; gap: 60px; }
  .en-vivo-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav-links { display: none; }
  .nav-cta .live-badge { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  
  #navbar {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
  }
  .nav-hamburger span {
    background: var(--primary) !important;
  }
  .nav-mobile {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .nav-mobile a {
    color: var(--primary);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .hero-sun { width: 220px; height: 220px; }
  
  .mobile-break { display: block; }
  .hero-title {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem);
  }
  
  .hero-bg {
    background-position: left center !important;
  }

  .talentos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

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

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sobre-right { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(3,1fr); }
  
  .donaciones-content {
    padding: 40px 20px;
  }
  .live-call-banner {
    padding: 30px 16px;
  }
  
  .videos-grid .video-card:nth-child(n+5) {
    display: none !important;
  }

  .modal-suggestions {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .talentos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-schedule { padding: 14px 20px; gap: 16px; }
  .schedule-sep { display: none; }
}
