/* ==========================================================================
   RADIO CASIO 104.9 FM & CASIO TV - HOJA DE ESTILOS (TEMA CLARO ELEGANTE)
   "Yarowilca - Huánuco, del Perú para el Mundo"
   Diseño Luminoso, Fresco, Festivo, Alta Legibilidad & Glassmorphism Claro
   ========================================================================== */

:root {
  /* Colores de Identidad */
  --primary-red: #d8001d;
  --primary-red-hover: #b50018;
  --primary-red-glow: rgba(216, 0, 29, 0.25);
  --primary-red-light: #fff0f1;
  --secondary-gold: #e67e00;
  --secondary-gold-warm: #d97706;
  --secondary-gold-light: #fffbeb;
  --accent-green: #10b981;
  --accent-green-dark: #059669;

  /* Paleta de Fondos Claros */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-secondary: #f1f5f9;
  --bg-card-hover: #ffffff;
  --bg-glass-light: rgba(255, 255, 255, 0.92);
  --border-light: #e2e8f0;
  --border-subtle: #cbd5e1;
  --border-red-light: #fecdd3;

  /* Tipografía y Contraste Claro (Ultra Legibilidad) */
  --text-dark: #050811;
  --text-slate: #0f172a;
  --text-muted: #1e293b;
  --text-dim: #334155;
  --text-white: #ffffff;

  /* Medidas y Bordes */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sombras Luminosas */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 0 1px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 18px 38px -6px rgba(216, 0, 29, 0.12), 0 0 1px rgba(0, 0, 0, 0.1);
  --shadow-dock: 0 -8px 30px rgba(15, 23, 42, 0.09);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-slate);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  /* Fondo claro dinámico con suaves halos festivos */
  background-image: 
    radial-gradient(circle at 12% 15%, rgba(216, 0, 29, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 88% 30%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(216, 0, 29, 0.03) 0%, transparent 55%);
  background-attachment: fixed;
  padding-top: 76px; /* Offset perfecto para el encabezado fijo persistente */
  padding-bottom: 95px; /* Espacio para el reproductor flotante persistente */
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

:focus-visible {
  outline: 3px solid var(--primary-red);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVBAR (FONDO CLARO CRISTALINO)
   ========================================================================== */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
}

.brand-logo {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(216, 0, 29, 0.25));
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.04);
}

.brand-meta {
  display: flex;
  flex-direction: column;
}

.brand-frequency {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary-red);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  border: 1px solid #fca5a5;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-live-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse-dot 1.4s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 7px rgba(220, 38, 38, 0); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.brand-slogan {
  font-size: 0.8rem;
  color: #1e293b;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-menu {
  list-style: none;
}

.nav-menu.open {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-slate);
  padding: 5px 11px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red);
  background: var(--primary-red-light);
}

.nav-link i {
  font-size: 0.82rem;
}

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

.btn-nav-play {
  background: linear-gradient(135deg, var(--primary-red), #be123c);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 7px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(216, 0, 29, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-nav-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(216, 0, 29, 0.5);
  color: #ffffff;
}

.btn-nav-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-nav-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.btn-mobile-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  padding: 6px;
}

/* ==========================================================================
   DELINEADO Y DIFUMINACIÓN DE TEXTO SOBRE IMÁGENES (SIN FONDOS NI DEGRADADOS)
   ========================================================================== */
.hero-text-glow {
  color: #ffffff;
  text-shadow: 
    -1.5px -1.5px 0 #000000,
     1.5px -1.5px 0 #000000,
    -1.5px  1.5px 0 #000000,
     1.5px  1.5px 0 #000000,
    -2px 0 0 #000000,
     2px 0 0 #000000,
     0 -2px 0 #000000,
     0 2px 0 #000000,
     0 3px 10px rgba(0, 0, 0, 0.95),
     0 0 18px rgba(0, 0, 0, 0.9);
  -webkit-font-smoothing: antialiased;
}

.hero-label-glow {
  color: #fde047; /* Amarillo brillante */
  text-shadow: 
    -1px -1px 0 #000000,
     1px -1px 0 #000000,
    -1px  1px 0 #000000,
     1px  1px 0 #000000,
     0 2px 6px rgba(0, 0, 0, 0.95),
     0 0 12px rgba(0, 0, 0, 0.85);
  -webkit-font-smoothing: antialiased;
}

