:root{
  --ink:#151A12; --paper:#FAF6EE; --paper-2:#F1EAD9; --surface:#FFFFFF;
  --signal:#3B7A34; --signal-bright:#74B84A; --gold:#B98A3E; --rust:#B23A22;
  --line:#E4DCC8; --glow:none;
}
html[data-theme="dark"]{
  --ink:#F3EEE0; --paper:#111611; --paper-2:#1A2117; --surface:#171F16;
  --signal:#59C24A; --signal-bright:#8FE26B; --gold:#E0AA5C; --rust:#E2603E;
  --line:#2A3325; --glow:0 0 30px rgba(89,194,74,.32);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper); color:var(--ink); font-family:'Inter',sans-serif;
  transition:background .35s ease, color .35s ease; overflow-x:hidden;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1220px; margin:0 auto; padding:0 28px;}
section{padding:110px 0;}
.mono{font-family:'Space Mono',monospace;}
.eyebrow{font-family:'Space Mono',monospace; font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--signal);}
.reveal{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* grain overlay */
.grain{
  position:absolute; inset:0; pointer-events:none; opacity:.06; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* TICKER */
.ticker-bar{ background:var(--ink); color:var(--paper); overflow:hidden; position:relative;
  height:36px; display:flex; align-items:center; }
.ticker-track{display:flex; white-space:nowrap; animation:scroll 30s linear infinite;}
.ticker-track span{font-family:'Space Mono',monospace; font-size:12px; padding:0 26px; display:inline-flex; align-items:center; gap:9px;}
.ticker-track span::before{content:"■"; color:var(--gold); font-size:7px;}
@keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.onair-chip{ position:absolute; right:0; top:0; bottom:0; display:flex; align-items:center; gap:8px;
  background:var(--rust); color:#FBF1EA; padding:0 16px; font-family:'Space Mono',monospace; font-size:11px; font-weight:700; letter-spacing:.08em; z-index:2;}
.onair-chip .dot{width:6px; height:6px; border-radius:50%; background:#FBF1EA; animation:pulse 1.3s infinite;}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:.2;}}

/* NAV */
nav{ position:sticky; top:0; z-index:60; background:transparent; border-bottom:1px solid transparent; transition:all .3s ease;}
nav.scrolled{ background:var(--paper); border-bottom-color:var(--line); }
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:20px 28px;}
.wordmark{ font-family:'Big Shoulders Display',sans-serif; font-weight:800; font-size:24px; letter-spacing:.01em;
  text-transform:uppercase; color:var(--nav-color, var(--ink)); display:flex; align-items:center; gap:10px;}
.wordmark img{width:34px; height:34px; border-radius:8px; object-fit:cover;}
.wordmark small{display:block; font-family:'Space Mono',monospace; font-size:9px; letter-spacing:.1em; font-weight:400; opacity:.6; text-transform:none;}
.nav-links{display:flex; gap:36px; align-items:center;}
.nav-links a{font-size:13.5px; font-weight:500; opacity:.85; color:var(--nav-color, var(--ink)); transition:opacity .2s;}
.nav-links a:hover{opacity:1; color:var(--gold);}
.theme-btn{ width:38px; height:38px; border-radius:50%; border:1px solid var(--line); background:var(--surface);
  display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--ink);}
.burger{display:none; cursor:pointer; background:none; border:none; color:var(--nav-color, var(--ink)); font-size:22px;}
.hero-billboard nav{ --nav-color:var(--paper); }

/* HERO BILLBOARD */
.hero-billboard{ background:var(--ink); color:var(--paper); position:relative; overflow:hidden; margin-top:-73px; padding-top:73px; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; object-position:right center; }
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, var(--ink) 0%, var(--ink) 32%, rgba(21,26,18,.55) 55%, transparent 78%);
}
.hero-content{padding:100px 0 170px; position:relative; z-index:2;}
.billboard-type{
  font-family:'Big Shoulders Display',sans-serif; font-weight:800; text-transform:uppercase;
  font-size:clamp(58px,12.5vw,170px); line-height:.83; letter-spacing:-.01em; margin:20px 0 10px;
}
.billboard-type .outline{ color:transparent; -webkit-text-stroke:2px var(--signal-bright); }
.hero-sub{display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-top:36px; flex-wrap:wrap;}
.hero-sub p{font-size:16.5px; line-height:1.6; opacity:.75; max-width:420px;}
.cta-row{display:flex; gap:14px; flex-wrap:wrap;}
.btn{ padding:14px 26px; border-radius:999px; font-weight:600; font-size:14px; cursor:pointer;
  border:1px solid transparent; transition:transform .15s ease, box-shadow .2s ease; font-family:'Inter',sans-serif;}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--signal-bright); color:#0A140A; box-shadow:var(--glow);}
