/* ============================================================
   SINTONÍA EN EL AULA – Main Stylesheet
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand colours */
  --purple:   #7C3AED;
  --purple-l: #A78BFA;
  --purple-d: #5B21B6;
  --blue:     #3B82F6;
  --blue-l:   #BFDBFE;
  --blue-d:   #1D4ED8;
  --green:    #10B981;
  --green-d:  #059669;
  --yellow:   #F59E0B;
  --yellow-l: #FEF3C7;
  --pink:     #EC4899;
  --pink-d:   #DB2777;
  --orange:   #F97316;
  --orange-d: #EA580C;
  --red:      #EF4444;
  --teal:     #14B8A6;

  /* Hero gradient palette */
  --hero-from: #EAF6FD;
  --hero-mid:  #DBEAFE;
  --hero-to:   #EDE9FE;

  /* Neutral palette */
  --white:     #FFFFFF;
  --gray-50:   #F8FAFC;
  --gray-100:  #F1F5F9;
  --gray-200:  #E2E8F0;
  --gray-300:  #CBD5E1;
  --gray-400:  #94A3B8;
  --gray-500:  #64748B;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-800:  #1E293B;
  --gray-900:  #0F172A;

  /* Typography */
  --font-head: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Layout */
  --nav-h:  70px;
  --max-w:  1280px;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-md: 0 8px 40px rgba(0,0,0,.14);
  --shadow-lg: 0 16px 60px rgba(0,0,0,.18);

  /* Transition */
  --tr: .22s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--tr);
}
a:hover { color: var(--purple-d); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple-l), var(--purple));
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--purple-d); }

/* ============================================================
   3. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-mid) 50%, var(--hero-to) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(124,58,237,.12);
  box-shadow: 0 2px 16px rgba(124,58,237,.09);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--purple-l);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-site-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-d);
}

.nav-tagline {
  font-size: .72rem;
  color: var(--gray-500);
  font-weight: 600;
}

/* Nav links */
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: var(--white);
  border-radius: 50px;
  padding: .35rem .6rem;
  box-shadow: 0 2px 12px rgba(124,58,237,.12);
}

.nav-item { display: flex; }

.nav-link {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .85rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: background var(--tr), color var(--tr);
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  color: var(--white);
}

.nav-icon {
  font-size: .95rem;
}

.nav-label {
  white-space: nowrap;
}

/* Live button */
.btn-live-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: var(--white);
  border-radius: 50px;
  font-weight: 800;
  font-size: .875rem;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(16,185,129,.3);
  transition: transform var(--tr), box-shadow var(--tr);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-live-nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  border-radius: inherit;
}

.btn-live-nav:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(16,185,129,.45);
}

.live-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: background var(--tr);
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 3px;
  background: var(--purple-d);
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   4. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-mid) 50%, var(--hero-to) 100%);
  padding: 3.5rem 0 0;
  overflow: hidden;
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2.1fr 2fr .95fr;
  gap: 2rem;
  align-items: center;
  min-height: 420px;
}

/* Floating decorations */
.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco {
  position: absolute;
  font-size: 1.8rem;
  opacity: .55;
  animation: floatDeco 5s ease-in-out infinite;
}

.deco.s1  { top: 12%; left:  8%; animation-delay: 0s;    font-size: 1.6rem; }
.deco.n1  { top: 28%; left:  4%; animation-delay: .8s;   font-size: 2.2rem; color: var(--purple); }
.deco.s2  { top:  8%; left: 25%; animation-delay: 1.4s;  font-size: 1.4rem; }
.deco.n2  { top: 20%; right: 6%; animation-delay: .4s;   font-size: 2rem;   color: var(--pink); }
.deco.s3  { bottom: 25%; left: 6%; animation-delay: 2s;  font-size: 1.5rem; }
.deco.n3  { bottom: 30%; right: 8%; animation-delay: 1s; font-size: 1.8rem; color: var(--yellow); }
.deco.sp1 { top: 45%; right: 3%; animation-delay: 1.6s;  font-size: 1.4rem; }

@keyframes floatDeco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(6deg); }
  66%       { transform: translateY(6px) rotate(-4deg); }
}

/* Hero text column */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--white);
  color: var(--purple-d);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 800;
  box-shadow: 0 2px 12px rgba(124,58,237,.14);
  width: fit-content;
  letter-spacing: .02em;
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-welcome {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple-d);
}

