@font-face {
  font-family: 'Zalando Sans Expanded';
  src: url('fonts/Zalando_Sans_Expanded/ZalandoSansExpanded-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
}

/* --- Reset & base --- */
*,*::before,*::after { box-sizing: border-box; }
html,body { height: 100%; }
body {
  margin: 0;
  color: #eaeaea;
  background: #0b0b0f;
  font: 400 16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:root{
  --bg:#0b0b0f;
  --card:#11131a;
  --muted:#9ba3af;
  --nav-h:84px;
  --pad:24px;

  /* Gradiente de acento (coincide con index / canvas / hover) */
  --hover-start:#ff4040;
  --hover-end:#8a52ff;
}

/* ================================
   HEADER / NAVBAR (clonado de index)
   ================================ */
.site-header{
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(11,11,15,.45);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

/* Drawer oculto por defecto para evitar “saltos” en tablet */
.drawer{ display: none; }

.nav-wrap{
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 0 32px;
}

.brand{ display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:2px; }
.brand__img{ height: 40px; width:auto; display:block; }

/* Nav (desktop) */
.nav{ display:flex; align-items:center; gap:26px; margin-left:auto; }
.nav a{
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-weight: 600;
  /* igual que index (mantiene altura y tracking) */
  font-size: clamp(0.9rem, 1.0vw, 0.1rem);
  text-transform: uppercase;
  letter-spacing: .05em;

  padding: 12px 14px;
  border-radius: 12px;
  position: relative;
  display: inline-block;
}
/* Subrayado animado */
.nav a::after{
  content:"";
  position:absolute; left:10px; right:10px; bottom:6px; height:2px;
  background: linear-gradient(90deg, var(--hover-start), var(--hover-end));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
}
.nav a:hover::after, .nav a:focus-visible::after{ transform: scaleX(1); }

/* Botón menú con ícono hamburguesa */
.menu-btn{
  /* visibilidad se maneja con media queries existentes */
  margin-left: 20px;
  display: none;

  /* apariencia */
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;

  /* ícono */
  background-image: url('images/hamburguesa.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px; /* ajustá a gusto: 20–26px */

  /* no hay texto visible */
  color: transparent;
}

/* hover/focus accesibles */
.menu-btn:hover{
  filter: brightness(1.1);
  transform: translateY(-1px);
  transition: transform .18s ease, filter .18s ease;
}
.menu-btn:active{
  transform: translateY(0);
  filter: none;
}
.menu-btn:focus-visible{
  outline: 2px solid #3a4150;
  outline-offset: 2px;
}

/* Utilidad opcional si usás <span class="sr-only"> */
.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ===== Breakpoint móvil / tablet ===== */
@media (max-width:900px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }

  .drawer{
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(11,11,15,.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 16px 20px 24px;
    display: none;                 /* se abre con .open */
    flex-direction: column; gap: 6px;
    border-bottom: 1px solid #222;
    z-index: 40;
  }
  .drawer a{ padding: 14px; border-radius: 10px; font-size: 1.05rem; }
  .drawer.open{ display:flex; }
}
/* Forzamos que nunca se “cuele” el drawer en desktop */
@media (min-width:901px){
  .drawer{ display:none !important; }
}

@media (max-width:1200px){ .nav-wrap{ padding: 0 16px; } }
@media (max-width:600px){
  :root { --nav-h: 78px; }
  .brand__img{ height: 34px; }
}

/* ================================
   HERO corto (radios)
   ================================ */
.hero{ position: relative; display:grid; place-items:center; padding-top: var(--nav-h); overflow:hidden; }
.hero--short{ min-height: 42vh; }
@media (max-width:900px){ .hero--short{ min-height: 48vh; } }

canvas#bg{ position:absolute; inset:0; width:100%; height:100%; z-index:0; }
.hero__content{ position:relative; z-index:1; text-align:center; padding:28px var(--pad); }
.title{ font-size: clamp(1.8rem, 6vw, 3.2rem); line-height:1.05; font-weight:800; margin:0 0 8px; }
.subtitle{ max-width: 820px; margin:0 auto; color:#c9ced6; }

/* ================================
   Separadores
   ================================ */
.separator{
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
  margin: 26px auto;
  width: min(92%,1100px);
}
.separator-2{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  margin: 26px auto;
  width: min(92%,1100px);
}

/* ================================
   Logos de radios
   ================================ */
.radio-logo{
  display:flex; justify-content:center; align-items:center;
  margin-bottom:10px;
}
.radio-logo img{
  width: min(280px, 60%);
  height:auto;
  transition: transform .25s ease, opacity .25s ease;
}
.radio-logo img:hover{ transform: scale(1.05); opacity:.9; }

/* ================================
   Contenedor de contenido
   ================================ */
.content{
  background: transparent; color:#eaeaea;
  margin: 0 auto;
  width: min(1200px, 94%);
  padding: 36px 22px 80px;
  box-shadow: none; border: none;
}

/* Card principal de cada radio */
.radio-card{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:16px; padding: 28px 10px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.radio-card:last-child{ border-bottom:0; }

.radio-title{
  margin:0;
  font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  line-height:1.15;
}

/* Miniatura / Iframe YouTube */
.radio-thumb{
  position: relative;
  display:inline-block;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.radio-thumb img{
  width:min(940px, 92vw);
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}
.radio-thumb--embed iframe{
  width:min(940px, 92vw);
  aspect-ratio:16/9;
  height:auto;
  display:block;
  border:0;
}

/* Badge “Ver en YouTube” */
.play-badge{
  position:absolute; right:12px; bottom:12px;
  background: linear-gradient(90deg, var(--hover-start), var(--hover-end));
  color:#fff; font-weight:700; font-size:.9rem;
  padding:8px 12px; border-radius:999px;
  backdrop-filter: saturate(1.1);
  text-decoration:none;
}
.play-badge:hover{ filter: brightness(1.05); }

/* Descripción (texto claro y centrado) */
.radio-desc{
  max-width: 900px;
  margin: 4px auto 6px;
  color: #eaeaea;
  opacity: .9;
}

/* ================================
   Host (foto + bio + redes)
   ================================ */
.host-block{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  width: min(900px, 100%);
  margin: 12px auto 0;
  text-align: left;
}
.host-photo img{
  width:100%; max-width:220px; height:auto; object-fit:cover; border-radius:14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.host-info .host-name{ margin:0 0 6px; font-size:1.2rem; color:#ffffff; }
.host-info .host-bio{ margin:0; color:#ffffff; }

.social{
  margin-top:10px; display:flex; gap:10px; align-items:center; flex-wrap:wrap;
}
.social img{ width:28px; height:28px; display:block; transition: transform .18s ease; }
.social a:hover img{ transform: translateY(-1px) scale(1.05); }

/* ================================
   Responsive internos
   ================================ */
@media (max-width:900px){
  .host-block{ grid-template-columns: 1fr; text-align:left; }
  .host-photo{ justify-self: start; }
}

@media (max-width:600px){
  :root { --nav-h: 78px; }
  .brand__img{ height: 34px; }
  .title{ font-size: clamp(1.6rem, 8vw, 2.6rem); }
  .content{ width: min(1200px, 96%); padding: 28px 16px 64px; }
}

/* ================================
   Scroll y motion
   ================================ */
section { scroll-margin-top: calc(var(--nav-h) + 16px); }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  .no-mr { display:none; }
  html { scroll-behavior: auto; }
  .nav a::after{ transition:none; transform:none; }
}
