/* ====== Forzar UNA sola barra de navegación ====== */
/* Oculta todas por defecto… */
.nav, header .nav, .mini-nav, .subnav, .nav-inline, .floating-header { display:none !important; }
/* …y muestra únicamente la PRIMERA que cuelga directo del body */
body > .nav:first-of-type { display:flex !important; }

/* Si alguna “copiada” quedó dentro del contenido, se oculta sí o sí */
main .nav, header .nav, .form .nav, .container .nav:not(:first-of-type) { display:none !important; }

/* Evitar que el nav tape cosas en móvil */
@media (max-width: 768px){
  .hero { padding-top: 16px; }
}

/* ====== Video YouTube responsivo (Estrenos) ====== */
.video-wrap, .video-wrapper{
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px;
}
.video-wrap iframe, .video-wrapper iframe{
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
}