.hero-description {
  font-size: .975rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Hero tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.hero-tag {
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 800;
  background: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.hero-tag:nth-child(1) { color: var(--yellow);  border-color: var(--yellow);  background: #FFFBEB; }
.hero-tag:nth-child(2) { color: var(--pink);     border-color: var(--pink);    background: #FDF2F8; }
.hero-tag:nth-child(3) { color: var(--blue);     border-color: var(--blue);    background: #EFF6FF; }
.hero-tag:nth-child(4) { color: var(--purple);   border-color: var(--purple);  background: #F5F3FF; }
.hero-tag:nth-child(5) { color: var(--green);    border-color: var(--green);   background: #ECFDF5; }

/* Primary hero button */
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.8rem;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.05rem;
  border: none;
  box-shadow: 0 6px 24px rgba(16,185,129,.35);
  transition: transform var(--tr), box-shadow var(--tr);
  width: fit-content;
  cursor: pointer;
}

.btn-primary-hero:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(16,185,129,.5);
}

.play-triangle {
  font-size: 1.1rem;
  line-height: 1;
}

/* Hero illustration column */
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-bubble {
  background: var(--white);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 12px 48px rgba(124,58,237,.18), 0 4px 16px rgba(0,0,0,.08);
  filter: drop-shadow(0 4px 16px rgba(124,58,237,.15));
  animation: floatBubble 4s ease-in-out infinite;
  max-width: 380px;
  width: 100%;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* SVG animations */
.on-air-badge  { animation: pulse 1.4s ease-in-out infinite; }
.float-anim    { animation: svgFloat 3.5s ease-in-out infinite; }
.float-anim-rev{ animation: svgFloat 3.5s ease-in-out infinite reverse; }
.twinkle       { animation: twinkle 2s ease-in-out infinite alternate; }

@keyframes svgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes twinkle {
  from { opacity: .5; transform: scale(.9); }
  to   { opacity: 1;  transform: scale(1.1); }
}

/* Hero chalkboard column */
.hero-chalkboard {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chalkboard-frame {
  background: linear-gradient(135deg, #1a3a1a, #2d6a2d);
  border-radius: 16px;
  padding: 5px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25), inset 0 0 0 3px #78350F;
  border: 3px solid #5c4b1a;
  width: 100%;
}

.chalkboard-inner {
  background: #234d23;
  border-radius: 12px;
  padding: 1.4rem 1.2rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
}

.chalk-line {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  border-bottom: 1px dashed rgba(255,255,255,.2);
  padding-bottom: .4rem;
  text-shadow: 0 0 8px rgba(255,255,255,.3);
  line-height: 1.4;
}

.chalk-line:last-of-type { border-bottom: none; }

.chalk-heart {
  position: absolute;
  bottom: .8rem;
  right: .9rem;
  font-size: 1.3rem;
}

/* Hero wave */
.hero-wave {
  position: relative;
  bottom: -2px;
  line-height: 0;
  margin-top: 2.5rem;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ============================================================
   5. STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, #1a1040 100%);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1;
}

.stats-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: calc(-50% - .5rem);
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,.12);
}

.stat-item:last-child::after { display: none; }

.stat-icon {
  font-size: 1.3rem;
  color: var(--purple-l);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ============================================================
   6. PROGRAMS SECTION
   ============================================================ */
.programs-section {
  background: var(--white);
  padding: 4rem 0;
}

.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.programs-layout {
  display: grid;
  grid-template-columns: 1fr 275px;
  gap: 2rem;
  align-items: start;
}

/* Section header */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: .9rem 1.2rem;
  border-radius: 14px;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header h2,
.section-header h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.purple-header {
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  box-shadow: 0 4px 16px rgba(124,58,237,.25);
}

.yellow-header {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 4px 16px rgba(245,158,11,.25);
}

.see-all-link {
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 800;
  white-space: nowrap;
  padding: .3rem .8rem;
  border-radius: 50px;
  background: rgba(255,255,255,.2);
  transition: background var(--tr);
}

.see-all-link:hover {
  background: rgba(255,255,255,.35);
  color: var(--white);
}

/* Programs grid – 3 × 2 */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0,0,0,.15);
}

/* Large cover area with colour gradient + dot overlay */
.program-card-top {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.program-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.18) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

.program-icon {
  font-size: 3.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.2));
  position: relative;
  z-index: 1;
  transition: transform var(--tr);
}

.program-card:hover .program-icon {
  transform: scale(1.15) rotate(-5deg);
}

.program-card-body {
  padding: .9rem 1rem 1rem;
  flex: 1;
}

.program-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
  line-height: 1.3;
}

.program-desc {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   7. LOCUTORES SIDEBAR
   ============================================================ */
.locutores-sidebar {
  display: flex;
  flex-direction: column;
}

.locutores-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1rem;
}

.locutor-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem .9rem;
  background: var(--gray-50);
  border-radius: 14px;
  border: 1.5px solid var(--gray-100);
  transition: background var(--tr), box-shadow var(--tr);
}

.locutor-card:hover {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.09);
}

.locutor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,.14);
}

.locutor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-initial {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.avatar-mic {
  position: absolute;
  bottom: 1px;
  right: 1px;
  font-size: .75rem;
  background: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.locutor-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.locutor-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.locutor-role {
  font-size: .75rem;
  color: var(--gray-500);
  font-weight: 600;
}

.team-link {
  display: inline-block;
  text-align: center;
  padding: .55rem 1rem;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--white);
  border-radius: 50px;
  font-weight: 800;
  font-size: .8rem;
  box-shadow: 0 4px 14px rgba(245,158,11,.3);
  transition: transform var(--tr), box-shadow var(--tr);
}

.team-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,.4);
  color: var(--white);
}

/* ============================================================
   8. LATEST EPISODES SECTION
   ============================================================ */
.episodes-section {
  background: var(--gray-50);
  padding: 3.5rem 0;
}

.episodes-section .section-header {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 4px 16px rgba(59,130,246,.25);
  margin-bottom: 1.5rem;
}

.episodes-section .section-header h2 {
  color: var(--white);
}

.episodes-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.episode-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,.07);
  border-left: 6px solid var(--purple);
  transition: transform var(--tr), box-shadow var(--tr);
}

.episode-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.episode-cover {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
  overflow: hidden;
}

.episode-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
}

.episode-info {
  flex: 1;
  padding: .85rem .5rem .85rem 0;
  min-width: 0;
}

.episode-program {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-400);
  margin-bottom: .2rem;
}

.episode-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: .3rem;
}

.episode-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .77rem;
  color: var(--gray-500);
  font-weight: 600;
}

.episode-meta i {
  font-size: .75rem;
  margin-right: .2rem;
}