.btn-ghost{background:transparent; border-color:rgba(250,246,238,.3); color:var(--paper);}
.hero-cut{ position:absolute; left:0; right:0; bottom:-2px; height:110px; background:var(--paper);
  clip-path:polygon(0 100%, 100% 35%, 100% 100%); z-index:1;}

/* STATS */
.stats-section{ position:relative; z-index:5; padding-top:0; margin-top:-40px; }
.stats-wrap{
  background:var(--surface); border:1px solid var(--line); border-radius:10px; overflow:hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.35), 0 10px 24px -12px rgba(0,0,0,.25);
}
.stats{display:grid; grid-template-columns:repeat(4,1fr);}
.stat{padding:38px 22px; text-align:center; border-left:1px solid var(--line); transition:transform .2s ease;}
.stat:hover{ transform:translateY(-4px); }
.stat:first-child{border-left:none;}
.stat .num{font-family:'Big Shoulders Display',sans-serif; font-weight:800; font-size:clamp(34px,4vw,50px); color:var(--signal);}
.stat .label{font-family:'Space Mono',monospace; font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; opacity:.55; margin-top:4px;}
.stats-note{font-family:'Space Mono',monospace; font-size:11px; opacity:.45; margin-top:12px; text-align:center;}

/* SERVICIOS ASIMÉTRICOS */
.section-head{max-width:600px; margin-bottom:56px;}
.section-head h2{font-family:'Big Shoulders Display',sans-serif; font-weight:800; text-transform:uppercase;
  font-size:clamp(32px,4.6vw,54px); line-height:.95; margin-top:12px;}
.services-asym{ display:flex; flex-direction:column; gap:24px; }
.services-rest{ display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); gap:20px; }
.feature-service{
  border-radius:8px; overflow:hidden; position:relative; min-height:320px;
  background:var(--ink); color:var(--paper); display:flex; align-items:flex-end; padding:40px;
}
.feature-service .content{ max-width:520px; }
.feature-service .bg-art{position:absolute; inset:0; opacity:.9;}
.feature-service .bg-art img{width:100%; height:100%; object-fit:cover;}
.feature-service .overlay{position:absolute; inset:0; background:linear-gradient(0deg, var(--ink) 10%, transparent 60%);}
.feature-service .content{position:relative; z-index:2;}
.service-tag{font-family:'Space Mono',monospace; font-size:11px; color:var(--gold); letter-spacing:.1em;}
.feature-service h3{font-family:'Big Shoulders Display',sans-serif; font-weight:800; text-transform:uppercase; font-size:38px; margin:10px 0;}
.feature-service p{font-size:14.5px; opacity:.8; line-height:1.6; max-width:360px;}
.service-card{ background:var(--surface); border:1px solid var(--line); border-radius:6px; padding:0;
  display:flex; flex-direction:column; overflow:hidden;}
.service-card > *:not(.service-thumb){ padding-left:30px; padding-right:30px; }
.service-card > .service-tag{ padding-top:28px; }
.service-card > .card-actions{ padding-bottom:28px; margin-top:auto; }
.service-thumb{ aspect-ratio:1/1; width:100%; overflow:hidden; }
.service-thumb img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.service-card h3{font-family:'Big Shoulders Display',sans-serif; font-weight:800; text-transform:uppercase; font-size:26px; margin:10px 0 8px;}
.service-card p{font-size:14px; opacity:.72; line-height:1.6;}
.card-actions{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-top:16px; }
.ver-mas{
  font-family:'Space Mono',monospace; font-size:12px; color:var(--signal); border-bottom:1px solid transparent;
  transition:border-color .2s ease;
}
.ver-mas:hover{ border-color:var(--signal); }
.feature-service .card-actions{ margin-top:18px; }
.feature-service .ver-mas{ color:var(--paper); border-bottom-color:rgba(250,246,238,.4); }

/* RADIO SECTION — rediseño tipo reproductor premium */
.radio-section{background:var(--ink); color:var(--paper); position:relative;}
.radio-head{ max-width:600px; margin:0 auto 48px; text-align:center; position:relative; z-index:2; }
.radio-head h2{font-family:'Inter',sans-serif; font-weight:600; font-size:clamp(26px,3.2vw,38px); line-height:1.15; margin:12px 0 14px;}
.radio-head p{opacity:.68; line-height:1.6; font-size:15px;}

