/* ═══════════════════════════════════════════════════
   RADIO ANTENA 2000 — style.css
   Paleta: #001E73 | #FFDC00 | #E5E5E5
   Multi-página · Modo oscuro · Animaciones suaves
═══════════════════════════════════════════════════ */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ══ TOKENS ══════════════════════════════════════ */
:root {
  --navy:        #001E73;
  --navy-light:  #0033cc;
  --yellow:      #FFDC00;
  --yellow-dark: #e6c800;
  --gray:        #E5E5E5;

  /* Light mode */
  --bg:          #f3f4f8;
  --bg-alt:      #eaedf4;
  --surface:     #ffffff;
  --surface2:    #f7f8fc;
  --border:      #e0e3ed;
  --text-1:      #0f1123;
  --text-2:      #444c6e;
  --text-3:      #8890a8;
  --shadow:      0 2px 16px rgba(0,30,115,.08);
  --shadow-lg:   0 8px 40px rgba(0,30,115,.13);

  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --transition:  .22s cubic-bezier(.4,0,.2,1);
  --font:        'Inter', 'Segoe UI', Arial, sans-serif;
}

/* Dark mode tokens */
[data-theme="dark"] {
  --bg:        #0b0e1a;
  --bg-alt:    #111525;
  --surface:   #161b2e;
  --surface2:  #1c2235;
  --border:    #252d4a;
  --text-1:    #eef0f8;
  --text-2:    #9aa3c2;
  --text-3:    #5b6588;
  --shadow:    0 2px 16px rgba(0,0,0,.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.45);
}

/* ══ RESET ═══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
button { font-family:var(--font); cursor:pointer; }

/* ══ UTILS ═══════════════════════════════════════ */
.container { max-width:1240px; margin:0 auto; padding:0 1.5rem; }
.section    { padding:4rem 0; }
.bg-alt     { background:var(--bg-alt); }
.w-full     { width:100%; }

/* ══ ANIMATIONS (AOS-like, pure CSS) ════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--transition), transform .55s var(--transition);
}
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* Delay helpers */
[data-aos-delay="80"]  { transition-delay:.08s; }
[data-aos-delay="100"] { transition-delay:.10s; }
[data-aos-delay="150"] { transition-delay:.15s; }
[data-aos-delay="160"] { transition-delay:.16s; }
[data-aos-delay="200"] { transition-delay:.20s; }
[data-aos-delay="240"] { transition-delay:.24s; }
[data-aos-delay="250"] { transition-delay:.25s; }
[data-aos-delay="320"] { transition-delay:.32s; }
[data-aos-delay="400"] { transition-delay:.40s; }

/* ══ NAVBAR ══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition: background var(--transition);
}

[data-theme="dark"] .navbar { background: #090d1a; }

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Logo — muestra versión según tema */
.nav-logo { display:flex; align-items:center; flex-shrink:0; }
.nav-logo img { height:36px; width:auto; }
.logo-dark  { display:none; }

[data-theme="dark"] .logo-light { display:none; }
[data-theme="dark"] .logo-dark  { display:block; }

/* Nav links */
.nav-links { display:flex; gap:.2rem; flex:1; justify-content:center; }
.nav-link {
  color: rgba(255,255,255,.75);
  font-size:.82rem;
  font-weight:500;
  padding:.4rem .7rem;
  border-radius:6px;
  transition: color var(--transition), background var(--transition);
  white-space:nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--yellow);
  background: rgba(255,220,0,.1);
}

/* Nav actions */
.nav-actions { display:flex; align-items:center; gap:.7rem; margin-left:auto; flex-shrink:0; }

/* Mini player */
.mini-player {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,220,0,.2);
  border-radius: 30px;
  padding: .3rem .85rem;
}
.mini-live  { display:flex; align-items:center; gap:.35rem; }
.live-label { color:#ef5350; font-size:.62rem; font-weight:800; letter-spacing:1px; }
.mini-prog  { color:rgba(255,255,255,.75); font-size:.76rem; white-space:nowrap; }

.mini-play-btn {
  width:30px; height:30px;
  background:var(--yellow);
  border:none; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--navy);
  transition: transform var(--transition), background var(--transition);
  flex-shrink:0;
}
.mini-play-btn:hover { background:var(--yellow-dark); transform:scale(1.1); }