.episode-desc {
  font-size: .82rem;
  color: var(--gray-500);
  margin-top: .3rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  margin-right: 1rem;
  transition: transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 3px 12px rgba(16,185,129,.35);
  border: none;
  cursor: pointer;
}

.play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(16,185,129,.5);
}

/* ============================================================
   9. BOTTOM 4-COLUMN SECTIONS
   ============================================================ */
.bottom-sections {
  background: var(--white);
  padding: 3.5rem 0;
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.bottom-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(0,0,0,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr);
}

.bottom-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.13);
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  flex-shrink: 0;
}

.blue-bar   { background: linear-gradient(135deg, var(--blue),   var(--teal)); }
.pink-bar   { background: linear-gradient(135deg, var(--pink),   var(--purple)); }
.orange-bar { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.white-bar  { background: linear-gradient(135deg, var(--gray-700), var(--gray-900)); }

.card-see-all {
  font-size: .72rem;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.2);
  padding: .2rem .6rem;
  border-radius: 50px;
  font-weight: 700;
  transition: background var(--tr);
  white-space: nowrap;
}

.card-see-all:hover {
  background: rgba(255,255,255,.35);
  color: var(--white);
}

.card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.card-body p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Podcast card */
.podcast-episode {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.podcast-cover {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.podcast-text {
  flex: 1;
  min-width: 0;
}

.podcast-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 800;
  color: var(--gray-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcast-text p {
  font-size: .75rem;
  color: var(--gray-500);
  margin: 0;
}

.btn-play-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: transform var(--tr);
}

.btn-play-mini:hover { transform: scale(1.12); }

/* Card action buttons */
.btn-card-action {
  display: inline-block;
  padding: .55rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
  transition: transform var(--tr), box-shadow var(--tr);
  margin-top: auto;
}

.pink-btn {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  box-shadow: 0 3px 12px rgba(236,72,153,.3);
}

.pink-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236,72,153,.4);
  color: var(--white);
}

.orange-btn {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  box-shadow: 0 3px 12px rgba(249,115,22,.3);
}

.orange-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.4);
  color: var(--white);
}

/* Social grid */
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  color: var(--white);
}

.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook  { background: #1877F2; }
.social-btn.youtube   { background: #FF0000; }
.social-btn.tiktok    { background: #010101; }
.social-btn.spotify   { background: #1DB954; }
.social-btn.whatsapp  { background: #25D366; }

/* WhatsApp button */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .6rem 1rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 50px;
  font-weight: 800;
  font-size: .82rem;
  box-shadow: 0 3px 12px rgba(37,211,102,.3);
  transition: transform var(--tr), box-shadow var(--tr);
  margin-top: auto;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  color: var(--white);
}

/* ============================================================
   10. SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
}

/* Footer top */
.footer-top {
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-shrink: 0;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(167,139,250,.3);
}

.footer-site-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 600;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .9rem;
  padding-bottom: .5rem;
  border-bottom: 1.5px solid rgba(255,255,255,.1);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col ul li a {
  font-size: .85rem;
  color: var(--gray-400);
  font-weight: 600;
  transition: color var(--tr), padding-left var(--tr);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-col ul li a:hover {
  color: var(--purple-l);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 800;
  margin-top: .25rem;
  transition: transform var(--tr);
}

.footer-whatsapp:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.footer-play-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.1rem;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .85rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(16,185,129,.3);
  transition: transform var(--tr);
  margin-bottom: .5rem;
}

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

.footer-live-hint {
  font-size: .72rem;
  color: var(--gray-500);
  margin: 0;
}

/* Footer features bar */
.footer-features-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: .9rem 1.5rem;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-feat {
  font-size: .8rem;
  color: var(--gray-400);
  font-weight: 700;
}

/* Footer copyright */
.footer-copyright {
  text-align: center;
  padding: .9rem 1.5rem;
  font-size: .78rem;
  color: var(--gray-500);
}

.footer-copyright a { color: var(--gray-500); }
.footer-copyright a:hover { color: var(--purple-l); }

/* ============================================================
   11. FLOATING PLAYER
   ============================================================ */
.player-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--gray-900);
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.07);
  min-width: 320px;
  max-width: 380px;
  overflow: hidden;
  animation: playerSlideIn .35s cubic-bezier(.34,1.56,.64,1);
}

.player-float.hidden { display: none; }

@keyframes playerSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.player-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
}

.player-logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.player-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.player-on-air {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: .5rem;
  font-weight: 900;
  padding: .1rem .35rem;
  border-radius: 4px;
  letter-spacing: .06em;
  animation: pulse 1.4s ease-in-out infinite;
  white-space: nowrap;
}

.player-info {
  flex: 1;
  min-width: 0;
}

.player-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-live-row {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: .2rem 0;
}

.live-dot-anim {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

#playerStatus {
  font-size: .72rem;
  color: var(--gray-400);
  font-weight: 600;
}

/* Visualizer bars */
.player-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.player-visualizer span {
  display: block;
  width: 4px;
  background: linear-gradient(180deg, var(--purple-l), var(--green));
  border-radius: 2px;
  animation: vizBar 1.1s ease-in-out infinite alternate;
}

.player-visualizer span:nth-child(1) { height: 60%; animation-delay: 0s; }
.player-visualizer span:nth-child(2) { height: 100%; animation-delay: .15s; }
.player-visualizer span:nth-child(3) { height: 45%; animation-delay: .3s; }
.player-visualizer span:nth-child(4) { height: 80%; animation-delay: .1s; }
.player-visualizer span:nth-child(5) { height: 55%; animation-delay: .25s; }
.player-visualizer span:nth-child(6) { height: 90%; animation-delay: .05s; }

