/* =========================
  0) INTER (LOCAL – WOFF2)
========================= */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* =========================
   1) VARIABLES / RESET
========================= */
:root {
  --bg: #121212;
  --panel: #181818;
  --panel2: #202020;
  --panel3: #262626;
  --line: rgba(255, 255, 255, 0.12);

  --txt: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.5);

  --accent: #1DB954;
  --accent-press: #1AA34A;
  --accent-soft: rgba(29, 185, 84, 0.15);

  --radius: 999px;
  --radius-lg: 999px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  --neon-glow: 0 0 10px rgba(29, 185, 84, 0.7);

  --masthead-offset: 86px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--txt);
  letter-spacing: -0.01em;
  font-size: 16px;
}

/* FIX OVERFLOW (evita banda lateral) */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.muted {
  color: var(--muted);
}

.highlight {
  color: var(--accent);
}

/* =========================
   2) TIPOGRAFÍA / UTIL
========================= */
.h1 {
  font-size: clamp(64px, 7.8vw, 132px);
  line-height: 0.92;
  margin: 10px 0 10px;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.h2 {
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.02em;
}

.lead {
  display: flex;
  max-width: 75ch;
  margin: 10px;
  line-height: 1.6;
  font-size: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.eyebrow {
  margin: 0;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
}

/* =========================
   3) MAIN WRAP
========================= */
.main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px 0 10px;
  border-radius: 16px;
}

/* =========================
   4) HEADER / NAV
========================= */
.masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(14px);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  max-width: 1200px;
  margin: 0px auto;
  padding: 14px 18px;
}

.masthead__brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand__name {
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
}

.masthead__nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--accent);
  color: #000;
}

.btn--primary:hover {
  background: #22c55e;
  box-shadow:
    0 0 0 6px rgba(29, 185, 84, 0.14),
    0 16px 36px rgba(0, 0, 0, 0.40);
}

.btn--primary:active {
  background: var(--accent-press);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--sm {
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================
   4.5) SCROLL PROGRESS ✅ (añadido)
========================= */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1000;
  pointer-events: none;
}

.progress__bar {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: var(--accent);
}

/* =========================
   5) TICKER (GSAP)
========================= */
.ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ticker__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  padding: 10px 0;
  will-change: transform;

  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
}

/* =========================
   6) HERO
========================= */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 25px;
  width: 100%;
  margin: auto;
  padding-bottom: 25px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 44px;
  align-items: center;
}

.hero__right {
  justify-self: end;
  display: grid;
  padding-bottom: 15px;
  gap: 15px;
}

.hero__stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(24, 24, 24, 0.70);
  padding: 20px 20px;
  text-align: center;
}

.stat__label {
  display: block;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
}

.stat__value {
  display: block;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 24px;
  margin-top: 6px;
}

.hero__cta {
  margin-top: 18px;
  padding-bottom: 15px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__left,
  .hero__right {
    text-align: center;
  }

  .lead {
    justify-self: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__right {
    justify-self: center;
    width: 100%;
    max-width: 520px;
    justify-items: center;
  }

  .hero__stat {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   7) INPUTS
========================= */
.input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(24, 24, 24, 0.92);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  font: inherit;
  font-size: 15px;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.input:focus {
  border-color: rgba(29, 185, 84, 0.55);
  box-shadow: 0 0 0 6px rgba(29, 185, 84, 0.12);
}

/* =========================
   8) SECCIONES / FILTROS
========================= */
.section {
  padding: 5px 0;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 75px;
  margin: 18px 0px;
  padding: 0px;
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.filters {
  position: static;
  z-index: 20;

  display: grid;
  grid-template-columns: 1.6fr 1fr .8fr .8fr auto;
  gap: 14px;

  margin-bottom: 18px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.40);
}

@media (max-width: 900px) {
  .filters {
    grid-template-columns: 1fr 1fr;
  }

  #clearFilters {
    grid-column: 1 / -1;
  }
}

/* =========================
   9) LAYOUT
========================= */
.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.layout>* {
  position: relative;
  z-index: 2;
}

/* =========================
   10) SESIONES (Cards)
========================= */
.posters {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(18, 18, 18, 0.62);
  backdrop-filter: blur(8px);
  padding: 18px;
  box-shadow: var(--shadow);
}

.posters__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.poster {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: var(--panel);
  overflow: hidden;

  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: stretch;

  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .poster:hover {
    background: var(--panel2);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  }
}

.poster.is-playing {
  background: var(--panel2);
  border-color: rgba(29, 185, 84, 0.65);
  box-shadow:
    0 0 0 5px rgba(29, 185, 84, 0.18),
    0 18px 44px rgba(0, 0, 0, 0.55);
}

.poster__media {
  height: 100%;
  min-height: 250px;
  position: relative;
  background: #0e0e0f;
}

.poster__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(0.98) contrast(1.06);
}

.poster__body {
  padding: 22px;
}

.poster__head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.poster__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 20px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.poster__meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.badge {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 9px 12px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.18);
}

.badge--new {
  background: var(--accent);
  border-color: rgba(29, 185, 84, 0.35);
  color: rgba(0, 0, 0, 0.92);
}

