/*
Theme Name: Radio Dosis
Theme URI: https://radiodosis.com
Author: Radio Dosis
Author URI: https://radiodosis.com
Description: Tema oficial de Radio Dosis - Tu estación de música mexicana nonstop desde Peñuelas, Puerto Rico. Musica regional mexicana, corridos, norteñas, banda, rancheras y más. Compatible con Elementor.
Version: 1.0.5
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: radio-dosis
Tags: music, radio, streaming, elementor, responsive, custom-menu, custom-logo, featured-images, sticky-post, translation-ready
*/

/* =============================================
   RADIO DOSIS - Variables y Reset
   ============================================= */
:root {
  --rd-red: #CC0000;
  --rd-red-dark: #990000;
  --rd-red-light: #E60000;
  --rd-black: #0A0A0A;
  --rd-dark: #111111;
  --rd-dark-2: #1A1A1A;
  --rd-dark-3: #222222;
  --rd-dark-4: #2D2D2D;
  --rd-gray: #888888;
  --rd-gray-light: #AAAAAA;
  --rd-white: #FFFFFF;
  --rd-off-white: #F5F5F5;
  --rd-gold: #C8962A;
  --rd-gold-light: #E8AE3A;
  --rd-player-height: 80px;
  --rd-header-height: 80px;
  --rd-font-primary: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --rd-font-body: 'Roboto', Arial, sans-serif;
  --rd-font-accent: 'Bebas Neue', 'Impact', Arial, sans-serif;
  --rd-transition: all 0.3s ease;
  --rd-shadow: 0 4px 20px rgba(0,0,0,0.4);
  --rd-shadow-red: 0 0 20px rgba(204,0,0,0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--rd-font-body);
  background-color: var(--rd-black);
  color: var(--rd-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 18px;
  padding-bottom: var(--rd-player-height);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--rd-font-primary);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--rd-gray-light);
}

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

a:hover {
  color: var(--rd-red-light);
}

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

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--rd-white);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--rd-red);
}

.section-title p {
  margin-top: 15px;
  font-size: 1.1rem;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#masthead {
  background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.95) 100%);
  border-bottom: 2px solid var(--rd-red);
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--rd-header-height);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(204,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--rd-header-height);
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  height: 55px;
  width: auto;
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo .logo-name {
  font-family: var(--rd-font-accent);
  font-size: 1.8rem;
  color: var(--rd-white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.site-logo .logo-tagline {
  font-size: 0.65rem;
  color: var(--rd-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Main Navigation */
#primary-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
  align-items: center;
}

.nav-menu li a {
  color: var(--rd-gray-light);
  font-family: var(--rd-font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  transition: var(--rd-transition);
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--rd-red);
  transition: var(--rd-transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
  color: var(--rd-white);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item > a::after {
  width: 100%;
}

/* Dropdown */
.nav-menu li {
  position: relative;
}

.nav-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--rd-dark-2);
  border: 1px solid var(--rd-dark-4);
  border-top: 2px solid var(--rd-red);
  min-width: 200px;
  list-style: none;
  box-shadow: var(--rd-shadow);
  z-index: 100;
}

.nav-menu li:hover > ul {
  display: block;
}

.nav-menu li ul li a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.8rem;
}

.nav-menu li ul li a:hover {
  background: var(--rd-dark-3);
  color: var(--rd-red);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--rd-red);
  color: var(--rd-white);
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 1.2rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  background: var(--rd-black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--rd-header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(204,0,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(204,0,0,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0A0A0A 0%, #1A0000 50%, #0A0A0A 100%);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(204,0,0,0.03) 40px,
      rgba(204,0,0,0.03) 41px
    );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeInLeft 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.4);
  color: var(--rd-red-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: var(--rd-font-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: var(--rd-red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--rd-font-accent);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--rd-white);
}

.hero-title span {
  color: var(--rd-red);
  display: block;
}

.hero-subtitle {
  font-family: var(--rd-font-primary);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--rd-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--rd-gray-light);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease;
}

.radio-disc {
  width: 350px;
  height: 350px;
  position: relative;
}

.disc-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #1A0000,
    #CC0000,
    #990000,
    #1A0000,
    #CC0000,
    #330000,
    #1A0000
  );
  animation: spin 8s linear infinite;
  box-shadow: 0 0 60px rgba(204,0,0,0.4), inset 0 0 30px rgba(0,0,0,0.5);
}

