/* Estilo móvil / PWA — safe areas como Ronin */
html, body {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior-y: none;
}

body {
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

html.pwa-standalone body {
  min-height: 100dvh;
}

/* Evita zoom accidental en inputs iOS */
input, textarea, select, button {
  font-size: 16px;
}

@media (max-width: 720px) {
  a, button {
    touch-action: manipulation;
  }
}