@keyframes vizBar {
  from { transform: scaleY(.3); }
  to   { transform: scaleY(1); }
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.player-btn-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 3px 12px rgba(124,58,237,.4);
}

.player-btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(124,58,237,.55);
}

.player-volume {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: var(--gray-600);
  outline: none;
  cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-l);
  cursor: pointer;
}

.vol-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-l);
  cursor: pointer;
  border: none;
}

.player-btn-close {
  font-size: .8rem;
  color: var(--gray-500);
  background: none;
  border: none;
  cursor: pointer;
  padding: .2rem .4rem;
  border-radius: 6px;
  transition: color var(--tr), background var(--tr);
}

.player-btn-close:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* ============================================================
   12. INNER PAGE BANNER
   ============================================================ */
.page-banner {
  height: 200px;
  background: linear-gradient(135deg, var(--purple-d) 0%, var(--purple) 40%, var(--pink) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 1rem 1.5rem;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

.page-banner h1 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-banner p {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  margin-top: .5rem;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  margin-top: .6rem;
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: rgba(255,255,255,.85); font-weight: 700; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .6; }

/* ============================================================
   13. SCHEDULE TABLE / PAGE
   ============================================================ */
.schedule-section {
  padding: 3rem 0;
}

.schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  padding: .5rem 1.2rem;
  border-radius: 50px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  border-left: 5px solid var(--purple);
  transition: box-shadow var(--tr);
}

.schedule-item:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

.schedule-time {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  min-width: 90px;
  flex-shrink: 0;
}

.schedule-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.schedule-info { flex: 1; min-width: 0; }

.schedule-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.schedule-host {
  font-size: .8rem;
  color: var(--gray-500);
  font-weight: 600;
}

/* ============================================================
   14. TEAM / LOCUTORES FULL PAGE
   ============================================================ */
.team-section {
  padding: 3rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.09);
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.16);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  margin-bottom: .25rem;
  overflow: hidden;
}

.team-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
}

.team-role {
  font-size: .82rem;
  font-weight: 700;
  color: var(--purple);
  background: var(--hero-to);
  padding: .2rem .75rem;
  border-radius: 50px;
}

.team-bio {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
  text-align: center;
}

.team-socials {
  display: flex;
  gap: .5rem;
  margin-top: .25rem;
}

/* ============================================================
   15. CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(0,0,0,.08);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .2rem;
}

.contact-info-value {
  font-size: .85rem;
  color: var(--gray-600);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 800;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--gray-50);
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  padding: .85rem 1.8rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(124,58,237,.35);
  transition: transform var(--tr), box-shadow var(--tr);
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,.5);
}

.map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  margin-top: 1.5rem;
}

.map-frame iframe {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
}

/* ============================================================
   16. APRENDE PAGE
   ============================================================ */
.aprende-section {
  padding: 3rem 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.activity-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 3px 16px rgba(0,0,0,.08);
  border-top: 4px solid var(--purple);
  transition: transform var(--tr), box-shadow var(--tr);
  text-align: center;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
}

.activity-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto .9rem;
}

.activity-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .4rem;
}

.activity-desc {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow var(--tr);
}

.resource-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); }

.resource-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-l), var(--purple));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.resource-title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
}

.resource-desc { font-size: .78rem; color: var(--gray-500); }

/* ============================================================
   17. EN VIVO PAGE
   ============================================================ */
.live-section {
  padding: 3rem 0;
}

.live-hero {
  background: linear-gradient(135deg, var(--gray-900), #1a1040, var(--gray-900));
  border-radius: 28px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.live-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.on-air-badge-live {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
  animation: pulse 1.4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.live-station-name {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}

.live-tagline {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* Waveform animation */
.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 60px;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.waveform span {
  display: block;
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--purple-l), var(--green));
  animation: waveAnim 1.3s ease-in-out infinite alternate;
}

.waveform span:nth-child(1)  { height: 20px; animation-delay: 0s; }
.waveform span:nth-child(2)  { height: 40px; animation-delay: .1s; }
.waveform span:nth-child(3)  { height: 55px; animation-delay: .2s; }
.waveform span:nth-child(4)  { height: 45px; animation-delay: .05s; }
.waveform span:nth-child(5)  { height: 60px; animation-delay: .15s; }
.waveform span:nth-child(6)  { height: 50px; animation-delay: .3s; }
.waveform span:nth-child(7)  { height: 35px; animation-delay: .08s; }
.waveform span:nth-child(8)  { height: 55px; animation-delay: .22s; }
.waveform span:nth-child(9)  { height: 40px; animation-delay: .12s; }
.waveform span:nth-child(10) { height: 25px; animation-delay: .18s; }
.waveform span:nth-child(11) { height: 50px; animation-delay: .06s; }
.waveform span:nth-child(12) { height: 30px; animation-delay: .28s; }

@keyframes waveAnim {
  from { transform: scaleY(.3); opacity: .6; }
  to   { transform: scaleY(1);  opacity: 1; }
}

.live-play-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(16,185,129,.45);
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
  z-index: 1;
}

.live-play-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 14px 40px rgba(16,185,129,.6);
}

/* ============================================================
   18. UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
}

.section-subtitle {
  font-size: .95rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

/* ============================================================
   19. RESPONSIVE – 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 2fr 1.8fr .8fr;
    gap: 1.5rem;
  }

  .hero-title { font-size: 2.4rem; }

  .bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   20. RESPONSIVE – 900px
   ============================================================ */
