/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-3: #1a1a24;
  --text: #f5f5f7;
  --text-dim: #a0a0b0;
  --accent: #ff3b5c;
  --accent-2: #ff8a3d;
  --accent-3: #6c5ce7;
  --border: rgba(255,255,255,0.08);
  --glass: rgba(255,255,255,0.04);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 40px rgba(0,0,0,0.4);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10,10,15,0.9);
  border-bottom-color: var(--border);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; }
.logo-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 10px;
  color: #fff;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text span { color: var(--accent); }

.nav-menu { display: flex; gap: 32px; }
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  transition: color var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
  background: radial-gradient(ellipse at top right, rgba(255,59,92,0.15), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(108,92,231,0.15), transparent 50%),
              var(--bg);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.wave {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,59,92,0.15);
  animation: pulse 4s ease-out infinite;
}
.wave-1 { top: 50%; right: -10%; width: 600px; height: 600px; transform: translate(0,-50%); }
.wave-2 { top: 50%; right: -10%; width: 600px; height: 600px; transform: translate(0,-50%); animation-delay: 1.3s; }
.wave-3 { top: 50%; right: -10%; width: 600px; height: 600px; transform: translate(0,-50%); animation-delay: 2.6s; }

@keyframes pulse {
  0% { transform: translate(0,-50%) scale(0.5); opacity: 1; }
  100% { transform: translate(0,-50%) scale(2); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: #ff3b5c;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,59,92,0.7);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,59,92,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,59,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,92,0); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-dim);
  max-width: 580px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; animation: fadeUp 0.8s 0.3s ease both; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,59,92,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,59,92,0.5); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.85rem; color: var(--text-dim); }

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 16px; height: 16px; }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTIONS ============ */
.section { padding: 120px 0; position: relative; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-desc { color: var(--text-dim); font-size: 1.05rem; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.about-card {
  padding: 36px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.about-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.15); }
.about-card:hover::before { transform: scaleX(1); }
.about-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,59,92,0.15), rgba(255,138,61,0.15));
  border-radius: 14px;
  color: var(--accent);
  margin-bottom: 20px;
}
.about-icon svg { width: 28px; height: 28px; }
.about-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; margin-bottom: 10px; }
.about-card p { color: var(--text-dim); font-size: 0.95rem; }

/* ============ SERVICIOS ============ */
.services {
  background: var(--bg-2);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 59, 92, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--bg);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}

.service-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  transition: var(--transition);
}

.service-card:hover .service-number {
  color: rgba(255, 59, 92, 0.6);
  transform: scale(1.1);
}

.service-content {
  padding: 28px;
}

.service-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  transition: color var(--transition);
}

.service-card:hover .service-content h3 {
  color: var(--accent);
}

.service-content p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-link:hover {
  gap: 12px;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-image {
    height: 200px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .service-content h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 180px;
  }
  
  .service-number {
    font-size: 2.5rem;
  }
}

/* ============ BOARD ============ */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.board-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.board-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.15); }
.board-avatar {
  width: 100px; height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform var(--transition);
}
.board-card:hover .board-avatar { transform: scale(1.05) rotate(-3deg); }
.board-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; margin-bottom: 4px; }
.board-role {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.board-card p { color: var(--text-dim); font-size: 0.9rem; }

/* ============ CONTACT ============ */
.contact { background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(255,59,92,0.15);
}
.contact-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,59,92,0.15), rgba(255,138,61,0.15));
  border-radius: 14px;
  color: var(--accent);
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; }
.contact-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { color: var(--text-dim); font-size: 0.9rem; }
.contact-arrow {
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--text-dim);
  transition: var(--transition);
}
.contact-card:hover .contact-arrow { color: var(--accent); transform: translateX(4px); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: floatIn 0.6s 1s ease both;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes floatIn {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--text-dim); margin-top: 16px; max-width: 340px; font-size: 0.95rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text);
}
.footer-links a, .footer-links p {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu a { font-size: 1.05rem; }

  .hero { padding: 110px 0 60px; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 1.5rem; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }
  .schedule-tag { justify-self: start; }

  .footer-container { grid-template-columns: 1fr; gap: 32px; }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .contact-card { flex-wrap: wrap; padding: 20px; }
}
/* ============ EN VIVO SECTION ============ */
.live { background: var(--bg); }

.live-player-wrapper { max-width: 800px; margin: 0 auto; }

