/* ═══════════════════════════════════════════
   NOGOYÁ RADIOS – Stylesheet
   ═══════════════════════════════════════════ */

/* ── Variables & Reset ── */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #1a1a1a;
  --border:    rgba(255,255,255,0.08);
  --border-h:  rgba(255,255,255,0.16);
  --accent:    #f77f00;
  --accent-h:  #ff9a2e;
  --cyan:      #4fc3f7;
  --text:      #f0f0f0;
  --muted:     #888;
  --dim:       #444;
  --success:   #4caf50;
  --error:     #f44336;
  --r:         12px;
  --rl:        20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-l:  0 8px 48px rgba(0,0,0,0.6);
  --ease:      0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font-family:inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); }

.accent { color: var(--accent); }

/* ── Layout ── */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

.section { padding: 90px 0; }
.section-dark { background: var(--bg-2); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  text-decoration: none;
}
.btn svg { stroke: currentColor; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,57,70,0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn-full { width:100%; justify-content:center; }

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--ease);
}
#header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-img { height: 48px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav-menu a:hover { color: #fff; }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background: var(--accent-h) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a080b 0%, var(--bg) 65%);
}

.hero-bg { position:absolute; inset:0; z-index:0; pointer-events:none; }

.radio-waves {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wave {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(230,57,70,0.12);
  animation: pulse-wave 5s ease-out infinite;
}
.wave:nth-child(1) { width:420px; height:420px; animation-delay:0s; }
.wave:nth-child(2) { width:750px; height:750px; animation-delay:1.7s; }
.wave:nth-child(3) { width:1100px; height:1100px; animation-delay:3.4s; }

@keyframes pulse-wave {
  0%   { transform:scale(0.7); opacity:0.7; }
  100% { transform:scale(1.3); opacity:0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 120px 24px 80px;
}
.hero-logo {
  width: 220px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 28px rgba(247,127,0,0.35));
}
.hero h1 { margin-bottom: 14px; }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.badge {
  padding: 6px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--muted);
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.6); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,0.25);
  border-bottom: 2px solid rgba(255,255,255,0.25);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,100% { transform:rotate(45deg) translateY(0); }
  50%      { transform:rotate(45deg) translateY(7px); }
}

/* ═══════════════════════════════════════════
   RADIO PLAYERS
   ═══════════════════════════════════════════ */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.player-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.player-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  opacity: 0;
  transition: opacity var(--ease);
}
.player-card:hover::before,
.player-card.playing::before { opacity: 1; }
.player-card.playing {
  border-color: rgba(230,57,70,0.3);
  box-shadow: 0 0 30px rgba(230,57,70,0.08);
}
.player-card.featured {
  border-color: rgba(230,57,70,0.25);
  background: linear-gradient(140deg, #150608 0%, var(--bg-3) 100%);
}

.player-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.player-logo {
  width: 72px; height: 72px;
  min-width: 72px;
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
}

.player-info h3 { margin-bottom: 4px; }
.frequency {
  display: block;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.player-info p { font-size: 0.88rem; color: var(--muted); }

.player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.play-btn {
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  position: relative;
}
.play-btn:hover {
  background: var(--accent-h);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(230,57,70,0.5);
}
.play-btn svg { width:18px; height:18px; }

.play-btn.loading {
  background: transparent;
  border: 2px solid var(--accent);
}
.play-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform:rotate(360deg); }
}

/* Equalizer */
.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  opacity: 0;
  transition: opacity var(--ease);
}
.equalizer.active { opacity: 1; }
.equalizer span {
  display: block;
  width: 4px;
  background: linear-gradient(to top, var(--accent), var(--cyan));
  border-radius: 2px 2px 0 0;
  height: 4px;
}
.equalizer.active span { animation: eq-bar 0.7s ease-in-out infinite alternate; }
.equalizer.active span:nth-child(1) { animation-duration:0.55s; animation-delay:0s; }
.equalizer.active span:nth-child(2) { animation-duration:0.8s;  animation-delay:0.1s; }
.equalizer.active span:nth-child(3) { animation-duration:0.65s; animation-delay:0.2s; }
.equalizer.active span:nth-child(4) { animation-duration:0.9s;  animation-delay:0.05s; }
.equalizer.active span:nth-child(5) { animation-duration:0.6s;  animation-delay:0.15s; }

@keyframes eq-bar {
  from { height: 4px; }
  to   { height: 22px; }
}

.volume-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.volume-wrap svg { min-width:18px; width:18px; height:18px; }
.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}
.volume-slider::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}

.player-status {
  font-size: 0.75rem;
  color: var(--dim);
  min-width: 60px;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.players-note {
  text-align: center;
  color: var(--dim);
  font-size: 0.8rem;
  margin-top: 24px;
}

/* ═══════════════════════════════════════════
   RADIO CARDS (Emisoras)
   ═══════════════════════════════════════════ */
.radios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.radio-card--wide { grid-column: span 1; }

.radio-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.radio-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
}

