/* Fuente global */
body {
  font-family: 'Lato', 'Work Sans', sans-serif;
}

/* Sección pantalla completa */
.is-fullscreen {
  min-height: 100vh;
}

/* Imagen con bordes redondeados */
.is-rounded-md {
  border-radius: 15px;
}

/* Ocultar visualmente pero accesible (label oculto) */
.is-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Input numérico sin flechas (WebKit) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Input numérico sin flechas (Firefox) */
input[type="number"] {
  -moz-appearance: textfield;
}