@media (max-width: 900px) {
  /* Hide nav labels on small screens */
  .nav-label { display: none; }

  /* Mobile nav drawer */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    transform: translateY(-110%);
    transition: transform .3s ease;
    z-index: 999;
    justify-content: flex-start;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-menu {
    flex-direction: column;
    background: none;
    box-shadow: none;
    padding: 0;
    gap: .35rem;
    border-radius: 0;
  }

  .nav-item { width: 100%; }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: .65rem 1rem;
    border-radius: 12px;
  }

  /* Show labels inside mobile drawer */
  .nav-link .nav-label { display: inline; }

  .nav-toggle { display: flex; }

  /* Hide live button text on small screens */
  .btn-live-text { display: none; }

  /* Hero stack */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-illustration { order: -1; }
  .illustration-bubble { max-width: 320px; margin: 0 auto; }
  .hero-chalkboard { display: none; }
  .hero-title { font-size: 2.2rem; }

  /* Programs layout */
  .programs-layout {
    grid-template-columns: 1fr;
  }

  .locutores-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   21. RESPONSIVE – 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .hero { padding: 2.5rem 0 0; }
  .hero-title { font-size: 2rem; }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-item::after { display: none; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-banner h1 { font-size: 2rem; }
  .live-station-name { font-size: 2rem; }

  .programs-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   22. RESPONSIVE – 580px
   ============================================================ */
@media (max-width: 580px) {
  .nav-brand-text { display: none; }

  .hero-title { font-size: 1.75rem; }
  .hero-badge { font-size: .7rem; }
  .hero-tags { gap: .35rem; }
  .hero-tag { font-size: .7rem; padding: .25rem .65rem; }
  .btn-primary-hero { font-size: .95rem; padding: .75rem 1.4rem; }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .player-float {
    left: 1rem;
    right: 1rem;
    min-width: unset;
  }

  .live-hero { padding: 2.5rem 1.2rem; }

  .locutores-list {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   EXTRA – Páginas internas (sidebar label, live page, schedule,
           team, podcast, contact, aprende, footer-top)
   ============================================================ */

/* --- Sidebar group labels --- */
.sidebar-group-label {
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #475569;
  padding: .9rem .85rem .3rem;
}

/* --- Section intro text --- */
.section-intro {
  font-size: .95rem;
  color: var(--gray-500);
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.8;
}

/* --- Generic heading --- */
.programs-heading {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

/* --- En Vivo page --- */
.live-hero { padding: 2.5rem 0 3rem; background: var(--gray-50); }

.live-player-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.live-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  border: 1px solid var(--gray-200);
}

.live-on-air {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .08em;
  padding: .4rem 1.1rem;
  border-radius: 50px;
}
.live-on-air.on-air  { background: #FEE2E2; color: var(--red); }
.live-on-air.off-air { background: var(--gray-100); color: var(--gray-500); }

.air-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.4s infinite;
}

.live-cover {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}

.live-cover-art {
  font-size: 4rem;
  color: var(--gray-500);
  z-index: 1;
}

.live-cover-art i { color: var(--purple-l); }

.live-waveform {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 30px;
}

.live-waveform span {
  width: 3px;
  border-radius: 2px;
  background: var(--green);
  height: 5px;
  animation: vis-bar 1s ease-in-out infinite paused;
}

.live-waveform.active span { animation-play-state: running; }

.live-now-info { width: 100%; }
.live-program-name { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--gray-800); }
.live-host-info    { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .85rem; color: var(--gray-500); margin-top: .3rem; flex-wrap: wrap; }
.live-time-badge   { background: var(--gray-100); padding: .15rem .6rem; border-radius: 50px; font-size: .78rem; }
.live-off-msg      { font-size: .85rem; color: var(--gray-400); }

.live-big-controls { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }

.live-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(16,185,129,.4);
  transition: transform var(--tr), box-shadow var(--tr);
  border: none;
  cursor: pointer;
}
.live-play-btn:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(16,185,129,.5); }

.live-vol { display: flex; align-items: center; gap: .5rem; }
.live-vol input[type=range] { width: 100px; }

.live-no-stream {
  background: #FEF3C7;
  color: #92400E;
  padding: .65rem 1rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid #FDE68A;
}

.live-schedule-panel {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.live-panel-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--gray-50);
}

.today-label {
  margin-left: auto;
  background: var(--purple);
  color: white;
  font-size: .72rem;
  padding: .2rem .65rem;
  border-radius: 50px;
  text-transform: capitalize;
}

.today-slots { display: flex; flex-direction: column; }
.today-slot {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--tr);
}
.today-slot:hover { background: var(--gray-50); }
.today-slot.slot-active { background: #F5F3FF; }

.slot-time  { font-size: .8rem; font-weight: 800; color: var(--gray-600); min-width: 48px; }
.slot-dot   { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.slot-info  { flex: 1; }
.slot-info strong { display: block; font-size: .85rem; color: var(--gray-800); }
.slot-info span   { font-size: .75rem; color: var(--gray-400); }
.slot-now-badge { background: var(--red); color: white; font-size: .7rem; font-weight: 800; padding: .15rem .55rem; border-radius: 50px; }

.no-slots { padding: 1.5rem; text-align: center; color: var(--gray-400); font-size: .88rem; }

.btn-see-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
  font-size: .85rem;
  font-weight: 800;
  color: var(--purple);
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
  transition: all var(--tr);
}
.btn-see-schedule:hover { background: var(--purple); color: white; }

.live-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.live-info-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.live-info-card i   { font-size: 1.5rem; color: var(--purple); margin-bottom: .5rem; }
.live-info-card h4  { font-family: var(--font-head); font-size: .9rem; margin-bottom: .25rem; }
.live-info-card p   { font-size: .78rem; color: var(--gray-500); line-height: 1.5; }

/* --- Schedule page --- */
.schedule-section { padding: 2.5rem 0 4rem; }

.schedule-tabs {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}

.sched-tab {
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 800;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--tr);
  text-transform: capitalize;
}
.sched-tab:hover { background: var(--purple-l); color: white; border-color: var(--purple-l); }
.sched-tab.active { background: var(--purple); color: white; border-color: var(--purple); }

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: box-shadow var(--tr), transform var(--tr);
}
.schedule-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.sched-time { display: flex; flex-direction: column; align-items: center; min-width: 72px; color: var(--gray-600); }
.sched-time strong { font-size: .95rem; color: var(--gray-800); }
.sched-end { font-size: .72rem; color: var(--gray-400); }
.sched-color-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.sched-info { flex: 1; }
.sched-program { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: .2rem; }
.sched-meta { font-size: .78rem; color: var(--gray-400); display: flex; gap: .75rem; flex-wrap: wrap; }
.sched-actions { flex-shrink: 0; }