.hero-subtext-glow {
  color: #f1f5f9;
  text-shadow: 
    -1px -1px 0 #000000,
     1px -1px 0 #000000,
    -1px  1px 0 #000000,
     1px  1px 0 #000000,
     0 2px 5px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   CABECERAS DE SECCIÓN (DISEÑO FESTIVO Y ALTA LEGIBILIDAD)
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 46px;
  position: relative;
}

.section-tag {
  color: #b91c1c;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecdd3 100%);
  border: 1px solid #fca5a5;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(216, 0, 29, 0.12);
}

.section-tag i {
  color: #dc2626;
  font-size: 1rem;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #090d16;
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-title .highlight-red {
  color: var(--primary-red);
}

.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), #f59e0b);
  border-radius: 4px;
  margin: 14px auto 0;
}

.section-subtitle {
  color: #1e293b;
  font-size: 1.08rem;
  font-weight: 500;
  max-width: 680px;
  margin: 14px auto 0;
  line-height: 1.65;
}

/* ==========================================================================
   PROGRAMACIÓN DIARIA (TARJETAS BLANCAS Y LUMINOSAS)
   ========================================================================== */
.section-schedule {
  padding: 70px 0;
}

.schedule-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 38px;
  padding: 0 8px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #090d16;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--primary-red-glow);
}

.filter-short {
  display: none;
}

@media (max-width: 640px) {
  .filter-full {
    display: none;
  }
  .filter-short {
    display: inline;
  }
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.schedule-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px -4px rgba(15, 23, 42, 0.06);
}

.schedule-card:hover {
  transform: translateY(-5px);
  border-color: #fca5a5;
  box-shadow: 0 16px 36px -6px rgba(216, 0, 29, 0.14);
}

.schedule-card.is-live {
  border: 2px solid var(--primary-red);
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  box-shadow: 0 12px 32px rgba(216, 0, 29, 0.14);
}

.schedule-card.is-live::after {
  content: 'EN VIVO AHORA';
  position: absolute;
  top: 14px;
  right: -32px;
  transform: rotate(45deg);
  background: var(--primary-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 5px 36px;
  box-shadow: 0 2px 8px rgba(216, 0, 29, 0.4);
}

.schedule-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  width: fit-content;
}

.schedule-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #090d16;
  margin-bottom: 6px;
}

.schedule-host {
  color: #090d16;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.schedule-host i {
  color: var(--primary-red);
}

.schedule-desc {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.schedule-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-genre {
  background: #f8fafc;
  color: #090d16;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
}

/* ==========================================================================
   EVENTOS, PATRONALES & FLYERS
   ========================================================================== */
.section-events {
  padding: 70px 0;
}

.countdown-card {
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 100%);
  border: 2px solid var(--border-red-light);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(216, 0, 29, 0.07);
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b91c1c;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-weight: 800;
  margin-bottom: 10px;
}

.countdown-info h3 {
  font-size: 1.7rem;
  font-weight: 900;
  color: #090d16;
  margin-bottom: 6px;
}

.countdown-info p {
  color: #090d16;
  font-weight: 700;
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-info p i {
  color: var(--primary-red);
}

.countdown-timer {
  display: flex;
  gap: 16px;
}

.countdown-unit {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  text-align: center;
  min-width: 70px;
  box-shadow: var(--shadow-sm);
}

.countdown-unit .number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
}

.countdown-unit .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.flyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.flyer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
}

.flyer-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-red-light);
  box-shadow: var(--shadow-card-hover);
}

.flyer-thumb-box {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f1f5f9;
}

.flyer-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.flyer-card:hover .flyer-thumb-img {
  transform: scale(1.06);
}

.flyer-zoom-indicator {
  position: absolute;
  inset: 0;
  background: rgba(216, 0, 29, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  font-size: 2.2rem;
}

.flyer-card:hover .flyer-zoom-indicator {
  opacity: 1;
}

.flyer-details {
  padding: 20px;
}

.flyer-event-tag {
  color: var(--primary-red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flyer-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin: 4px 0 8px;
}

.flyer-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #1e293b;
  font-weight: 700;
}

/* ==========================================================================
   NOTICIAS & Yarowilca / HUÁNUCO (FONDO CLARO)
   ========================================================================== */
.section-news {
  padding: 70px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red-light);
  box-shadow: var(--shadow-card-hover);
}

.news-img-box {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #f1f5f9;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img {
  transform: scale(1.08);
}