/* Wave animation in navbar */
.mini-waves { display:none; align-items:flex-end; gap:2px; height:18px; }
.mini-waves span {
  display:block; width:3px; border-radius:2px;
  background:var(--yellow);
  animation: wv .75s ease-in-out infinite;
}
.mini-waves span:nth-child(1) { animation-delay:.00s; }
.mini-waves span:nth-child(2) { animation-delay:.12s; }
.mini-waves span:nth-child(3) { animation-delay:.24s; }
.mini-waves span:nth-child(4) { animation-delay:.12s; }
.mini-waves span:nth-child(5) { animation-delay:.00s; }
@keyframes wv { 0%,100%{height:3px} 50%{height:16px} }

.vol-slider { width:64px; accent-color:var(--yellow); cursor:pointer; }

/* Theme toggle */
.theme-toggle {
  width:34px; height:34px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem;
  transition: background var(--transition);
}
.theme-toggle:hover { background:rgba(255,220,0,.15); }
.icon-moon { display:none; }
[data-theme="dark"] .icon-sun  { display:none; }
[data-theme="dark"] .icon-moon { display:block; }

/* Hamburger */
.hamburger {
  display:none; flex-direction:column;
  justify-content:center; gap:5px;
  width:34px; height:34px;
  background:none; border:none;
}
.hamburger span {
  display:block; height:2px; width:22px;
  background:#fff; border-radius:2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  flex-direction: column;
  background: #000d2a;
  padding: 1rem 1.5rem 1.5rem;
  gap: .1rem;
}
[data-theme="dark"] .mobile-drawer { background:#070b18; }
.mobile-drawer a {
  color: rgba(255,255,255,.8);
  padding: .7rem .5rem;
  font-size:.95rem;
  border-bottom: .5px solid rgba(255,255,255,.07);
  transition: color var(--transition);
}
.mobile-drawer a:hover { color:var(--yellow); }

/* Pulse dot */
.pulse-dot {
  width:8px; height:8px;
  background:#ef5350; border-radius:50%;
  display:inline-block; flex-shrink:0;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.85)} }

/* ══ HERO ════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 5rem 0 3rem;
}
[data-theme="dark"] .hero { background: #080c1c; }

/* Animated rings */
.hero-bg-anim { position:absolute; inset:0; display:flex; align-items:center; justify-content:flex-end; pointer-events:none; overflow:hidden; }
.ring {
  position:absolute; right:-10%; border-radius:50%;
  border: 1.5px solid rgba(255,220,0,.12);
  animation: expand 6s ease-in-out infinite;
}
.ring-1 { width:420px; height:420px; animation-delay:0s; }
.ring-2 { width:640px; height:640px; animation-delay:1.5s; }
.ring-3 { width:860px; height:860px; animation-delay:3s;  }
@keyframes expand { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.04);opacity:1} }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  position: relative; z-index:1;
}

.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(255,220,0,.12);
  border:1px solid rgba(255,220,0,.25);
  color:var(--yellow);
  font-size:.75rem; font-weight:600;
  padding:.3rem .9rem; border-radius:20px;
  margin-bottom:1rem;
}
.hero h1 {
  font-size:clamp(2.2rem,5vw,3.4rem);
  font-weight:900; line-height:1.1;
  color:#fff; letter-spacing:-1.5px;
  margin-bottom:1rem;
}
.hero h1 em { color:var(--yellow); font-style:normal; }
.hero-sub { color:rgba(255,255,255,.7); font-size:1.05rem; margin-bottom:2rem; max-width:480px; }
.hero-sub strong { color:var(--yellow); }