.poster__bottom {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.poster__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.poster__actions .btn--primary:hover {
  box-shadow:
    0 0 0 6px rgba(29, 185, 84, 0.12),
    0 16px 36px rgba(0, 0, 0, 0.40);
}

.poster__notes {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.poster::after {
  display: none !important;
  content: none !important;
}

/* =========================
   10.5) PLAYER CUSTOM
========================= */
.poster__audio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.player {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  padding: 12px 12px;
}

.player__row {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto auto;
  gap: 10px;
  align-items: center;
}

.player__btn {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.95);
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.player__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.player__btn:active {
  transform: translateY(0);
}

.player__btn--play {
  background: var(--accent);
  color: #000;
}

.player__btn--play:hover {
  background: #22c55e;
  box-shadow:
    0 0 0 6px rgba(29, 185, 84, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.35);
}

.player__time {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.70);
  min-width: 46px;
  text-align: center;
}

.player__seek,
.player__vol {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  outline: none;
  cursor: pointer;
}

.player__seek {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) var(--p, 0%), rgba(255, 255, 255, 0.14) var(--p, 0%));
}

.player__vol {
  width: 110px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) var(--v, 80%), rgba(255, 255, 255, 0.14) var(--v, 80%));
}

.player__seek::-webkit-slider-thumb,
.player__vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.player__seek::-moz-range-thumb,
.player__vol::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.player__seek::-moz-range-track,
.player__vol::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.icon {
  width: 25px;
  height: 25px;
  display: block;
}

/* Responsive player */
@media (max-width: 900px) {
  .hero {
    gap: 10px;
    padding-bottom: 0px;
  }

  .poster {
    grid-template-columns: 1fr;
  }

  .poster__media {
    min-height: 240px;
  }

  .poster__body {
    padding: 18px;
    text-align: center;
  }

  .poster__actions {
    justify-content: center;
  }

  .poster__head {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .player__row {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    grid-template-areas:
      "play . cur dur"
      "seek seek seek seek"
      "mute vol vol vol";
    justify-items: end;
    align-items: center;
    gap: 15px;
  }

  .player__btn--play {
    grid-area: play;
  }

  .player__time--cur {
    grid-area: cur;
  }

  .player__time--dur {
    grid-area: dur;
  }

  .player__seek {
    grid-area: seek;
  }

  .player__btn--mute {
    grid-area: mute;
    border-radius: 12px;
  }

  .player__vol {
    grid-area: vol;
    width: 80%;
  }

  .poster:hover {
    background: var(--panel);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }
}

/* =========================
   11) CONTACTO + FOOTER
========================= */
/* ✅ Unificada: antes estaba duplicada */
.section--tight {
  padding-top: 10px;
  /* mantenemos tu intención original */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-items: center;
}

.contact__big {
  margin: 0;
  font-weight: 900;
  font-size: 1.2em;
  letter-spacing: -0.02em;
  color: var(--accent);
  /* ✅ suaviza el hover */
  transition: all 180ms ease;
}

.contact__big:hover {
  color: #22c55e;
  transform: scale(1.15);
}

@media (max-width: 600px) {
  .contact {
    padding: 0px 15px 0px 15px;
  }

  .contact__big {
    font-size: 1.1em;
  }
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  margin-bottom: 18px;
  color: var(--txt);
  font-size: 13px;
  text-align: center;
}

/* =========================
   13) TOAST
========================= */
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;

  background: rgba(24, 24, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 16px;

  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================
   MODAL SESIONES (Spotify-like)
========================= */
.sessions-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.sessions-modal.is-open {
  pointer-events: auto;
}

.sessions-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
}

.sessions-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, calc(100% - 32px));
  transform: translate(-50%, -46%);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  opacity: 0;
}

.sessions-modal__text {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.sessions-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
}

.sessions-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* =========================
   RESPONSIVE (<400px) ✅ unificado
========================= */
@media (max-width: 400px) {
  :root {
    --masthead-offset: 110px;
  }

  .masthead__inner {
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .masthead__nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }

  .masthead__nav .btn {
    padding: 9px 12px;
    font-size: 12px;
  }

  .brand__name {
    font-size: 14px;
  }

  .hero__grid {
    padding: 0 12px;
  }

  .h1 {
    font-size: clamp(54px, 10vw, 64px);
    line-height: 0.95;
  }

  .filters {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #clearFilters {
    width: 100%;
  }
}

/* =========================
   BOTON TOP
========================= */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent);
  color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  background: #22c55e;
  box-shadow:
    0 0 0 6px rgba(29, 185, 84, 0.14),
    0 16px 36px rgba(0, 0, 0, 0.40);
  transform: scale(1.1);
}

.scroll-to-top:focus {
  outline: none;
}

@media (max-width: 600px) {
  .scroll-to-top {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 15px;
    right: 15px;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 900px) {
  .hero__bg {
    background-attachment: scroll;
  }
}

/* =========================================================
   LEGAL PAGES (Aviso legal / Privacidad)
========================================================= */
.legal-page {
  padding-top: calc(var(--masthead-offset) + 24px);
  padding-bottom: 48px;
}

.legal-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}

.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(18, 18, 18, 0.62);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 22px;
}

.legal-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-title {
  margin: 0;
}

.legal-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.legal-section {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(24, 24, 24, 0.55);
}

.legal-h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.legal-p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.legal-p+.legal-p {
  margin-top: 10px;
}

.legal-list {
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.legal-footer {
  margin-top: 18px;
  text-align: center;
  color: var(--muted2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   BG LAYER (HOME + LEGAL PAGES)
========================================================= */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image: url("../img/hero1920x1080-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0%;

  opacity: 0.30;
  filter: blur(4px);
  transform: translate3d(0, 0, 0) scale(1.12);
}

/* Asegura capas correctas */
.masthead {
  z-index: 30;
  position: sticky;
}

.hero,
.main,
.legal-page,
#contact,
.footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .bg-layer,
  .ticker {
    display: none;
  }

  .masthead,
  .filters,
  .posters,
  .sessions-modal__overlay,
  .legal-card {
    backdrop-filter: none !important;
  }

  * {
    box-shadow: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
