/* ═══════════════════════════════════════════════════════════════════════════
   Ópera de Morelia — FASE X · Densidad editorial
   Band "próxima temporada" (futuro vivo) + mosaico "una década en imágenes"
   ═══════════════════════════════════════════════════════════════════════════ */

/* ──────────── BAND · PRÓXIMA TEMPORADA ──────────── */
.opm-next{
  background: #000;
  border-top: 1px solid rgba(189,176,157,0.14);
  border-bottom: 1px solid rgba(189,176,157,0.14);
  padding: 22px 0 !important;
}
.opm-next-inner{
  max-width: var(--ds-container, 1180px);
  margin: 0 auto;
  padding: 0 var(--ds-gutter, clamp(24px, 5vw, 64px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.opm-next-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CDB284;
  box-shadow: 0 0 0 0 rgba(205,178,132,0.5);
  animation: opmNextPulse 2.4s cubic-bezier(.4,0,.6,1) infinite;
  flex: 0 0 auto;
}
@keyframes opmNextPulse{
  0%{ box-shadow: 0 0 0 0 rgba(205,178,132,0.45); }
  60%{ box-shadow: 0 0 0 9px rgba(205,178,132,0); }
  100%{ box-shadow: 0 0 0 0 rgba(205,178,132,0); }
}
.opm-next-label{
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.opm-next-cta{
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #BDB09D;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, gap .25s ease;
}
.opm-next-cta:hover{
  color: #F2EDE2;
  gap: 12px;
}

/* ──────────── MOSAICO · UNA DÉCADA EN IMÁGENES ──────────── */
.opm-decade-grid{
  columns: 3;
  column-gap: 20px;
  max-width: 1132px;
  margin: clamp(40px, 6vh, 56px) auto 0;
}
.opm-decade-item{
  break-inside: avoid;
  margin: 0 0 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #101013;
}
.opm-decade-item img{
  display: block;
  width: 100%;
  height: auto;
  transition: filter .45s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.opm-decade-item:hover img{
  filter: brightness(1.08) saturate(1.05);
  transform: scale(1.02);
}
.opm-decade-item figcaption{
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 980px;
  pointer-events: none;
}
.opm-decade-more{
  text-align: center;
  margin-top: clamp(32px, 5vh, 48px);
}

@media (max-width: 960px){
  .opm-decade-grid{ columns: 2; column-gap: 14px; }
  .opm-decade-item{ margin-bottom: 14px; }
}
@media (max-width: 560px){
  .opm-next-inner{ gap: 10px; }
  .opm-next-label{ font-size: 13px; }
  .opm-next-cta{ font-size: 13px; }
}

/* ──────────── REDUCED MOTION ──────────── */
@media (prefers-reduced-motion: reduce){
  .opm-next-dot{ animation: none; }
  .opm-decade-item img{ transition: none; }
  .opm-decade-item:hover img{ transform: none; }
}