.btn-sched-play {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  background: var(--green);
  color: white;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all var(--tr);
}
.btn-sched-play:hover { background: var(--green-d); transform: scale(1.04); }

/* --- Programs full page grid --- */
.programs-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.program-card-full {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr), transform var(--tr);
}
.program-card-full:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.pcf-cover {
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pcf-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 18px 18px;
}
.pcf-icon { font-size: 3.5rem; position: relative; z-index: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.2)); }
.pcf-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.pcf-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; }
.pcf-desc  { font-size: .82rem; color: var(--gray-500); flex: 1; }
.pcf-play-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  color: white;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: all var(--tr);
  margin-top: .5rem;
}
.pcf-play-btn:hover { transform: scale(1.05); }

/* --- Team page --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.team-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  transition: box-shadow var(--tr), transform var(--tr);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }

.team-avatar-wrap { position: relative; margin-bottom: .5rem; }

.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-initial {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.team-mic-icon {
  position: absolute;
  bottom: 6px; right: 6px;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
}

.team-badge {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .85rem;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.team-name    { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--gray-800); }
.team-role    { font-size: .82rem; font-weight: 700; margin-top: -.2rem; }
.team-program { font-size: .75rem; color: var(--gray-400); display: flex; align-items: center; gap: .3rem; }
.team-bio     { font-size: .82rem; color: var(--gray-500); line-height: 1.65; text-align: center; }
.team-social  { display: flex; gap: .4rem; justify-content: center; margin-top: .25rem; }

.team-listen-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 800;
  border: 2px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all var(--tr);
  margin-top: .5rem;
}
.team-listen-btn:hover { background: currentColor; color: white !important; }

.join-cta-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #EDE9FE, #DBEAFE);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 1.5rem;
  border: 1.5px solid var(--purple-l);
  flex-wrap: wrap;
}
.join-cta-icon { font-size: 2.5rem; }
.join-cta-card h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .3rem; }
.join-cta-card p  { font-size: .85rem; color: var(--gray-500); }

.btn-join {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  background: var(--purple);
  color: white;
  border-radius: 50px;
  font-weight: 800;
  font-size: .88rem;
  margin-left: auto;
  white-space: nowrap;
  transition: all var(--tr);
}
.btn-join:hover { background: var(--purple-d); transform: translateY(-2px); color: white; }

/* --- Podcast page --- */
.episodes-list { display: flex; flex-direction: column; gap: 1rem; }

.episode-card-full {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--tr), transform var(--tr);
}
.episode-card-full:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.ep-cover {
  width: 100px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.ep-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 14px 14px;
}
.ep-number { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: white; position: relative; z-index: 1; line-height: 1; }
.ep-cover-icon { font-size: .9rem; color: rgba(255,255,255,.6); position: relative; z-index: 1; margin-top: .25rem; }

.ep-info { flex: 1; padding: 1.1rem; min-width: 0; }
.ep-meta-top { display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; flex-wrap: wrap; }
.ep-badge { font-size: .72rem; font-weight: 800; padding: .18rem .6rem; border-radius: 50px; }
.ep-episode-num { font-size: .75rem; color: var(--gray-400); font-weight: 700; }
.ep-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--gray-800); margin-bottom: .3rem; }
.ep-desc  { font-size: .82rem; color: var(--gray-500); line-height: 1.6; margin-bottom: .5rem; }
.ep-footer-meta { display: flex; gap: .75rem; flex-wrap: wrap; font-size: .75rem; color: var(--gray-400); }

.ep-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: 1rem;
  flex-shrink: 0;
}

.ep-play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding-left: 2px;
  transition: all var(--tr);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.ep-play-btn:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.ep-play-label { font-size: .68rem; color: var(--gray-400); font-weight: 700; }

.podcast-subscribe-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  border: 1.5px solid #A7F3D0;
  flex-wrap: wrap;
}
.podcast-subscribe-cta > i { font-size: 2rem; color: var(--teal); }
.podcast-subscribe-cta h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: .25rem; }
.podcast-subscribe-cta p  { font-size: .82rem; color: var(--gray-500); }
.subscribe-btns { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; margin-left: auto; }

