
/* ==========================================================
   ALET V7.34 — FIX REAL DEL "MENÚ EXTRA" BLANCO EN MÓVIL
   La regla histórica nav{} afectaba también al nav del footer.
   El footer quedaba absoluto arriba de la página, blanco, con
   sus enlaces blancos: parecía un enorme cuadro vacío.
   ========================================================== */

@media (max-width:1000px){
  /* Sólo el menú principal puede actuar como menú móvil */
  body > header.site-header > nav#nav{
    box-sizing:border-box !important;
  }

  /* El menú del footer permanece exclusivamente dentro del footer */
  body > footer nav.footer-v714-menu,
  footer nav.footer-v714-menu{
    position:static !important;
    top:auto !important;
    right:auto !important;
    bottom:auto !important;
    left:auto !important;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    margin:0 !important;
    padding:0 !important;
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:wrap !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px 18px !important;
    background:transparent !important;
    box-shadow:none !important;
    border:0 !important;
    transform:none !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    z-index:auto !important;
  }

  body > footer nav.footer-v714-menu a,
  footer nav.footer-v714-menu a{
    position:static !important;
    display:inline-block !important;
    width:auto !important;
    padding:0 !important;
    border:0 !important;
    color:#fff !important;
    background:transparent !important;
    transform:none !important;
  }
}