.live-player-card {
  background: linear-gradient(135deg, rgba(255,59,92,0.08), rgba(108,92,231,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.live-player-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,59,92,0.1) 0%, transparent 60%);
  animation: rotateBg 20s linear infinite;
  pointer-events: none;
}
@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.live-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,59,92,0.15);
  border: 1px solid rgba(255,59,92,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.live-dot {
  width: 8px; height: 8px;
  background: #ff3b5c;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,59,92,0.7);
  animation: livePulse 2s infinite;
}

.live-freq {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.live-player-frame {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.live-note {
  margin-top: 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}
/* ============ EN VIVO SECTION ============ */
.live {
  background: var(--bg);
  position: relative;
}

.live-player-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.live-player-card {
  background: linear-gradient(145deg, #ffffff 0%, #f4f4f8 100%);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.live-player-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
}

.live-player-card::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,59,92,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.live-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 59, 92, 0.1);
  border: 1px solid rgba(255, 59, 92, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.live-dot {
  width: 8px; height: 8px;
  background: #ff3b5c;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.7);
  animation: livePulse 2s infinite;
}

.live-freq {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.live-player-frame {
  position: relative;
  z-index: 2;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.live-note {
  margin-top: 20px;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

/* ============ MINI PLAYER FLOTANTE ============ */
.mini-player {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 340px;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 998;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

.mini-player.hidden {
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
}

.mini-player.minimized .mini-player-body {
  display: none;
}

.mini-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.mini-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.mini-live-badge .live-dot {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: livePulseWhite 2s infinite;
}
@keyframes livePulseWhite {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.mini-player-controls { display: flex; gap: 6px; }

.mini-btn {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.mini-btn svg { width: 14px; height: 14px; }
.mini-btn:hover { background: rgba(255,255,255,0.35); }
.mini-btn.close:hover { background: rgba(0,0,0,0.2); }

.mini-player-body {
  background: #fff;
  padding: 0;
}

/* Botón para reabrir */
.mini-player-open {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  border-radius: 100px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255,59,92,0.4);
  z-index: 997;
  transition: var(--transition);
  animation: floatIn 0.5s ease both;
}
.mini-player-open svg { width: 20px; height: 20px; }
.mini-player-open.visible { display: inline-flex; }
.mini-player-open:hover { transform: translateY(-3px) scale(1.03); }

/* Responsive */
@media (max-width: 768px) {
  .live-player-card { padding: 20px; }
  .live-player-frame iframe { height: 180px !important; }

  .mini-player {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: 100%;
  }
  .mini-player-body iframe { height: 140px !important; }

  .mini-player-open {
    left: 12px;
    bottom: 12px;
    right: auto;
  }
  .whatsapp-float { bottom: 100px; }
}

/* ============ PÁGINAS LEGALES ============ */
.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
  background: var(--bg);
}

.legal-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 32px;
  transition: var(--transition);
}
.legal-back svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.legal-back:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}
.legal-back:hover svg {
  transform: translateX(-4px);
}

.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-subtitle {
  color: var(--text-dim);
  font-size: 1.05rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
  position: relative;
  padding-left: 20px;
}
.legal-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.legal-section p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}
.legal-section ul li {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(255,59,92,0.3);
  text-underline-offset: 3px;
  transition: var(--transition);
}
.legal-section a:hover {
  text-decoration-color: var(--accent);
  color: var(--accent-2);
}

.legal-note {
  background: rgba(255,138,61,0.1);
  border-left: 3px solid var(--accent-2);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 0.9rem !important;
  color: var(--accent-2) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 120px 0 60px;
  }
  
  .legal-content {
    padding: 32px 24px;
  }
  
  .legal-section h2 {
    font-size: 1.2rem;
  }
  
  .legal-section p,
  .legal-section ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 24px 20px;
  }
  
  .legal-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}
/* ============ TABLA DE COOKIES ============ */
.cookies-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-3);
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}

.cookies-table thead {
  background: linear-gradient(135deg, rgba(255,59,92,0.15), rgba(255,138,61,0.1));
}

.cookies-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.cookies-table td {
  padding: 14px 16px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

.cookies-table code {
  background: rgba(255,59,92,0.1);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  font-family: 'Courier New', monospace;
}

/* ============ BOTÓN COOKIES EN FOOTER ============ */
.footer-cookies-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color var(--transition);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  text-underline-offset: 3px;
}

.footer-cookies-btn:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ============ BANNER DE COOKIES ============ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 40px));
  width: calc(100% - 48px);
  max-width: 560px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-content {
  padding: 28px;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cookie-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 12px;
  color: #fff;
  flex-shrink: 0;
}

.cookie-icon svg {
  width: 24px;
  height: 24px;
}

.cookie-banner-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cookie-banner-content > p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.cookie-legal-link {
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
  margin-bottom: 20px !important;
}

.cookie-legal-link a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(255,59,92,0.3);
  text-underline-offset: 3px;
}

.cookie-legal-link a:hover {
  text-decoration-color: var(--accent);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  font-family: inherit;
}

.cookie-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,59,92,0.3);
}

.cookie-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,59,92,0.45);
}

.cookie-btn.secondary {
  background: var(--glass);
  color: var(--text);
  border-color: var(--border);
}

.cookie-btn.secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