.disc-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  border-radius: 50%;
  background: var(--rd-dark-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--rd-dark-4);
  z-index: 2;
}

.disc-inner span:first-child {
  font-family: var(--rd-font-accent);
  font-size: 1.1rem;
  color: var(--rd-white);
  letter-spacing: 2px;
}

.disc-inner span:last-child {
  font-size: 0.55rem;
  color: var(--rd-red);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--rd-font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--rd-transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--rd-red);
  color: var(--rd-white);
  border-color: var(--rd-red);
  box-shadow: 0 4px 15px rgba(204,0,0,0.3);
}

.btn-primary:hover {
  background: var(--rd-red-dark);
  border-color: var(--rd-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204,0,0,0.4);
  color: var(--rd-white);
}

.btn-outline {
  background: transparent;
  color: var(--rd-white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--rd-white);
  color: var(--rd-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--rd-gold);
  color: var(--rd-black);
  border-color: var(--rd-gold);
}

.btn-gold:hover {
  background: var(--rd-gold-light);
  color: var(--rd-black);
  transform: translateY(-2px);
}

/* =============================================
   GENRE SECTION
   ============================================= */
.genres-section {
  padding: 80px 0;
  background: var(--rd-dark);
  position: relative;
}

.genres-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rd-red), transparent);
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.genre-card {
  background: var(--rd-dark-2);
  border: 1px solid var(--rd-dark-4);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--rd-transition);
  position: relative;
  overflow: hidden;
}

.genre-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(204,0,0,0.1));
  opacity: 0;
  transition: var(--rd-transition);
}

.genre-card:hover {
  border-color: var(--rd-red);
  transform: translateY(-5px);
  box-shadow: var(--rd-shadow-red);
}

.genre-card:hover::before {
  opacity: 1;
}

.genre-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.genre-name {
  font-family: var(--rd-font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rd-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =============================================
   ON-AIR / NOW PLAYING SECTION
   ============================================= */
.on-air-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rd-black) 0%, #1A0000 50%, var(--rd-black) 100%);
  position: relative;
  overflow: hidden;
}

.on-air-section::before {
  content: 'ON AIR';
  position: absolute;
  font-family: var(--rd-font-accent);
  font-size: 20rem;
  color: rgba(204,0,0,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.on-air-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.on-air-info {
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.on-air-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rd-red);
  color: var(--rd-white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-family: var(--rd-font-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

.on-air-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--rd-white);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.now-playing-title {
  font-family: var(--rd-font-primary);
  font-size: 2rem;
  color: var(--rd-white);
  margin-bottom: 5px;
}

.now-playing-artist {
  font-size: 1.1rem;
  color: var(--rd-red);
  font-weight: 600;
  margin-bottom: 20px;
}

.audio-waves {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin: 20px 0;
}

.wave-bar {
  width: 6px;
  border-radius: 3px;
  background: var(--rd-red);
  animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 45%; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 75%; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 55%; animation-delay: 0.3s; }
.wave-bar:nth-child(7) { height: 85%; animation-delay: 0.2s; }
.wave-bar:nth-child(8) { height: 35%; animation-delay: 0.1s; }
.wave-bar:nth-child(9) { height: 65%; animation-delay: 0s; }
.wave-bar:nth-child(10) { height: 25%; animation-delay: 0.15s; }

@keyframes wave {
  0%, 100% { height: 20%; }
  50% { height: 100%; }
}

/* =============================================
   BLOG SECTION
   ============================================= */
.blog-section {
  padding: 80px 0;
  background: var(--rd-dark);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.post-card {
  background: var(--rd-dark-2);
  border: 1px solid var(--rd-dark-4);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--rd-transition);
}

.post-card:hover {
  transform: translateY(-5px);
  border-color: var(--rd-red);
  box-shadow: var(--rd-shadow);
}

.post-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--rd-dark-3);
}

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

.post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--rd-red);
  color: var(--rd-white);
  font-size: 0.7rem;
  font-family: var(--rd-font-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}