/* --- Aprende page --- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.activity-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: box-shadow var(--tr), transform var(--tr);
}
.activity-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.act-icon-wrap { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.act-icon  { font-size: 2rem; }
.act-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; }
.act-desc  { font-size: .82rem; color: var(--gray-500); line-height: 1.65; flex: 1; }

.act-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  color: white;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 800;
  width: fit-content;
  transition: all var(--tr);
}
.act-btn:hover { transform: scale(1.05); color: white; }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.resource-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.res-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.res-info h4 { font-family: var(--font-head); font-size: .95rem; margin-bottom: .3rem; }
.res-info p  { font-size: .8rem; color: var(--gray-500); line-height: 1.6; margin-bottom: .5rem; }
.res-link    { font-size: .8rem; font-weight: 800; color: var(--purple); }
.res-link:hover { color: var(--purple-d); }

.aprende-programs-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
  border: 1.5px solid #A7F3D0;
  flex-wrap: wrap;
}
.aprende-programs-cta h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: .3rem; }
.aprende-programs-cta p  { font-size: .85rem; color: var(--gray-500); }

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

.contact-col-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: white;
  margin-bottom: .75rem;
  transition: box-shadow var(--tr);
}
.contact-info-card:hover { box-shadow: var(--shadow); }

.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card h4 { font-family: var(--font-head); font-size: .88rem; margin-bottom: .15rem; }
.contact-info-card p  { font-size: .82rem; color: var(--gray-500); }

.contact-whatsapp-block { margin: 1rem 0; }
.whatsapp-cta-label { font-size: .8rem; color: var(--gray-500); margin-bottom: .5rem; font-weight: 700; }

.contact-social-block { margin-top: 1rem; }
.contact-social-block > p { font-size: .82rem; color: var(--gray-600); margin-bottom: .5rem; }

.map-frame {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.map-frame iframe { display: block; width: 100%; height: 220px; border: none; }

.map-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: var(--gray-400);
  margin-top: 1rem;
}
.map-placeholder i   { font-size: 2rem; margin-bottom: .5rem; }
.map-placeholder p   { font-size: .82rem; }
.map-placeholder small { font-size: .72rem; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: .3rem; }
.cf-label { font-size: .8rem; font-weight: 800; color: var(--gray-700); }

.cf-input {
  width: 100%;
  padding: .7rem .95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--gray-800);
  background: white;
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
.cf-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,.12); }

.cf-textarea { resize: vertical; min-height: 140px; }

.cf-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: white;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  box-shadow: 0 5px 18px rgba(249,115,22,.35);
}
.cf-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.45); }
.cf-privacy { font-size: .72rem; color: var(--gray-400); text-align: center; }

.contact-success-msg {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  background: #ECFDF5;
  border-radius: var(--radius);
  border: 1.5px solid #A7F3D0;
}
.contact-success-msg h3 { font-family: var(--font-head); font-size: 1.4rem; }
.contact-success-msg p  { font-size: .88rem; color: var(--gray-500); }

.contact-error-msg {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .85rem;
  font-weight: 700;
}

/* --- Footer top --- */
.footer-top { background: var(--gray-900); padding: 3rem 0 2rem; }
.footer-container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.15); }
.footer-site-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: white; }
.footer-tagline   { font-size: .78rem; color: var(--gray-500); }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 { font-family: var(--font-head); font-size: .88rem; color: var(--gray-400); margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul  { display: flex; flex-direction: column; gap: .4rem; }
.footer-col li a { font-size: .82rem; color: var(--gray-500); transition: color var(--tr); }
.footer-col li a:hover { color: white; }

.footer-social { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: .75rem; }

.footer-play-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.1rem;
  background: var(--green);
  color: white;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  box-shadow: 0 3px 12px rgba(16,185,129,.35);
  margin-bottom: .5rem;
}
.footer-play-btn:hover { background: var(--green-d); transform: translateY(-2px); }
.footer-live-hint { font-size: .72rem; color: var(--gray-500); }

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .9rem;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 800;
  transition: all var(--tr);
}
.footer-whatsapp:hover { background: #128C7E; color: white; }

/* --- Empty state --- */
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--gray-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

/* ============================================================
   23. RESPONSIVE – 400px
   ============================================================ */
@media (max-width: 400px) {
  .hero-title { font-size: 1.5rem; }
  .hero-container { padding: 0 1rem; }
  .nav-container { padding: 0 .75rem; }
  .section-container { padding: 0 1rem; }
  .footer-container { padding: 0 1rem; }
  .page-banner h1 { font-size: 1.6rem; }
  .page-banner { height: auto; padding: 2rem 1rem; }
  .stat-num { font-size: 1.6rem; }
  .illustration-bubble { max-width: 260px; }
  .contact-form-wrap { padding: 1.25rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .bottom-grid { gap: .85rem; }
}

@media (max-width: 1100px) {
  .live-player-wrap  { grid-template-columns: 1fr; }
  .live-info-grid    { grid-template-columns: repeat(2,1fr); }
  .programs-grid-full{ grid-template-columns: repeat(2,1fr); }
  .team-grid         { grid-template-columns: repeat(2,1fr); }
  .activities-grid   { grid-template-columns: repeat(2,1fr); }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .contact-grid    { grid-template-columns: 1fr; }
  .cf-row          { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .resources-grid  { grid-template-columns: 1fr; }
  .programs-grid-full { grid-template-columns: 1fr; }
  .episodes-list .episode-card-full { flex-direction: column; }
  .ep-cover { width: 100%; min-height: 80px; }
  .live-info-grid { grid-template-columns: repeat(2,1fr); }
  .podcast-subscribe-cta { flex-direction: column; }
  .subscribe-btns { margin-left: 0; }
  .join-cta-card { flex-direction: column; text-align: center; }
  .btn-join { margin-left: 0; }
  .footer-links-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .aprende-programs-cta { flex-direction: column; text-align: center; }
}

/* ============================================================
   PROFESSIONAL FOOTER – New 3-column design
   ============================================================ */

/* Footer top */
.footer-top {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  padding: 3.5rem 0 2.5rem;
  position: relative;
}

.footer-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7C3AED, #EC4899, #F59E0B, #10B981, #3B82F6);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

/* Brand column */
.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
  flex-shrink: 0;
}

.footer-brand-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: white; line-height: 1.2; }
.footer-brand-tag  { font-size: 0.72rem; color: #64748B; font-weight: 600; }

.footer-brand-desc { font-size: 0.82rem; color: #64748B; line-height: 1.75; margin-bottom: 1.25rem; max-width: 280px; }

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.fsoc-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: all 0.22s ease;
  text-decoration: none;
}

.fsoc-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 20px rgba(0,0,0,0.3); color: white; }

.fsoc-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fsoc-fb { background: #1877F2; }
.fsoc-yt { background: #FF0000; }
.fsoc-tk { background: #000000; border: 1px solid rgba(255,255,255,0.1); }
.fsoc-sp { background: #1DB954; }

/* WhatsApp button in footer */
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.22s;
  box-shadow: 0 3px 12px rgba(37,211,102,.3);
}
.footer-whatsapp-btn:hover { background: #128C7E; transform: translateY(-2px); color: white; }

/* Nav column */
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.38rem; }
.footer-nav-list li a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: #64748B;
  text-decoration: none;
  transition: color 0.18s, transform 0.18s;
  padding: 0.15rem 0;
}
.footer-nav-list li a:hover { color: #A78BFA; transform: translateX(4px); }

/* Radio column */
.footer-play-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 4px 14px rgba(16,185,129,.35);
  width: 100%;
  justify-content: center;
  font-family: var(--font-body);
}
.footer-play-btn:hover { transform: translateY(-2px); box-shadow: 0 7px 22px rgba(16,185,129,.45); }

.footer-live-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
}

.footer-live-dot {
  width: 7px;
  height: 7px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.footer-hours {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.7;
}

.footer-email-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #64748B;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-email-link:hover { color: #A78BFA; }

/* Features bar */
.footer-features-bar {
  background: #0A0F1E;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.footer-feat {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

/* Bottom bar */
.footer-bottom-bar {
  background: #060A14;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 0.8rem 1.5rem;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.74rem;
  color: #334155;
}

.footer-copyright   { color: #475569; }
.footer-separator   { color: #1E293B; }
.footer-contact-link { color: #475569; text-decoration: none; transition: color 0.18s; }
.footer-contact-link:hover { color: #A78BFA; }

.footer-powered { display: flex; align-items: center; gap: 0.3rem; }

.footer-powered-link {
  color: #7C3AED;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-powered-link:hover { color: #A78BFA; }

/* Hero improvements */
.nav-logo-wrap { position: relative; flex-shrink: 0; }

.nav-logo-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #10B981;
  border-right-color: #7C3AED;
  animation: spin-ring 3s linear infinite;
  pointer-events: none;
}

/* Stats bar improvement */
.stats-bar {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  padding: 1.25rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #7C3AED, #EC4899, #F59E0B, #10B981, #3B82F6);
}

.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3B82F6, #10B981, #F59E0B, #EC4899, #7C3AED);
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-item-info { line-height: 1.25; }

.stat-item-num {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: white;
  display: block;
}

.stat-item-label {
  font-size: 0.72rem;
  color: #475569;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Program cards improvements */
.program-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-4px) scale(1.02);
  z-index: 3;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Bottom sections improvement */
.bottom-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bottom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { font-size: 0.68rem; }
  .footer-features-bar { gap: 0.85rem; }
  .footer-feat { font-size: 0.72rem; }
  .stats-container { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(3),.stat-item:nth-child(4) { border-bottom: none; }
}

/* Admin sidebar group labels */
.sidebar-group-label {
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #334155;
  padding: 1.1rem 0.85rem 0.3rem;
}

/* Hero badge enhancement */
.hero-badge {
  animation: badge-in 0.6s ease both;
}

@keyframes badge-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  animation: title-in 0.7s ease 0.1s both;
}

@keyframes title-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-description, .hero-welcome {
  animation: title-in 0.7s ease 0.2s both;
}

.hero-tags {
  animation: title-in 0.7s ease 0.3s both;
}

.btn-primary-hero {
  animation: title-in 0.7s ease 0.4s both;
}

.illustration-bubble {
  animation: hero-float 5s ease-in-out infinite, illus-in 0.8s ease 0.2s both;
}

@keyframes illus-in {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* Chalkboard enhancement */
.chalkboard-frame {
  animation: chalk-in 0.8s ease 0.3s both;
}

@keyframes chalk-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Program card play inline button ── */
.prog-play-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1.5px solid;
  cursor: pointer;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.prog-play-inline:hover {
  transform: scale(1.06);
  filter: brightness(1.1);
}

/* ── Bottom sections: connect card improvement ── */
.connect-card .social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

/* ── Stats bar num size fix for "En\nVivo" ── */
.stat-item-num {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: white;
  display: block;
  line-height: 1.1;
}

/* ── Enhanced hero badge pulse ── */
.hero-badge .badge-dot {
  box-shadow: 0 0 0 0 rgba(239,68,68,0.6);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* ── Nav logo ring animation ── */
@keyframes spin-ring {
  to { transform: rotate(360deg); }
}

/* ── Btn live nav playing state ── */
.btn-live-nav.playing {
  background: linear-gradient(135deg, #EF4444, #DC2626) !important;
  box-shadow: 0 4px 16px rgba(239,68,68,.38) !important;
}