/* ============ PANEL DE CONFIGURACIÓN ============ */
.cookie-settings {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-settings.visible {
  display: flex;
  opacity: 1;
}

.cookie-settings-content {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.cookie-settings.visible .cookie-settings-content {
  transform: scale(1);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-settings-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cookie-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-close svg {
  width: 18px;
  height: 18px;
}

.cookie-close:hover {
  background: rgba(255,59,92,0.15);
  color: var(--accent);
  border-color: rgba(255,59,92,0.3);
}

.cookie-settings-content > p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.cookie-option:hover {
  border-color: rgba(255,255,255,0.15);
}

.cookie-option-info {
  flex: 1;
}

.cookie-option-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.cookie-option-info p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Switch toggle */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-switch.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch .slider {
  position: absolute;
  inset: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
}

.cookie-switch .slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-dim);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-switch input:checked + .slider {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.cookie-switch input:checked + .slider::before {
  transform: translateY(-50%) translateX(22px);
  background: #fff;
}

.cookie-settings-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.cookie-settings-actions .cookie-btn {
  min-width: 180px;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 24px);
  }
  
  .cookie-banner-content {
    padding: 20px;
  }
  
  .cookie-banner-actions {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-settings-content {
    padding: 24px;
  }
  
  .cookie-option {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-switch {
    align-self: flex-end;
  }
}

/* Botones con mismo peso visual (sin dark patterns) */
.cookie-btn.neutral {
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--border);
  flex: 1;
}

.cookie-btn.neutral:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* Botón "Aceptar todas" con acento sutil (no dominante) */
.cookie-btn.neutral:last-child {
  background: linear-gradient(135deg, rgba(255,59,92,0.15), rgba(255,138,61,0.1));
  border-color: rgba(255,59,92,0.3);
  color: var(--accent);
}

.cookie-btn.neutral:last-child:hover {
  background: linear-gradient(135deg, rgba(255,59,92,0.25), rgba(255,138,61,0.2));
  border-color: var(--accent);
}

/* Botón cerrar en el banner */
.cookie-close-banner {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-close-banner svg {
  width: 16px;
  height: 16px;
}

.cookie-close-banner:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.cookie-banner-content {
  position: relative;
  padding-top: 28px;
}

.cookie-banner-subtitle {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 4px;
  opacity: 0.8;
}

.cookie-expiry-note {
  font-size: 0.75rem !important;
  color: var(--text-dim) !important;
  text-align: center;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  opacity: 0.7;
}

/* Focus visible para accesibilidad */
.cookie-btn:focus-visible,
.cookie-close-banner:focus-visible,
.cookie-switch input:focus-visible + .slider {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
/* ============ PODCASTS ============ */
.podcasts {
  background: var(--bg);
  position: relative;
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.podcast-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.podcast-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 59, 92, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.podcast-card.playing {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 50px rgba(255, 59, 92, 0.25);
}

/* Cover */
.podcast-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg);
}

.podcast-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.podcast-card:hover .podcast-cover img {
  transform: scale(1.05);
}

.podcast-card.playing .podcast-cover img {
  filter: brightness(0.6);
}

/* Overlay con botón play */
.podcast-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.podcast-card:hover .podcast-play-overlay,
.podcast-card.playing .podcast-play-overlay {
  opacity: 1;
}

.podcast-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(255, 59, 92, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podcast-play-btn svg {
  width: 32px;
  height: 32px;
}

.podcast-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(255, 59, 92, 0.7);
}

/* Badge */
.podcast-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

/* Ondas animadas */
.podcast-waves {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.podcast-card.playing .podcast-waves {
  opacity: 1;
}

.podcast-waves span {
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: waveAnim 1s ease-in-out infinite;
}

.podcast-waves span:nth-child(1) { animation-delay: 0s; height: 40%; }
.podcast-waves span:nth-child(2) { animation-delay: 0.15s; height: 70%; }
.podcast-waves span:nth-child(3) { animation-delay: 0.3s; height: 100%; }
.podcast-waves span:nth-child(4) { animation-delay: 0.45s; height: 70%; }
.podcast-waves span:nth-child(5) { animation-delay: 0.6s; height: 40%; }

@keyframes waveAnim {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Info */
.podcast-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.podcast-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.podcast-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--transition);
}

.podcast-card.playing .podcast-info h3 {
  color: var(--accent);
}

.podcast-info p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Reproductor personalizado */
.podcast-player {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.podcast-progress {
  width: 100%;
  height: 6px;
  background: var(--bg-3);
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: height 0.2s ease;
}

.podcast-progress:hover {
  height: 8px;
}

.podcast-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  transition: width 0.1s linear;
  position: relative;
}

.podcast-progress-bar::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.podcast-progress:hover .podcast-progress-bar::after {
  opacity: 1;
}

.podcast-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .podcasts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .podcasts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .podcast-cover {
    aspect-ratio: 16 / 10;
  }
  
  .podcast-play-btn {
    width: 60px;
    height: 60px;
  }
  
  .podcast-play-btn svg {
    width: 26px;
    height: 26px;
  }
  
  .podcast-info {
    padding: 20px;
  }
  
  .podcast-info h3 {
    font-size: 1.1rem;
  }
}