/* iOS: evita zoom ao focar inputs (mantém 16px) */
@supports (-webkit-touch-callout: none) {
  input,
  select,
  textarea,
  .form-control,
  .input-group-text {
    font-size: 16px !important;
    line-height: 1.4;
  }

  /* Inputs específicos que o iOS teima em reduzir */
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"],
  input[type="number"],
  input[type="email"],
  input[type="tel"] {
    font-size: 16px !important;
  }
}

/* Opcional: melhora cliques em iOS */
button,
a,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}
