/*
 * Mundo de Nombres – Header inteligente v1.1.0
 * Modo Viads Curtain
 *
 * El tema usa .mdn-header { position: sticky; top: 0; }.
 * Con Curtain eso hace que el header intente quedarse pegado sobre la zona
 * publicitaria/reveal. Para Curtain queremos el comportamiento natural:
 * - el anuncio puede ocupar/revelar la parte superior sin ser tapado;
 * - el header aparece cuando el usuario llega físicamente a la web;
 * - al seguir bajando, el header se desplaza con el documento;
 * - al volver a subir, reaparece solo cuando se alcanza su posición real.
 */

html body .mdn-header {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    translate: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
}

/* Neutraliza cualquier clase que haya podido quedar de las versiones 1.0.x. */
html body .mdn-header.mdn-smart-header,
html body .mdn-header.mdn-header--hidden,
html body .mdn-header.mdn-header--visible {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    translate: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
    animation: none !important;
}

/* Los sentinels antiguos no participan en el layout si quedaran en caché. */
.mdn-header-sentinel {
    display: none !important;
}