.player-card{
  position:relative; z-index:2; display:grid; grid-template-columns:280px 1fr; gap:0;
  background:#1B2417; border-radius:16px; overflow:hidden;
  box-shadow:0 40px 80px -30px rgba(0,0,0,.5);
}
.play-btn{ width:56px; height:56px; border-radius:50%; background:var(--signal-bright); border:none;
  display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 0 30px rgba(116,184,74,.35);
  transition:transform .15s ease;}
.play-btn:hover{ transform:scale(1.06); }
.play-btn svg{ width:20px; height:20px; fill:#0A140A; }
.player-cover{ position:relative; aspect-ratio:1/1; background:linear-gradient(135deg, var(--signal), var(--ink)); overflow:hidden; }
.player-cover img{ width:100%; height:100%; object-fit:cover; }
.player-cover .cover-play{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(10,20,10,.25); opacity:0; transition:opacity .25s ease; cursor:pointer;
}
.player-cover:hover .cover-play{ opacity:1; }
.player-cover .cover-play .play-btn{ width:80px; height:80px; box-shadow:0 10px 40px rgba(0,0,0,.5); }
.player-cover .cover-play .play-btn svg{ width:28px; height:28px; }

.player-body{ padding:34px 36px; display:flex; flex-direction:column; justify-content:center; gap:20px; color:#F3EEE0; }
.player-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; }
.player-live{ display:flex; align-items:center; gap:7px; font-family:'Space Mono',monospace; font-size:11px; color:var(--rust); font-weight:700; letter-spacing:.08em; }
.player-live .dot{ width:6px; height:6px; border-radius:50%; background:var(--rust); animation:pulse 1.3s infinite; }
.player-title{ font-family:'Big Shoulders Display',sans-serif; font-weight:800; text-transform:uppercase; font-size:clamp(24px,3vw,34px); line-height:1; color:#F3EEE0; }
.player-sub{ font-family:'Space Mono',monospace; font-size:11.5px; opacity:.55; margin-top:4px; letter-spacing:.04em; }

.player-controls{ display:flex; align-items:center; gap:18px; }
.player-controls .play-btn{ width:80px; height:80px; min-width:80px; }
.player-controls .play-btn svg{ width:28px; height:28px; }
.eq{ display:flex; align-items:flex-end; gap:4px; height:28px; }
.eq span{ width:4px; background:var(--signal); border-radius:2px; height:5px; opacity:.5; transition:height .2s; }
.eq.playing span{ animation:bar 0.9s ease-in-out infinite; opacity:1; }
.eq.playing span:nth-child(2){animation-delay:.12s;} .eq.playing span:nth-child(3){animation-delay:.24s;}
.eq.playing span:nth-child(4){animation-delay:.36s;} .eq.playing span:nth-child(5){animation-delay:.48s;}
.eq.playing span:nth-child(6){animation-delay:.6s;} .eq.playing span:nth-child(7){animation-delay:.72s;}
@keyframes bar{0%,100%{height:5px;}50%{height:26px;}}

.player-social{ display:flex; gap:10px; }
.player-social a{ width:34px; height:34px; border-radius:50%; border:1px solid var(--line); display:flex;
  align-items:center; justify-content:center; font-size:11px; font-family:'Space Mono',monospace; opacity:.8;}
.player-social a:hover{ opacity:1; border-color:var(--signal); color:var(--signal); }

.radio-legal{
  max-width:620px; margin:26px auto 0; text-align:center; font-family:'Space Mono',monospace;
  font-size:10.5px; line-height:1.6; opacity:.4; position:relative; z-index:2;
}

/* NOTICIAS */
.sample-badge{ display:inline-block; margin-bottom:24px; font-family:'Space Mono',monospace; font-size:11px;
  padding:6px 12px; border-radius:999px; border:1px dashed var(--line); opacity:.6;}

.news-featured{
  display:grid; grid-template-columns:1.2fr 1fr; gap:0; background:var(--surface); border:1px solid var(--line);
  border-radius:10px; overflow:hidden; margin-bottom:36px; transition:box-shadow .2s ease;
}
.news-featured:hover{ box-shadow:0 30px 60px -30px rgba(0,0,0,.3); }
.news-featured .thumb{ position:relative; aspect-ratio:4/3; overflow:hidden; background:linear-gradient(135deg,var(--signal),var(--paper-2)); }
.news-featured .thumb img{ width:100%; height:100%; object-fit:cover; }
.news-featured .body{ padding:38px; display:flex; flex-direction:column; justify-content:center; }
.news-featured .badge-new{ display:inline-flex; width:fit-content; font-family:'Space Mono',monospace; font-size:10.5px;
  color:var(--rust); border:1px solid var(--rust); border-radius:999px; padding:4px 10px; margin-bottom:12px; letter-spacing:.06em;}
.news-featured h3{ font-family:'Inter',sans-serif; font-weight:700; font-size:clamp(20px,2.4vw,28px); line-height:1.2; margin:8px 0 12px; }
.news-featured p{ font-size:14.5px; opacity:.68; line-height:1.6; }

.news-list{ display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:10px; overflow:hidden; }
.news-row{ display:grid; grid-template-columns:100px 1fr; gap:18px; background:var(--surface); padding:18px; align-items:center; transition:background .2s ease; }
.news-row:hover{ background:var(--paper-2); }
.news-row .thumb{ width:100px; aspect-ratio:1/1; border-radius:6px; overflow:hidden; background:linear-gradient(135deg,var(--signal),var(--paper-2)); position:relative; }
.news-row .thumb img{ width:100%; height:100%; object-fit:cover; }
.news-row h4{ font-family:'Inter',sans-serif; font-weight:600; font-size:15.5px; line-height:1.3; margin:4px 0 4px; }
.news-row p{ font-size:12.5px; opacity:.6; line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

.news-thumb-kicker{
  position:absolute; inset:0; display:flex; align-items:flex-end; justify-content:flex-end; padding:10px;
  font-family:'Big Shoulders Display',sans-serif; font-weight:800; font-size:22px; color:rgba(255,255,255,.5); text-transform:uppercase;
}
.play-badge{
  position:absolute; top:10px; right:10px; width:26px; height:26px; border-radius:50%;
  background:rgba(0,0,0,.55); color:#fff; display:flex; align-items:center; justify-content:center; font-size:11px;
}
.video-badge{
  display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-family:'Space Mono',monospace;
  font-size:11.5px; color:var(--gold); border:1px solid currentColor; border-radius:999px; padding:6px 12px;
}
.news-cat{font-family:'Space Mono',monospace; font-size:10.5px; color:var(--signal); letter-spacing:.08em;}

/* CONTACTO */
.contact-section{background:var(--paper-2);}
.contact-grid{display:grid; grid-template-columns:.85fr 1.15fr; gap:0; background:var(--surface); border:1px solid var(--line);
  border-radius:16px; overflow:hidden; box-shadow:0 40px 80px -35px rgba(0,0,0,.3);}
.contact-info{ background:var(--ink); color:var(--paper); padding:48px 42px; display:flex; flex-direction:column; justify-content:center; }
.contact-info h2{font-family:'Big Shoulders Display',sans-serif; font-weight:800; text-transform:uppercase; font-size:clamp(30px,3.6vw,44px); margin:12px 0 30px;}
.info-line{display:flex; align-items:flex-start; gap:14px; margin-bottom:22px; font-size:14.5px;}
.info-line .ic{ width:36px; height:36px; min-width:36px; border-radius:50%; background:rgba(250,246,238,.08);
  display:flex; align-items:center; justify-content:center; font-size:15px; }
.info-line .k{font-family:'Space Mono',monospace; font-size:10px; opacity:.5; text-transform:uppercase; letter-spacing:.05em; display:block; margin-bottom:2px;}
.contact-form-wrap{ padding:48px 42px; }
.contact-form-wrap .eyebrow{ display:block; margin-bottom:8px; }
.field{margin-bottom:16px;}
.field label{display:block; font-family:'Space Mono',monospace; font-size:11px; margin-bottom:7px; opacity:.6; text-transform:uppercase; letter-spacing:.05em;}
.field input, .field textarea{ width:100%; padding:14px 16px; border-radius:8px; border:1px solid var(--line);
  background:var(--paper); color:var(--ink); font-family:'Inter',sans-serif; font-size:14.5px; transition:border-color .2s ease;}
.field input:focus, .field textarea:focus{outline:none; border-color:var(--signal); box-shadow:0 0 0 3px rgba(59,122,52,.12);}
.form-note{font-family:'Space Mono',monospace; font-size:10.5px; opacity:.5; margin-top:10px;}

footer{border-top:1px solid var(--line); padding:52px 0 100px;}
.footer-grid{display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px; margin-bottom:32px; align-items:center;}
.footer-links{display:flex; gap:26px; flex-wrap:wrap;}
.footer-links a{font-size:12.5px; opacity:.6;}
.footer-links a:hover{opacity:1;}
.footer-bottom{font-family:'Space Mono',monospace; font-size:11px; opacity:.45; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}

/* PERSISTENT RADIO BAR */
.dock-player{
  position:fixed; left:0; right:0; bottom:0; z-index:90; background:var(--ink); color:var(--paper);
  border-top:1px solid rgba(250,246,238,.12); padding:14px 20px; display:flex; align-items:center; gap:18px;
  transform:translateY(120%); transition:transform .4s cubic-bezier(.2,.8,.2,1);
}
.dock-player.show{transform:translateY(0);}
.dock-player .dp-play{ width:44px; height:44px; min-width:44px; border-radius:50%; background:var(--signal-bright);
  border:none; display:flex; align-items:center; justify-content:center; cursor:pointer;}
.dock-player .dp-play svg{width:16px; height:16px; fill:#0A140A;}
.dock-player .dp-info{flex:1; min-width:0;}
.dock-player .dp-station{font-size:13px; font-weight:600;}
.dock-player .dp-live{font-family:'Space Mono',monospace; font-size:10.5px; color:var(--signal-bright); display:flex; align-items:center; gap:6px;}
.dock-player .dp-live .dot{width:5px; height:5px; border-radius:50%; background:var(--signal-bright); animation:pulse 1.3s infinite;}
.dock-player .dp-close{ background:none; border:none; color:var(--paper); opacity:.5; cursor:pointer; font-size:18px; padding:6px;}
.dock-player .dp-close:hover{opacity:1;}

.cookie-banner{
  position:fixed; bottom:18px; left:18px; right:18px; max-width:520px; margin:0 auto;
  background:var(--ink); color:var(--paper); border-radius:10px; padding:18px 20px;
  display:flex; flex-direction:column; gap:12px; z-index:100; box-shadow:0 20px 50px -20px rgba(0,0,0,.5);
  transform:translateY(180%); transition:transform .4s ease;
}

/* CHATBOT */
.chat-bubble{
  position:fixed; right:22px; bottom:96px; z-index:95; width:58px; height:58px; border-radius:50%;
  background:var(--signal); border:none; cursor:pointer; box-shadow:0 14px 34px -10px rgba(0,0,0,.4);
  display:flex; align-items:center; justify-content:center; transition:transform .2s ease;
}
.chat-bubble:hover{ transform:scale(1.06); }
.chat-bubble svg{ width:24px; height:24px; fill:#fff; }
.chat-bubble .chat-close-icon{ display:none; }
.chat-bubble.open .chat-open-icon{ display:none; }
.chat-bubble.open .chat-close-icon{ display:block; }

.chat-panel{
  position:fixed; right:22px; bottom:164px; z-index:95; width:340px; max-width:calc(100vw - 44px);
  max-height:min(520px, 70vh); background:var(--surface); border:1px solid var(--line); border-radius:16px;
  box-shadow:0 30px 70px -20px rgba(0,0,0,.4); display:flex; flex-direction:column; overflow:hidden;
  transform:translateY(16px) scale(.97); opacity:0; pointer-events:none; transition:transform .2s ease, opacity .2s ease;
}
.chat-panel.open{ transform:translateY(0) scale(1); opacity:1; pointer-events:auto; }
.chat-header{ background:var(--ink); color:var(--paper); padding:18px 20px; display:flex; align-items:center; gap:10px; }
.chat-header img{ width:32px; height:32px; border-radius:8px; object-fit:cover; }
.chat-header .title{ font-family:'Big Shoulders Display',sans-serif; font-weight:800; text-transform:uppercase; font-size:15px; }
.chat-header .sub{ font-family:'Space Mono',monospace; font-size:10px; opacity:.6; }
.chat-body{ padding:16px 18px; overflow-y:auto; flex:1; }
.chat-intro{ font-size:13.5px; opacity:.75; line-height:1.5; margin-bottom:14px; }
.chat-faq{ border:1px solid var(--line); border-radius:8px; margin-bottom:8px; overflow:hidden; }
.chat-faq summary{ list-style:none; cursor:pointer; padding:12px 14px; font-size:13px; font-weight:600; display:flex; justify-content:space-between; align-items:center; gap:8px; }
.chat-faq summary::-webkit-details-marker{ display:none; }
.chat-faq summary::after{ content:"+"; font-size:16px; opacity:.5; }
.chat-faq[open] summary::after{ content:"–"; }
.chat-faq p{ padding:0 14px 14px; font-size:12.5px; opacity:.7; line-height:1.55; }
.chat-footer{ padding:14px 18px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:8px; }
.chat-footer a{ text-align:center; padding:11px; border-radius:8px; font-size:13px; font-weight:600; }
.chat-footer .wa{ background:#25D366; color:#fff; }
.chat-footer .cta{ border:1px solid var(--line); color:var(--ink); }

@media(max-width:480px){
  .chat-bubble{ right:16px; bottom:86px; width:52px; height:52px; }
  .chat-panel{ right:12px; bottom:150px; }
}
.cookie-banner.show{transform:translateY(0);}
.cookie-banner p{font-size:12.5px; opacity:.85; line-height:1.5;}
.cookie-actions{display:flex; gap:10px;}
.cookie-actions button{ flex:1; padding:10px; border-radius:4px; border:none; font-size:12px; font-weight:600; cursor:pointer;}
.btn-accept{background:var(--signal-bright); color:#0A140A;}
.btn-decline{background:transparent; color:var(--paper); border:1px solid rgba(255,255,255,.25) !important;}

@media(max-width:860px){
  section{ padding:64px 0; }
  .nav-links{position:fixed; top:64px; left:0; right:0; background:var(--paper); flex-direction:column;
    padding:20px 28px; border-bottom:1px solid var(--line); display:none; gap:18px;}
  .nav-links.open{display:flex;} .nav-links.open a{color:var(--ink);}
  .burger{display:block;}
  .nav-inner{ padding:12px 20px; }
  .wordmark{ font-size:18px; }
  .wordmark img{ width:30px; height:30px; }
  .wordmark small{ font-size:9px; }

  /* HERO */
  .hero-billboard{ margin-top:-64px; padding-top:64px; }
  .hero-content{ padding:56px 0 90px; }
  .billboard-type{ font-size:clamp(38px,15vw,64px); line-height:.95; margin:14px 0 8px; }
  .hero-sub{ margin-top:24px; gap:22px; }
  .hero-sub p{ font-size:14.5px; max-width:100%; }
  .cta-row{ width:100%; }
  .cta-row .btn{ flex:1; justify-content:center; text-align:center; white-space:nowrap; }
  .hero-cut{ height:50px; }
  .wrap{ padding:0 20px; }

  .stats{grid-template-columns:repeat(2,1fr);}
  .stat{ padding:26px 14px; }
  .stat:nth-child(3){border-left:none;}
  .stat .num{ font-size:30px; }

  .section-head h2{ font-size:clamp(26px,7vw,36px); }

  .feature-service{min-height:260px; padding:24px;}
  .service-card > *:not(.service-thumb){ padding-left:22px; padding-right:22px; }

  /* RADIO */
  .radio-head p{ font-size:13.5px; }
  .player-card{grid-template-columns:1fr;}
  .player-cover{aspect-ratio:16/9;}
  .player-body{ padding:24px 22px; gap:16px; }
  .player-top{ flex-wrap:wrap; gap:12px; }
  .player-social{ order:3; }
  .player-controls{ gap:14px; }
  .player-controls .play-btn{ width:60px; height:60px; min-width:60px; }
  .player-controls .play-btn svg{ width:22px; height:22px; }
  .player-cover .cover-play .play-btn{ width:60px; height:60px; }

  /* NOTICIAS */
  .news-featured{grid-template-columns:1fr;}
  .news-featured .body{ padding:24px; }
  .news-row{grid-template-columns:64px 1fr; padding:14px; gap:14px;}
  .news-row .thumb{ width:64px; }
  .news-row h4{ font-size:14.5px; }
  .news-row p{ font-size:12px; -webkit-line-clamp:1; }

  /* CONTACTO */
  .contact-grid{grid-template-columns:1fr;}
  .contact-info, .contact-form-wrap{padding:30px 24px;}
  .contact-info h2{ font-size:28px; }

  .dock-player{padding:12px 16px; gap:12px;}
  .hero-bg::after{ background:linear-gradient(180deg, var(--ink) 30%, rgba(21,26,18,.6) 60%, transparent 90%); }
}

@media(max-width:400px){
  .billboard-type{ font-size:clamp(34px,15vw,48px); }
  .cta-row{ flex-direction:column; }
}
