/* Mantém a rolagem por toque, mas não exibe a barra em telas móveis. */
@media (max-width: 767px) {
  html,
  body {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

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

  /* O projeto também possui um indicador de rolagem customizado. */
  .custom-scrollbar-track {
    display: none !important;
  }
}
