/**
 * iOS Safari: evita zoom automático ao focar campos
 * (Safari dá zoom quando font-size do input é < 16px).
 */
@media screen and (max-width: 991.98px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]),
  select,
  textarea,
  .form-control,
  .form-select,
  .form-control-sm,
  .form-select-sm,
  .custom-select,
  .select2-container .select2-selection--single,
  .select2-container .select2-selection--multiple,
  .select2-container .select2-search__field,
  .flatpickr-input,
  .ts-control,
  .ts-control input {
    font-size: 16px !important;
  }
}