.hero-ctas { display:flex; gap:1rem; flex-wrap:wrap; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,220,0,.2);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex; flex-direction:column; gap:.7rem;
}
.hcard-top { display:flex; align-items:center; gap:.5rem; color:rgba(255,255,255,.6); font-size:.78rem; }
.hcard-prog { color:#fff; font-size:1.15rem; font-weight:700; }
.hcard-host { color:rgba(255,255,255,.55); font-size:.82rem; }
.hcard-freq { display:flex; gap:.5rem; }
.freq-tag {
  background:rgba(255,220,0,.15); color:var(--yellow);
  border:1px solid rgba(255,220,0,.3);
  font-size:.72rem; font-weight:700;
  padding:.25rem .7rem; border-radius:20px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  position:relative; z-index:1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
}
.stat-item {
  flex:1; text-align:center;
  border-right:1px solid rgba(255,255,255,.1);
  padding:.5rem 1rem;
}
.stat-item:last-child { border-right:none; }
.stat-item strong { display:block; font-size:1.6rem; font-weight:900; color:var(--yellow); }
.stat-item span { font-size:.75rem; color:rgba(255,255,255,.55); }

/* ══ BUTTONS ═════════════════════════════════════ */
.btn-primary {
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--yellow); color:var(--navy);
  font-weight:700; font-size:.9rem;
  padding:.7rem 1.6rem; border-radius:30px;
  border:none; transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(255,220,0,.25);
}
.btn-primary:hover { background:var(--yellow-dark); transform:translateY(-2px); box-shadow:0 6px 22px rgba(255,220,0,.35); }

