/* QG V6.8.19EL — HOTFIX GLOBAL DE TOUCH/SCROLL
   Objetivo: restaurar rolagem vertical nativa com um dedo em navegadores móveis/PWA.
   Não altera dados, autenticação, XP, missões ou conteúdo. */
@media (hover:none), (pointer:coarse), (max-width:900px){
  html{
    touch-action:pan-y pinch-zoom!important;
    overscroll-behavior-y:auto!important;
    -webkit-text-size-adjust:100%;
  }
  body{
    touch-action:pan-y pinch-zoom!important;
    overscroll-behavior-y:auto!important;
    -webkit-overflow-scrolling:touch!important;
  }
  main,.page,.app,.wrap,.shell,.content,[data-qg-scroll],.qg-scroll{
    touch-action:pan-y pinch-zoom!important;
    -webkit-overflow-scrolling:touch!important;
  }
  /* Controles continuam com resposta de toque rápida sem sequestrar o gesto vertical. */
  button,a[href],[role="button"],input,select,textarea,label{
    touch-action:manipulation!important;
  }
}
