/* Oculta somente o indicador visual de rolagem nas páginas públicas touch. */
@media (hover:none) and (pointer:coarse) {
  html,
  body,
  body * {
    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  body *::-webkit-scrollbar {
    display:none;
    width:0;
    height:0;
  }
}