.news-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--primary-red);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.82rem;
  color: #334155;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.news-snippet {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.btn-read-news {
  color: var(--primary-red);
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-read-news:hover {
  color: var(--primary-red-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   FOOTER (FONDO CLARO ELEGANTE)
   ========================================================================== */
.main-footer {
  background: #f1f5f9;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-col p {
  color: var(--text-slate);
  font-size: 0.92rem;
  margin: 16px 0 20px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.94rem;
  color: #0f172a;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: #0f172a;
  font-weight: 600;
}

.contact-info-item i {
  color: var(--primary-red);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid #cbd5e1;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #1e293b;
  font-weight: 700;
}

/* Footer Radio Player */
.footer-radio-player {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  border-radius: 16px;
}

.btn-play-footer {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), #be123c);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.95rem;
}

.btn-play-footer:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.5);
}

.btn-play-footer:active {
  transform: scale(0.95);
}

.footer-player-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.footer-player-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-player-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   REPRODUCTOR FLOTANTE PERSISTENTE (DOCK INFERIOR CLARO)
   ========================================================================== */
.floating-player-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 2px solid var(--border-red-light);
  z-index: 1050;
  box-shadow: var(--shadow-dock);
  padding: 10px 0;
  transition: transform 0.3s ease;
}

.player-dock-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Bloque Izquierdo del Player */
.player-left-block {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
}

.player-thumb-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--border-light);
}

.player-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-meta-wrap {
  display: flex;
  flex-direction: column;
}

.player-stream-name {
  font-size: 0.98rem;
  font-weight: 900;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.player-signal-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  background: var(--primary-red);
  color: #fff;
}

.player-song-live {
  font-size: 0.82rem;
  color: var(--primary-red);
  font-weight: 700;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Visualizador de audio Canvas */
.visualizer-canvas {
  width: 100px;
  height: 28px;
}

/* Bloque Central de Controles */
.player-center-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.player-controls-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-play-pause-master {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--primary-red-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-play-pause-master:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(216, 0, 29, 0.45);
}

.btn-switch-source {
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-switch-source:hover, .btn-switch-source.active {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 2px 10px var(--primary-red-glow);
}

/* Bloque Derecho: Calidad, Volumen & WhatsApp */
.player-right-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quality-toggle-box {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  padding: 3px;
  border: 1px solid var(--border-light);
}

.btn-quality {
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.btn-quality.active {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 2px 6px rgba(216, 0, 29, 0.3);
}

.quality-toast-notice {
  position: absolute;
  top: -42px;
  right: 20px;
  background: var(--text-dark);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1010;
}

.quality-toast-notice.show {
  opacity: 1;
  transform: translateY(0);
}

.volume-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-volume-icon {
  color: var(--text-slate);
  font-size: 1.05rem;
}

.btn-volume-icon:hover {
  color: var(--primary-red);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 5px;
  background: #e2e8f0;
  border-radius: 4px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-red);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(216, 0, 29, 0.5);
}

/* ==========================================================================
   MODALES (WHATSAPP & LIGHTBOX EN FONDO CLARO)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: fadeInModal 0.25s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.modal-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 92vw;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.22);
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.btn-close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--text-muted);
  font-size: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.btn-close-modal:hover {
  color: var(--primary-red);
}

.modal-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-right: 28px;
}

.modal-header-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.modal-title {
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0;
}

.modal-subtitle {
  font-size: 0.81rem;
  color: var(--text-muted);
  margin-top: 2px;
  margin-bottom: 0;
  line-height: 1.35;
}

.preset-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.preset-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 9px 11px;
  text-align: left;
  color: var(--text-slate);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-chip i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.preset-chip:hover, .preset-chip.active {
  background: #f0fdf4;
  border-color: #86efac;
  color: #166534;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.15);
}

.modal-textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.88rem;
  resize: vertical;
  min-height: 75px;
  margin-bottom: 14px;
  outline: none;
  line-height: 1.4;
}

.modal-textarea:focus {
  border-color: #25d366;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.btn-send-wa-final {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 800;
  font-size: 0.96rem;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-send-wa-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

/* Lightbox Modal de Afiches */
.lightbox-content-box {
  max-width: 90vw;
  max-height: 90vh;
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  box-shadow: none;
  overflow: visible;
}

.lightbox-img {
  max-height: 80vh;
  max-width: 90vw;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.5);
  margin: 0 auto;
  object-fit: contain;
}

/* ==========================================================================
   RESPONSIVIDAD & ADAPTACIÓN MÓVIL PERFECCIONADA
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-container {
    padding: 10px 14px;
  }

  .brand-wrapper {
    gap: 10px;
    min-width: 0;
  }

  .brand-logo {
    height: 42px;
    flex-shrink: 0;
  }

  .brand-frequency {
    font-size: 1.02rem;
    white-space: nowrap;
  }

  .brand-slogan {
    display: none;
  }

  .btn-nav-play {
    padding: 6px 12px;
    font-size: 0.78rem;
    flex-shrink: 0;
  }

  .nav-actions .btn-nav-whatsapp span,
  .nav-actions .btn-nav-whatsapp .nav-wa-text {
    display: none !important;
  }

  .nav-actions .btn-nav-whatsapp {
    padding: 8px;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    gap: 0;
  }
}

/* Tablets y móviles: ocultar nav-menu y mostrar hamburguesa */
@media (max-width: 900px) {
  .btn-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    flex-shrink: 0;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-menu.open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 1001;
  }

  .nav-actions .btn-nav-whatsapp span,
  .nav-actions .btn-nav-whatsapp .nav-wa-text {
    display: none !important;
  }

  .nav-actions .btn-nav-whatsapp {
    padding: 8px;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    gap: 0;
  }
}