.radio-logo-wrap {
  background: #fff;
  padding: 24px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-logo-wrap img {
  max-height: 88px;
  object-fit: contain;
  margin: 0 auto;
}

.radio-body { padding: 24px; }
.radio-body h3 { margin-bottom: 8px; }

.freq-badge {
  display: inline-block;
  background: rgba(247,127,0,0.12);
  color: var(--accent);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.freq-badge--tv {
  background: rgba(79,195,247,0.12);
  color: var(--cyan);
}

.radio-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.radio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.radio-tags span {
  padding: 3px 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.73rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   SERVICES (Publicidad)
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.service-card:hover {
  border-color: rgba(230,57,70,0.3);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}
.featured-service {
  border-color: rgba(230,57,70,0.35);
  background: linear-gradient(140deg, rgba(230,57,70,0.07) 0%, var(--bg-3) 100%);
}

.service-badge {
  position: absolute;
  top: -13px; right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 54px; height: 54px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width:26px; height:26px; stroke: var(--accent); }

.service-card h3 { font-size: 1.2rem; }
.service-card > p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

.service-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}
.service-list li::before { content:'→'; color: var(--accent); font-size:0.8rem; min-width:14px; }

.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(230,57,70,0.4);
  border-radius: 50px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--ease);
  margin-top: auto;
}
.btn-service:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Pack CTA */
.pack-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(230,57,70,0.1), rgba(79,195,247,0.05));
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: var(--rl);
  padding: 32px 36px;
  margin-top: 40px;
}
.pack-cta-content h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pack-cta-content p { color: var(--muted); font-size: 0.9rem; }
.pack-cta-content strong { color: var(--text); }

/* ═══════════════════════════════════════════
   MEDIA CARDS (Digitales)
   ═══════════════════════════════════════════ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  color: inherit;
}
.media-card:hover {
  border-color: rgba(79,195,247,0.3);
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}

.media-logo {
  background: #fff;
  padding: 28px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-logo img { max-height: 100px; object-fit:contain; margin:0 auto; }

.media-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.media-body h3 { font-size:1.15rem; }
.media-body p  { font-size:0.87rem; color:var(--muted); line-height:1.65; flex:1; }
.media-link { font-family:'Montserrat',sans-serif; font-weight:700; font-size:0.82rem; color:var(--cyan); }

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 { margin-bottom: 20px; }
.about-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-text p { color:var(--muted); margin-bottom:12px; line-height:1.7; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 36px;
}
.stat {
  text-align: center;
  padding: 18px 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--ease);
}
.stat:hover { border-color: rgba(230,57,70,0.3); }
.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label { font-size:0.72rem; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; }

.frequency-display {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 28px;
}
.frequency-display h4 {
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 20px;
}

.freq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px;
  transition: border-color var(--ease);
}
.freq-item:last-child { margin-bottom: 0; }
.freq-item:hover { border-color: rgba(230,57,70,0.3); }
.freq-item span {
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.freq-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent);
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }

label {
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input, select, textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
input::placeholder, textarea::placeholder { color: var(--dim); }

select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='%23666' d='M5 7L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}
select option { background: var(--bg-2); }

textarea { resize: vertical; min-height: 130px; }

.form-response {
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 0.88rem;
  display: none;
}
.form-response.success {
  display: block;
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.3);
  color: #81c784;
}
.form-response.error {
  display: block;
  background: rgba(244,67,54,0.12);
  border: 1px solid rgba(244,67,54,0.3);
  color: #e57373;
}

/* Info items */
.contact-info { display:flex; flex-direction:column; gap:12px; margin-bottom:20px; }

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--ease);
  text-decoration: none;
  color: inherit;
}
.info-item:hover { border-color: var(--border-h); }

.info-icon {
  width: 38px; height: 38px;
  min-width: 38px;
  background: rgba(230,57,70,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon--wa { background: rgba(37,211,102,0.1); }

.info-item > div:last-child { display:flex; flex-direction:column; gap:2px; }
.info-item strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.info-item span { color:var(--text); font-size:0.9rem; }

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { display:block; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo { height: 44px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 18px; }

.social-links { display:flex; gap:10px; }
.social-links a {
  width: 36px; height: 36px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--ease);
}
.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-links ul { display:flex; flex-direction:column; gap:9px; }
.footer-links a { font-size:0.88rem; color:var(--muted); transition:color var(--ease); }
.footer-links a:hover { color:var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-bottom p { font-size:0.8rem; color:var(--dim); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--ease), box-shadow var(--ease);
  animation: wa-float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.65);
}
@keyframes wa-float {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-7px); }
}
.whatsapp-float:hover { animation: none; }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE – Tablet (≤1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .radios-grid { grid-template-columns: repeat(2, 1fr); }
  .radio-card--wide { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – Mobile (≤768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--ease);
    border-left: 1px solid var(--border);
    z-index: 1050;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 1rem; }

  .hero-actions { flex-direction: column; align-items: center; }

  .players-grid,
  .radios-grid,
  .services-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }
  .radio-card--wide { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }

  .pack-cta { flex-direction: column; text-align: center; }

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

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

/* ═══════════════════════════════════════════
   RESPONSIVE – Small (≤480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .player-card, .service-card { padding: 20px; }
  .section-header { margin-bottom: 40px; }
}
