/* ==========================================================================
   RADIO PAJATEN - DESIGN SYSTEM & STYLESHEET
   Inspirado en la Selva Peruana, Juanjuí y San Martín
   ========================================================================== */

/* --- Custom Variables --- */
:root {
  /* Color Palette */
  --bg-dark-deep: #05130E;
  --bg-dark-jungle: #0A1F17;
  --bg-jungle-card: #0F2E23;
  --bg-jungle-light: #164032;
  
  --emerald-primary: #1E543D;
  --emerald-accent: #277A59;
  --emerald-glow: #2E9B71;
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #A3821F;
  --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #B8860B 100%);
  --gold-glow: rgba(212, 175, 55, 0.4);
  
  --panel-accent: #d07206;
  
  --text-white: #FFFFFF;
  --text-light: #E2ECE7;
  --text-muted: #9BB3A7;
  --text-dark: #121F19;
  
  --danger-live: #FF4D4D;
  --whatsapp-color: #25D366;
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 6px 20px rgba(212, 175, 55, 0.25);
  --glass-bg: rgba(10, 31, 23, 0.82);
  --glass-border: 1px solid rgba(212, 175, 55, 0.18);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-deep);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* --- Layout Utility --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.w-100 {
  width: 100%;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  text-transform: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-dark-deep);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
  filter: brightness(1.08);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #ffffff;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3.5rem;
}

.sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.title-gold-bar {
  width: 60px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 1rem auto;
  border-radius: var(--radius-full);
}

.section-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}


/* ==========================================================================
   HEADER (LOGO SOLO - REEMPLAZA EL TEXTO)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--glass-border);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  padding: 0.2rem 0;
  box-shadow: var(--shadow-md);
  background: rgba(5, 19, 14, 0.94);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-header {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* El logo reemplaza directamente el texto de letras */
.header-logo-only {
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo-header:hover .header-logo-only {
  transform: scale(1.04);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Nav links */
.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-normal);
  border-radius: 2px;
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  cursor: pointer;
  z-index: 1010;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--gold-primary);
  border-radius: 3px;
  transition: var(--transition-fast);
}


/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-jungle-card);
  border-left: var(--glass-border);
  z-index: 1020;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-drawer-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}

.close-drawer-btn {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.close-drawer-btn:hover {
  color: var(--gold-primary);
}

.mobile-nav-links {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}

.mobile-link i {
  color: var(--gold-primary);
  width: 20px;
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.mobile-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1015;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ==========================================================================
   HERO SLIDER SECTION
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  max-height: 850px;
  margin-top: 68px;
  overflow: hidden;
  background-color: var(--bg-dark-deep);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg, 
    rgba(5, 19, 14, 0.45) 0%, 
    rgba(10, 31, 23, 0.75) 60%, 
    rgba(5, 19, 14, 0.95) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.6s ease-out 0.2s;
}

.slide.active .slide-content {
  transform: translateY(0);
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.slide-text {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 660px;
  margin: 0 auto 2.2rem auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 31, 23, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.prev-arrow { left: 2rem; }
.next-arrow { right: 2rem; }

.slider-arrow:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark-deep);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

/* Indicators */
.slider-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  width: 36px;
  border-radius: 12px;
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}


/* ==========================================================================
   REPRODUCTOR COMPACTO EN VIVO CON COVER ARTWORK (RADIO_FONDO)
   ========================================================================== */
.compact-player-wrapper {
  position: relative;
  z-index: 50;
  margin-top: -36px;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.compact-player-bar {
  background: rgba(15, 46, 35, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  transition: var(--transition-normal);
}

.compact-player-bar:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.25);
}

/* Cover Artwork Box (radio_fondo) */
.player-cover-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
  background: var(--bg-dark-jungle);
}

.player-cover-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.compact-player-bar:hover .player-cover-art {
  transform: scale(1.08);
}

/* Play/Pause Button */
.player-main-action {
  flex-shrink: 0;
}

.play-pause-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-dark-deep);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
}

.play-pause-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.7);
}