/* Desktop: nav-menu siempre visible, ignorar clase .open */
@media (min-width: 901px) {
  .nav-menu {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }
}

/* ==========================================================================
   TABLET SPECIFIC (769px - 900px)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
  }

  .player-dock-inner {
    padding: 0 16px;
  }

  .player-left-block {
    min-width: 200px;
  }

  .player-song-live {
    max-width: 160px;
  }

  .volume-slider {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .btn-nav-play {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  /* Player Dock Móvil: Fijo, Persistente, Iconos 100% Visibles Sin Desborde */
  .floating-player-dock {
    padding: 6px 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--primary-red);
    z-index: 1040;
  }

  .player-dock-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px;
    height: 100%;
  }

  .player-left-block {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
  }

  .player-thumb-wrap {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
  }

  .player-meta-wrap {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }

  .player-stream-name {
    font-size: 0.82rem;
    font-weight: 900;
    color: #090d16;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .player-signal-badge {
    font-size: 0.62rem;
    padding: 1px 4px;
  }

  .player-song-live {
    font-size: 0.75rem;
    color: var(--primary-red);
    font-weight: 700;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .visualizer-canvas {
    display: none;
  }

  .volume-wrapper {
    gap: 4px;
  }

  .volume-slider {
    width: 50px;
  }

  .quality-toggle-box {
    padding: 2px;
  }

  .btn-quality {
    padding: 3px 6px;
    font-size: 0.65rem;
  }

  .player-center-block {
    flex-shrink: 0;
    order: 2;
    display: flex;
    align-items: center;
  }

  .btn-play-pause-master {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--primary-red), #b50018);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(216, 0, 29, 0.45);
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .player-right-block {
    flex-shrink: 0;
    order: 3;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .social-links-dock {
    padding: 2px 4px;
    gap: 4px;
    background: rgba(241, 245, 249, 0.95);
  }

  .social-btn-dock {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .countdown-card {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 24px 20px;
  }

  .countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
  }

  .countdown-unit {
    min-width: 0;
    padding: 10px 4px;
  }

  .countdown-unit .number {
    font-size: 1.6rem;
  }

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

  body {
    padding-bottom: 80px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-slogan {
    display: none;
  }

  .brand-logo {
    height: 36px;
  }

  .brand-frequency {
    font-size: 0.95rem;
  }

  .badge-live-dot {
    font-size: 0.62rem;
    padding: 1px 5px;
  }

  .btn-nav-play span {
    display: none;
  }

  .btn-nav-play {
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-tag {
    font-size: 0.78rem;
    padding: 5px 14px;
  }

  .schedule-card {
    padding: 20px 16px;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  /* Reproductor optimizado para móviles pequeños */
  .player-dock-inner {
    padding: 0 10px;
    gap: 6px;
  }

  .player-left-block {
    min-width: 0;
    flex: 1;
    gap: 6px;
  }

  .player-thumb-wrap {
    width: 36px;
    height: 36px;
  }

  .player-stream-name {
    font-size: 0.75rem;
  }

  .player-song-live {
    font-size: 0.68rem;
    max-width: 80px;
  }

  .player-center-block {
    order: 2;
  }

  .btn-play-pause-master {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .player-right-block {
    order: 3;
    gap: 4px;
  }

  .volume-wrapper {
    display: none;
  }

  .quality-toggle-box {
    display: none;
  }

  .social-links-dock {
    gap: 3px;
    padding: 2px 4px;
  }

  .social-btn-dock {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
    min-width: 36px;
    min-height: 36px;
  }

  .footer-brand-col p {
    font-size: 0.85rem;
  }

  .social-links-large {
    gap: 10px;
  }

  .social-btn-lg {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  /* Botón de WhatsApp en Footer y Player Dock Móvil (Solo icono clásico circular sin texto) */
  .social-btn-dock.whatsapp,
  .social-btn-lg.whatsapp {
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #ffffff !important;
  }

  .social-btn-dock.whatsapp span,
  .social-btn-lg.whatsapp span {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .modal-overlay {
    padding: 10px;
  }

  .lightbox-content-box {
    max-width: 95vw;
    max-height: 95vh;
  }

  .lightbox-img {
    max-height: 70vh;
    max-width: 92vw;
    border-radius: var(--radius-md);
  }

  .modal-box {
    padding: 16px 14px;
    border-radius: var(--radius-lg);
    max-height: 85vh;
  }

  .btn-close-modal:hover {
    background: #fee2e2;
    border-color: #fca5a5;
  }

  .modal-header-icon {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .modal-title {
    font-size: 1.15rem;
  }

  .modal-subtitle {
    font-size: 0.78rem;
  }

  .preset-chip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
  }

  .preset-chip {
    padding: 8px 10px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .modal-textarea {
    padding: 10px;
    font-size: 0.83rem;
    min-height: 70px;
    margin-bottom: 12px;
  }

  .btn-send-wa-final {
    padding: 11px;
    font-size: 0.88rem;
  }

  .btn-close-modal {
    top: 12px;
    right: 12px;
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   ESTILOS DE REDES SOCIALES GRANDES Y COLORIDAS EN EL FOOTER
   ========================================================================== */
.social-links-large {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.social-btn-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.social-btn-lg:hover {
  transform: translateY(-4px) scale(1.12);
}

.social-btn-lg.facebook {
  background: #1877F2;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.45);
}

.social-btn-lg.facebook:hover {
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.7);
}

.social-btn-lg.tiktok {
  background: linear-gradient(135deg, #000000 0%, #111111 60%, #fe2c55 100%);
  border: 1px solid rgba(37, 244, 238, 0.4);
  box-shadow: 0 4px 16px rgba(254, 44, 85, 0.4);
}

.social-btn-lg.tiktok:hover {
  box-shadow: 0 8px 24px rgba(37, 244, 238, 0.65);
}

.social-btn-lg.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 16px rgba(214, 36, 159, 0.45);
}

.social-btn-lg.instagram:hover {
  box-shadow: 0 8px 24px rgba(214, 36, 159, 0.7);
}

.social-btn-lg.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}

.social-btn-lg.whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7);
}

/* ==========================================================================
   REDES SOCIALES DENTRO DEL REPRODUCTOR FLOTANTE INFERIOR (DOCK)
   ========================================================================== */
.social-links-dock {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(241, 245, 249, 0.85);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.social-btn-dock {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #ffffff !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.social-btn-dock:hover {
  transform: translateY(-2px) scale(1.12);
}

.social-btn-dock.facebook {
  background: #1877F2;
  box-shadow: 0 3px 12px rgba(24, 119, 242, 0.45);
}

.social-btn-dock.facebook:hover {
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.7);
}

.social-btn-dock.tiktok {
  background: linear-gradient(135deg, #000000 0%, #111111 60%, #fe2c55 100%);
  border: 1px solid rgba(37, 244, 238, 0.4);
  box-shadow: 0 3px 12px rgba(254, 44, 85, 0.4);
}

.social-btn-dock.tiktok:hover {
  box-shadow: 0 6px 18px rgba(37, 244, 238, 0.65);
}

.social-btn-dock.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 3px 12px rgba(214, 36, 159, 0.45);
}

.social-btn-dock.instagram:hover {
  box-shadow: 0 6px 18px rgba(214, 36, 159, 0.7);
}

.social-btn-dock.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.45);
}

.social-btn-dock.whatsapp:hover {
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.7);
}