.post-body {
  padding: 25px;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--rd-gray);
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-title {
  font-family: var(--rd-font-primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.post-title a {
  color: var(--rd-white);
}

.post-title a:hover {
  color: var(--rd-red);
}

.post-excerpt {
  font-size: 0.875rem;
  color: var(--rd-gray);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-family: var(--rd-font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rd-red);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  color: var(--rd-red-light);
  gap: 10px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 80px 0;
  background: var(--rd-black);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--rd-dark-4);
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--rd-red), transparent 50%);
  border-radius: 12px;
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.stat-box {
  background: var(--rd-dark-2);
  border: 1px solid var(--rd-dark-4);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  border-top: 2px solid var(--rd-red);
}

.stat-number {
  font-family: var(--rd-font-accent);
  font-size: 2.5rem;
  color: var(--rd-red);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--rd-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-text .section-label {
  font-family: var(--rd-font-primary);
  font-size: 0.8rem;
  color: var(--rd-red);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.about-text h2 {
  color: var(--rd-white);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-features {
  list-style: none;
  margin: 20px 0 30px;
}

.about-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--rd-dark-4);
  font-size: 0.9rem;
  color: var(--rd-gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-features li::before {
  content: '▶';
  color: var(--rd-red);
  font-size: 0.6rem;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: 80px 0;
  background: var(--rd-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding-right: 40px;
}

.contact-info h2 {
  color: var(--rd-white);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--rd-dark-2);
  border: 1px solid var(--rd-dark-4);
  border-radius: 8px;
  border-left: 3px solid var(--rd-red);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(204,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--rd-white);
  font-size: 0.9rem;
  font-family: var(--rd-font-primary);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.875rem;
  color: var(--rd-gray);
  margin: 0;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--rd-dark-2);
  border: 1px solid var(--rd-dark-4);
  border-radius: 12px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--rd-font-primary);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rd-gray-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--rd-dark-3);
  border: 1px solid var(--rd-dark-4);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--rd-white);
  font-family: var(--rd-font-body);
  font-size: 0.9rem;
  transition: var(--rd-transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rd-red);
  box-shadow: 0 0 0 2px rgba(204,0,0,0.1);
}

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

/* =============================================
   REQUEST SONG SECTION
   ============================================= */
.request-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rd-dark) 0%, var(--rd-dark-2) 100%);
}

/* =============================================
   SOCIAL LINKS
   ============================================= */
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rd-dark-3);
  border: 1px solid var(--rd-dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rd-gray);
  font-size: 1rem;
  transition: var(--rd-transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--rd-red);
  border-color: var(--rd-red);
  color: var(--rd-white);
  transform: translateY(-3px);
}

/* Iconos sociales sin URL configurada — se muestran pero más tenues */
.social-link.social-placeholder {
  opacity: 0.35;
  cursor: default;
}
.social-link.social-placeholder:hover {
  background: var(--rd-dark-3);
  border-color: var(--rd-dark-4);
  color: var(--rd-gray);
  transform: none;
  opacity: 0.5;
}

/* =============================================
   FOOTER
   ============================================= */
#colophon {
  background: var(--rd-dark-2);
  border-top: 3px solid var(--rd-red);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--rd-dark-4);
}

.footer-brand .site-logo {
  margin-bottom: 20px;
  display: flex;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--rd-font-primary);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rd-white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rd-red);
  display: inline-block;
}

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

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li a {
  color: var(--rd-gray);
  font-size: 0.875rem;
  transition: var(--rd-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-menu li a::before {
  content: '▶';
  font-size: 0.5rem;
  color: var(--rd-red);
}

.footer-menu li a:hover {
  color: var(--rd-white);
  transform: translateX(3px);
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  font-size: 0.8rem;
  color: var(--rd-gray);
}

.copyright a {
  color: var(--rd-red);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: var(--rd-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--rd-font-primary);
}

.footer-legal-links a:hover {
  color: var(--rd-red);
}

/* =============================================
   PERSISTENT AUDIO PLAYER BAR
   ============================================= */
#rd-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--rd-player-height);
  background: linear-gradient(180deg, #0F0000 0%, #0A0A0A 100%);
  border-top: 2px solid var(--rd-red);
  z-index: 99999;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 20px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
}

.player-station-info {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
  flex-shrink: 0;
}

.player-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--rd-red);
  object-fit: cover;
  background: var(--rd-dark-3);
}