.btn-ghost {
  display:inline-flex; align-items:center; gap:.5rem;
  background:transparent; color:rgba(255,255,255,.85);
  font-weight:600; font-size:.9rem;
  padding:.7rem 1.6rem; border-radius:30px;
  border:1.5px solid rgba(255,255,255,.3);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color:#fff; color:#fff; }

.btn-outline-navy {
  display:inline-flex; align-items:center; gap:.5rem;
  background:transparent; color:var(--navy);
  font-weight:600; font-size:.88rem;
  padding:.6rem 1.4rem; border-radius:30px;
  border:1.5px solid var(--navy);
  transition: background var(--transition), color var(--transition);
}
.btn-outline-navy:hover { background:var(--navy); color:#fff; }

[data-theme="dark"] .btn-outline-navy { color:var(--yellow); border-color:var(--yellow); }
[data-theme="dark"] .btn-outline-navy:hover { background:var(--yellow); color:var(--navy); }

/* ══ AD SLOTS ════════════════════════════════════ */
.ad-strip { margin:1.2rem auto; }
.ad-lbl { display:block; font-size:.58rem; color:var(--text-3); text-transform:uppercase; letter-spacing:1px; margin-bottom:4px; }
.ad-slot {
  background:var(--surface);
  border:2px dashed var(--border);
  border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-3); font-size:.8rem; text-align:center;
  transition: background var(--transition);
}
.ad-slot.h90  { min-height:70px; padding:1rem; }
.ad-slot.h250 { min-height:220px; padding:1.5rem; flex-direction:column; gap:.4rem; }
.ad-slot.h600 { min-height:520px; padding:1.5rem; flex-direction:column; gap:.4rem; }

/* ══ SECTION HEADERS ═════════════════════════════ */
.section-header {
  display:flex; align-items:center;
  justify-content:space-between;
  margin-bottom:2rem;
}
.section-title { display:flex; align-items:center; gap:.6rem; }
.accent-bar { width:4px; height:26px; background:var(--yellow); border-radius:3px; flex-shrink:0; }
.section-title h2 { font-size:1.3rem; font-weight:800; color:var(--text-1); }
.see-all { font-size:.82rem; font-weight:600; color:var(--navy); transition:color var(--transition); }
.see-all:hover { color:var(--yellow-dark); }
[data-theme="dark"] .see-all { color:var(--yellow); }

/* ══ NEWS GRID ═══════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
.news-card {
  background:var(--surface);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  cursor:pointer;
  transition:transform var(--transition), box-shadow var(--transition);
  border:1px solid var(--border);
}
.news-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.news-card.featured { grid-row:span 2; display:flex; flex-direction:column; }
.news-card.featured .nc-img { height:220px; }

.nc-img {
  height:140px; position:relative;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.nc-img.sm { height:110px; }
.nc-emoji  { font-size:2rem; }
.nc-cat {
  position:absolute; top:10px; left:10px;
  background:var(--yellow); color:var(--navy);
  font-size:.62rem; font-weight:800;
  padding:3px 9px; border-radius:12px; letter-spacing:.5px;
}
.nc-body { padding:.9rem 1.1rem; flex:1; display:flex; flex-direction:column; gap:.4rem; }
.nc-body h3 { font-size:.9rem; font-weight:700; line-height:1.35; color:var(--text-1); }
.nc-excerpt { font-size:.8rem; color:var(--text-2); line-height:1.5; }
.nc-meta { display:flex; gap:.7rem; flex-wrap:wrap; font-size:.68rem; color:var(--text-3); margin-top:auto; }

/* Page news (full noticias.html) */
.news-grid-full {
  display: grid;
  margin-top:15px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

/* ══ SCHEDULE STRIP ══════════════════════════════ */
.schedule-strip {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1rem;
}
.sched-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.2rem 1rem;
  display:flex; flex-direction:column; gap:.3rem;
  transition:transform var(--transition), box-shadow var(--transition);
}
.sched-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.sched-card.active {
  border-color:var(--yellow);
  background:linear-gradient(135deg,var(--navy),#002494);
  color:#fff;
}
.sched-time { font-size:.68rem; font-weight:700; color:var(--yellow); }
.sched-card:not(.active) .sched-time { color:var(--navy); }
[data-theme="dark"] .sched-card:not(.active) .sched-time { color:var(--yellow); }
.sched-name { font-size:.88rem; font-weight:700; }
.sched-host { font-size:.72rem; color:var(--text-3); }
.sched-card.active .sched-host { color:rgba(255,255,255,.6); }
.sched-live-badge {
  margin-top:.4rem; display:inline-block;
  background:#ef5350; color:#fff;
  font-size:.6rem; font-weight:700;
  padding:2px 8px; border-radius:10px; width:fit-content;
}

/* Full schedule table (programacion.html) */
.schedule-table { width:100%; border-collapse:collapse; }
.schedule-table th {
  background:var(--navy); color:var(--yellow);
  font-size:.8rem; padding:.7rem 1rem; text-align:left;
}
.schedule-table td { padding:.75rem 1rem; border-bottom:1px solid var(--border); font-size:.85rem; }
.schedule-table tr:hover td { background:var(--bg-alt); }
.badge-live { background:#ef5350; color:#fff; font-size:.6rem; font-weight:700; padding:2px 7px; border-radius:10px; }

/* ══ BLOG GRID ═══════════════════════════════════ */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.blog-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.4rem;
  display:flex; gap:1rem;
  box-shadow:var(--shadow);
  cursor:pointer;
  transition:transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.blog-icon-wrap {
  width:48px; height:48px; flex-shrink:0;
  background:var(--navy); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem;
}
.blog-content { display:flex; flex-direction:column; gap:.35rem; }
.blog-tag { font-size:.62rem; font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:.5px; }
[data-theme="dark"] .blog-tag { color:var(--yellow); }
.blog-content h4 { font-size:.88rem; font-weight:700; line-height:1.35; }
.blog-content p  { font-size:.78rem; color:var(--text-2); line-height:1.5; }
.read-more { font-size:.75rem; font-weight:600; color:var(--navy); margin-top:auto; }
[data-theme="dark"] .read-more { color:var(--yellow); }
.read-more:hover { text-decoration:underline; }

/* ══ SPONSORS ════════════════════════════════════ */
.sponsors-section { background:var(--navy); padding:1.8rem 0; }
[data-theme="dark"] .sponsors-section { background:#080c1c; border-top:1px solid var(--border); }
.sponsors-label { text-align:center; color:rgba(255,255,255,.45); font-size:.7rem; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:1rem; }
.sponsors-track { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.sponsor-item {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.7);
  padding:.45rem 1.1rem; border-radius:8px;
  font-size:.8rem; font-weight:600;
  cursor:pointer;
  transition:background var(--transition), color var(--transition);
}
.sponsor-item:hover { background:rgba(255,220,0,.15); color:var(--yellow); }

/* ══ FOOTER ══════════════════════════════════════ */
.footer { background:#000d22; padding:3rem 0 0; }
[data-theme="dark"] .footer { background:#040810; }
.footer-inner {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2.5rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand p { color:rgba(255,255,255,.45); font-size:.82rem; line-height:1.7; margin-top:.7rem; }
.footer-logo { height:34px; width:auto; margin-bottom:.3rem; }
.footer-socials { display:flex; gap:.5rem; margin-top:1rem; }
.soc {
  width:32px; height:32px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.7); font-size:.72rem; font-weight:700;
  transition:background var(--transition), color var(--transition);
}
.soc:hover { background:var(--yellow); color:var(--navy); }
.footer-links { display:flex; flex-direction:column; gap:.45rem; }
.footer-links h4 { color:#fff; font-size:.82rem; font-weight:700; margin-bottom:.4rem; }
.footer-links a { color:rgba(255,255,255,.45); font-size:.8rem; transition:color var(--transition); }
.footer-links a:hover { color:var(--yellow); }
.footer-contact h4 { color:#fff; font-size:.82rem; font-weight:700; margin-bottom:.5rem; }
.footer-contact p  { color:rgba(255,255,255,.45); font-size:.8rem; line-height:1.9; }
.footer-bottom { text-align:center; padding:1rem; color:rgba(255,255,255,.25); font-size:.74rem; }
.footer-bottom strong { color:rgba(255,255,255,.5); }

/* ══ PAGE HERO (inner pages) ═════════════════════ */
.page-hero {
  background:var(--navy);
  padding:3rem 0 2.5rem;
  position:relative; overflow:hidden;
}
[data-theme="dark"] .page-hero { background:#080c1c; }
.page-hero::after {
  content:'';
  position:absolute; bottom:0; left:0; right:0; height:60px;
  background:var(--bg);
  clip-path:ellipse(50% 40% at 50% 100%);
}
[data-theme="dark"] .page-hero::after { background:var(--bg); }
.page-hero-inner { position:relative; z-index:1; }
.page-hero h1 { font-size:clamp(1.8rem,4vw,2.6rem); font-weight:900; color:#fff; margin-bottom:.4rem; }
.page-hero p  { color:rgba(255,255,255,.6); font-size:.95rem; }
.breadcrumb { display:flex; gap:.5rem; align-items:center; margin-bottom:.8rem; font-size:.75rem; }
.breadcrumb a { color:rgba(255,255,255,.5); }
.breadcrumb a:hover { color:var(--yellow); }
.breadcrumb span { color:rgba(255,255,255,.3); }
.breadcrumb strong { color:var(--yellow); }

/* ══ SIDEBAR LAYOUT (news, blog) ════════════════ */
.content-sidebar {
  display:grid;
  grid-template-columns:1fr 300px;
  gap:2rem;
  align-items:start;
}
.sidebar { display:flex; flex-direction:column; gap:1.2rem; }
.sidebar-widget {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.2rem;
  box-shadow:var(--shadow);
}
.widget-title {
  font-size:.85rem; font-weight:700;
  color:var(--text-1);
  padding-bottom:.55rem;
  border-bottom:2px solid var(--yellow);
  margin-bottom:.8rem;
}

/* ══ TEAM GRID (equipo.html) ════════════════════ */
.team-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:1.5rem;
}
.team-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.6rem 1rem;
  text-align:center;
  box-shadow:var(--shadow);
  transition:transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.team-avatar img {
  width:125px; height:125px;
  background:var(--navy);
  border-radius:50%;
  margin:0 auto 1rem;
  display:flex; align-items:center; justify-content:center;
  font-size:3rem;
  border:3px solid var(--yellow);
}

.team-card h3 { font-size:.95rem; font-weight:700; margin-bottom:.25rem; }
.team-card .role { font-size:.78rem; color:var(--yellow); font-weight:600; margin-bottom:.5rem; }
[data-theme="dark"] .team-card .role { color:var(--yellow); }
.team-card .bio  { font-size:.76rem; color:var(--text-2); line-height:1.5; }
.team-prog { margin-top:.7rem; font-size:.7rem; color:var(--text-3); }
.team-prog strong { color:var(--navy); font-weight:700; }
[data-theme="dark"] .team-prog strong { color:var(--yellow); }

/* ══ CLASIFICADOS ════════════════════════════════ */
.clas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.2rem; }
.clas-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.2rem;
  box-shadow:var(--shadow);
  display:flex; flex-direction:column; gap:.5rem;
  transition:transform var(--transition);
}
.clas-card:hover { transform:translateY(-3px); }
.clas-badge {
  display:inline-block;
  background:var(--yellow); color:var(--navy);
  font-size:.62rem; font-weight:800;
  padding:3px 10px; border-radius:12px;
  letter-spacing:.5px; width:fit-content;
}
.clas-badge.empleo  { background:#4caf50; color:#fff; }
.clas-badge.alquiler{ background:#2196f3; color:#fff; }
.clas-badge.servicio{ background:#9c27b0; color:#fff; }
.clas-card h4 { font-size:.9rem; font-weight:700; }
.clas-card p  { font-size:.8rem; color:var(--text-2); line-height:1.5; }
.clas-card .clas-meta { font-size:.72rem; color:var(--text-3); display:flex; gap:.8rem; flex-wrap:wrap; margin-top:auto; }
.clas-filters { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:1.5rem; }
.clas-filter {
  background:var(--surface); border:1.5px solid var(--border);
  color:var(--text-2); padding:6px 14px;
  border-radius:20px; font-size:.78rem; cursor:pointer;
  transition:background var(--transition), color var(--transition), border-color var(--transition);
}
.clas-filter.active, .clas-filter:hover { background:var(--navy); color:#fff; border-color:var(--navy); }
[data-theme="dark"] .clas-filter.active { background:var(--yellow); color:var(--navy); border-color:var(--yellow); }

/* ══ CONTACT FORM ════════════════════════════════ */
.contact-grid {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:3rem;
  align-items:start;
}
.contact-info h2 { font-size:1.5rem; font-weight:800; margin-bottom:.5rem; }
.contact-info p   { color:var(--text-2); margin-bottom:1.5rem; font-size:.9rem; }
.contact-details  { display:flex; flex-direction:column; gap:.8rem; }
.contact-item { display:flex; align-items:center; gap:.8rem; }
.c-icon {
  width:36px; height:36px; flex-shrink:0;
  background:var(--navy); color:var(--yellow);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  font-size:1rem;
}
[data-theme="dark"] .c-icon { background:rgba(255,220,0,.1); }
.contact-item span { font-size:.88rem; color:var(--text-2); }
.social-row { display:flex; gap:.5rem; margin-top:1.2rem; }
.soc-dark {
  width:36px; height:36px;
  background:var(--navy); color:#fff;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:700;
  transition:background var(--transition), transform var(--transition);
}
.soc-dark:hover { background:var(--yellow); color:var(--navy); transform:scale(1.1); }

.form-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2rem;
  box-shadow:var(--shadow-lg);
}
.form-group { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1rem; }
.form-group label { font-size:.8rem; font-weight:600; color:var(--text-2); }
.form-group input,
.form-group textarea,
.form-group select {
  background:var(--bg);
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  padding:.65rem .9rem;
  font-size:.9rem; color:var(--text-1);
  font-family:var(--font);
  outline:none;
  transition:border-color var(--transition), box-shadow var(--transition);
  width:100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color:var(--navy);
  box-shadow:0 0 0 3px rgba(0,30,115,.1);
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
  border-color:var(--yellow);
  box-shadow:0 0 0 3px rgba(255,220,0,.1);
}
.form-group textarea { resize:vertical; min-height:110px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-submit {
  background:var(--navy); color:#fff;
  font-size:.95rem; font-weight:700;
  padding:.8rem; width:100%; border:none;
  border-radius:var(--radius-sm);
  transition:background var(--transition), transform var(--transition);
}
.form-submit:hover { background:#002494; transform:translateY(-1px); }

/* ══ FILTERS / TAGS ══════════════════════════════ */
.filters-bar { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:1.8rem; }
.filter-pill {
  background:var(--surface); border:1.5px solid var(--border);
  color:var(--text-2); padding:6px 14px;
  border-radius:20px; font-size:.78rem; cursor:pointer;
  transition:all var(--transition);
}
.filter-pill.active, .filter-pill:hover { background:var(--navy); color:#fff; border-color:var(--navy); }
[data-theme="dark"] .filter-pill.active { background:var(--yellow); color:var(--navy); border-color:var(--yellow); }

/* ══ RESPONSIVE ══════════════════════════════════ */
@media (max-width:1024px) {
  .mini-prog, .vol-slider { display:none; }
  .schedule-strip { grid-template-columns:repeat(3,1fr); }
  .footer-inner  { grid-template-columns:1fr 1fr; gap:2rem; }
  .blog-grid     { grid-template-columns:1fr 1fr; }
  .news-grid-full{ grid-template-columns:1fr 1fr; }
}
@media (max-width:860px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero-inner { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .hero-stats { flex-wrap:wrap; }
  .stat-item  { flex:1 0 40%; border-right:none; border-bottom:1px solid rgba(255,255,255,.1); }
  .news-grid  { grid-template-columns:1fr; }
  .news-card.featured { display:block; }
  .schedule-strip { grid-template-columns:1fr 1fr; }
  .content-sidebar { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .blog-grid   { grid-template-columns:1fr; }
  .news-grid-full { grid-template-columns:1fr; }
  .blog-card   { flex-direction:column; }
}
@media (max-width:540px) {
  .mini-player { display:none; }
  .schedule-strip { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr 1fr; }
}

/* ══ BARRA DE CLIMA ══════════════════════════════ */
.weather-bar {
  background: #060a16;
  border-bottom: 1px solid rgba(255,220,0,.15);
  padding: .45rem 0;
  font-size: .78rem;
  position: sticky;
  top: 64px;
  z-index: 490;
  transition: background var(--transition);
}

[data-theme="dark"] .weather-bar {
  background: #060a16;
  border-bottom-color: rgba(255,220,0,.1);
}

.weather-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.weather-city {
  color: var(--yellow);
  font-weight: 700;
  font-size: .75rem;
  flex-shrink: 0;
}

.weather-data {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}

.weather-loading {
  color: rgba(255,255,255,.4);
  font-size: .73rem;
}

.weather-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  white-space: nowrap;
}

.weather-item strong { color:#fff; font-weight:700; }
.weather-icon { font-size:.95rem; }
.weather-divider { width:1px; height:14px; background:rgba(255,255,255,.15); flex-shrink:0; }
.weather-credit { color:rgba(255,255,255,.25); font-size:.62rem; margin-left:auto; flex-shrink:0; }
.weather-alert {
  background: rgba(255,220,0,.12);
  border: 1px solid rgba(255,220,0,.25);
  color: var(--yellow);
  font-size: .7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Clases para ocultar en móvil */
.weather-hide-mobile { display:flex; }

/* ── Tablet ── */
@media (max-width:1024px) {
  .weather-credit { display:none; }
}

/* ── Móvil — solo temp, sensación y condición ── */
@media (max-width:768px) {
  .weather-hide-mobile { display:none !important; }
  .weather-divider      { display:none; }
  .weather-credit       { display:none; }
  .weather-data         { gap:.8rem; }
  .weather-city         { font-size:.7rem; }
  .weather-item         { font-size:.72rem; }
}