/* Fixes de scroll y estados "no scroll" comunes en Safari/iOS */
html,
body {
  height: auto !important;
  min-height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body {
  position: static !important;
}
.no-scroll,
.noscroll,
.is-locked {
  overflow: visible !important;
  position: static !important;
}