.player-station-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.player-name {
  font-family: var(--rd-font-accent);
  font-size: 1rem;
  color: var(--rd-white);
  letter-spacing: 2px;
}

.player-slogan {
  font-size: 0.65rem;
  color: var(--rd-red);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
}

.player-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rd-red);
  border: none;
  color: var(--rd-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--rd-transition);
  box-shadow: 0 0 20px rgba(204,0,0,0.4);
  flex-shrink: 0;
}

.player-play-btn:hover {
  background: var(--rd-red-dark);
  transform: scale(1.05);
}

.player-now-playing {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.player-track-label {
  font-size: 0.6rem;
  color: var(--rd-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--rd-font-primary);
}

.player-track-name {
  font-family: var(--rd-font-primary);
  font-size: 0.95rem;
  color: var(--rd-white);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.player-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(204,0,0,0.2);
  border: 1px solid var(--rd-red);
  color: var(--rd-red);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-family: var(--rd-font-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.player-live-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--rd-red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.player-volume-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  flex-shrink: 0;
}

.player-vol-icon {
  color: var(--rd-gray);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--rd-transition);
  background: none;
  border: none;
  padding: 0;
}

.player-vol-icon:hover {
  color: var(--rd-white);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: var(--rd-dark-4);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rd-red);
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rd-red);
  cursor: pointer;
  border: none;
}

/* =============================================
   PAGE SPECIFIC STYLES
   ============================================= */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--rd-black) 0%, #1A0000 100%);
  text-align: center;
  border-bottom: 2px solid var(--rd-dark-4);
}

.page-hero h1 {
  color: var(--rd-white);
  margin-bottom: 15px;
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: var(--rd-gray);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-hero .breadcrumb a {
  color: var(--rd-red);
}

.page-content {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  color: var(--rd-white);
  margin: 40px 0 15px;
  font-size: 1.5rem;
}

.page-content h3 {
  color: var(--rd-white);
  margin: 25px 0 10px;
  font-size: 1.2rem;
}

.page-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-content ul, .page-content ol {
  padding-left: 25px;
  margin-bottom: 15px;
  color: var(--rd-gray-light);
}

.page-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: calc(var(--rd-player-height) + 10px);
  left: 20px;
  right: 20px;
  background: var(--rd-dark-2);
  border: 1px solid var(--rd-dark-4);
  border-top: 2px solid var(--rd-red);
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9000;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
  flex-wrap: wrap;
}

#cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
}

#cookie-banner p a {
  color: var(--rd-red);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* =============================================
   ELEMENTOR OVERRIDES
   ============================================= */
.elementor-section.elementor-top-section {
  padding-top: 0;
  padding-bottom: 0;
}

.elementor-widget-wrap {
  padding: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .on-air-content {
    grid-template-columns: 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --rd-header-height: 65px;
    --rd-player-height: 70px;
  }

  .header-inner {
    padding: 0 15px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #primary-navigation {
    display: none;
    position: fixed;
    top: var(--rd-header-height);
    left: 0;
    right: 0;
    background: var(--rd-dark-2);
    border-bottom: 2px solid var(--rd-red);
    padding: 20px;
  }

  #primary-navigation.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-menu li a {
    display: block;
    padding: 12px 5px;
    width: 100%;
    border-bottom: 1px solid var(--rd-dark-4);
  }

  .radio-disc {
    width: 220px;
    height: 220px;
  }

  .hero-content {
    padding: 0 20px;
  }

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

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

  .player-station-info {
    min-width: auto;
  }

  .player-now-playing {
    display: none;
  }

  .player-volume-wrap {
    min-width: auto;
  }

  .volume-slider {
    width: 70px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }

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

  .player-name {
    font-size: 0.85rem;
  }
}

/* Smart TV (large screens) */
@media (min-width: 1920px) {
  :root {
    --rd-header-height: 100px;
    --rd-player-height: 100px;
  }

  body {
    font-size: 18px;
  }

  .container {
    max-width: 1600px;
  }

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

  .player-name {
    font-size: 1.2rem;
  }

  .player-play-btn {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }
}

/* Print */
@media print {
  #rd-player-bar,
  #masthead,
  #cookie-banner {
    display: none !important;
  }
  body {
    padding-bottom: 0;
    padding-top: 0;
  }
}
