/* O HTML NÃO controla scroll */
html {
  height: auto !important;
  overflow: visible !important;
}

/* O BODY É O ÚNICO SCROLL CONTAINER */
body {
  position: static !important;
  height: auto !important;
  min-height: 200vh !important; /* força scroll para teste */
  overflow-y: auto !important;
  overflow-x: hidden !important;

  touch-action: pan-y !important;
  -webkit-overflow-scrolling: touch !important;
}

/* NENHUM WRAPPER PODE SER FIXO */
body * {
  position: static;
}

/* EXCEÇÕES (permitidas) */
.menu-icon,
.menu-icon + label,
.nav {
  position: fixed !important;
}
/* ===== FIM SCROLL ROOT MOBILE FIX ===== */