.play-pause-btn.playing {
  background: linear-gradient(135deg, #FFD700 0%, #E6B800 100%);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Track Info */
.player-info-container {
  flex-grow: 1;
  min-width: 0;
}

.player-meta-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.15rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  color: #FFFFFF;
  background: var(--danger-live);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(255, 77, 77, 0.4);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFFFFF;
  animation: blink 1.2s infinite ease-in-out;
}

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

.player-station-tag {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: capitalize;
}

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

/* Audio Equalizer */
.player-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 24px;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

.eq-bar {
  width: 4px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.player-equalizer.playing .eq-bar:nth-child(1) { animation: eqAnim 1.2s infinite ease-in-out 0.1s; }
.player-equalizer.playing .eq-bar:nth-child(2) { animation: eqAnim 1.0s infinite ease-in-out 0.3s; }
.player-equalizer.playing .eq-bar:nth-child(3) { animation: eqAnim 1.4s infinite ease-in-out 0.0s; }
.player-equalizer.playing .eq-bar:nth-child(4) { animation: eqAnim 1.1s infinite ease-in-out 0.4s; }
.player-equalizer.playing .eq-bar:nth-child(5) { animation: eqAnim 1.3s infinite ease-in-out 0.2s; }

@keyframes eqAnim {
  0%, 100% { height: 6px; }
  50% { height: 22px; background: #FFF; }
}

/* Discrete Volume Control */
.player-volume-control {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.volume-btn {
  background: transparent;
  color: var(--gold-primary);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.3rem;
  transition: var(--transition-fast);
}

.volume-btn:hover {
  color: var(--gold-light);
}

.volume-slider-wrapper {
  width: 90px;
  display: flex;
  align-items: center;
}

.volume-slider-wrapper input[type="range"] {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  accent-color: var(--gold-primary);
  cursor: pointer;
}


/* ==========================================================================
   SECCIÓN DE PROGRAMACIÓN (RADIO SCHEDULES API)
   ========================================================================== */
.programacion-section {
  background-color: var(--bg-dark-deep);
  position: relative;
}

.programacion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.prog-card {
  background: var(--bg-jungle-card);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.prog-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
}

.prog-header-flex {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.prog-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
  background: var(--bg-dark-jungle);
}

.prog-info-titles {
  display: flex;
  flex-direction: column;
}

.prog-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: capitalize;
  line-height: 1.2;
}

.prog-host {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 0.2rem;
}

.prog-badge-schedule {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.prog-days-list {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.day-chip {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.day-chip.active {
  background: var(--gold-gradient);
  color: var(--bg-dark-deep);
}

.prog-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 0.8rem;
}

.prog-card-skeleton {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}


/* ==========================================================================
   SECCIÓN DE NOTICIAS (TARJETAS MODERNAS & API)
   ========================================================================== */
.news-section {
  background-color: var(--bg-dark-jungle);
  position: relative;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.news-card {
  background: var(--bg-jungle-card);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.45);
}

.news-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-dark-deep);
}

.news-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.news-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 31, 23, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

.news-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.news-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 0.8rem;
  transition: var(--transition-fast);
  text-transform: capitalize;
}

.news-card:hover .news-title {
  color: var(--gold-light);
}

.news-excerpt {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  opacity: 0.9;
}

.btn-read-more {
  background: transparent;
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  align-self: flex-start;
  transition: var(--transition-fast);
}

.btn-read-more:hover {
  color: var(--gold-light);
  gap: 0.8rem;
}


/* ==========================================================================
   SECCIÓN DE CONTACTO
   ========================================================================== */
.contact-section {
  background-color: var(--bg-dark-deep);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--bg-jungle-card);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.contact-card-title i {
  color: var(--gold-primary);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrapper i {
  position: absolute;
  left: 1.2rem;
  color: var(--gold-primary);
  font-size: 1rem;
}

.input-icon-wrapper input,
.input-icon-wrapper textarea {
  width: 100%;
  background: rgba(5, 19, 14, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem 0.85rem 3rem;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.input-icon-wrapper input:focus,
.input-icon-wrapper textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  background: rgba(5, 19, 14, 0.85);
}

.input-icon-wrapper textarea {
  resize: vertical;
}

.btn-submit {
  margin-top: 0.5rem;
  padding: 1rem;
}

.form-feedback {
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}

.form-feedback.success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--whatsapp-color);
  color: #69F0AE;
}

/* Contact Info Details */
.contact-info-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-icon.icon-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  color: var(--whatsapp-color);
}

.info-detail {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-white);
}

.info-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.whatsapp-cta-box {
  background: rgba(37, 211, 102, 0.08);
  border: 1px dashed rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.whatsapp-cta-box h4 {
  font-family: var(--font-heading);
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.whatsapp-cta-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}


/* ==========================================================================
   FOOTER (COMPLETO Y DESTACADO)
   ========================================================================== */
.site-footer {
  background-color: #030D09;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: var(--text-muted);
}

.footer-top-decorator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

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

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

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

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}

.footer-brand-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
}

.footer-brand-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-links a:hover i {
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-list i {
  color: var(--gold-primary);
  width: 18px;
}

.socials-intro {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.exclusive-design-tag {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.scroll-to-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-jungle-card);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.scroll-to-top-btn:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}


/* ==========================================================================
   MODAL DE NOTICIAS
   ========================================================================== */
.news-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.news-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 10;
  background: var(--bg-jungle-card);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.news-modal.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

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

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 1rem 0 0.5rem 0;
  line-height: 1.3;
  text-transform: capitalize;
}

.modal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-body p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}


/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .btn-header-listen span { display: none; }
  .hamburger-btn { display: flex; }
  
  .slide-title { font-size: 2.6rem; }
  .slide-text { font-size: 1.1rem; }
  .prev-arrow { left: 0.8rem; }
  .next-arrow { right: 0.8rem; }
}

@media (max-width: 768px) {
  .compact-player-bar {
    flex-wrap: wrap;
    border-radius: var(--radius-md);
    padding: 1rem;
    gap: 0.8rem;
  }
  .player-equalizer { display: none; }
  .player-volume-control { width: 100%; justify-content: flex-end; }
  .volume-slider-wrapper { width: 120px; }
  .slide-title { font-size: 2.1rem; }
  .section-title { font-size: 2rem; }
  .compact-player-wrapper { margin-top: -20px; }
}
