*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
p {
  margin: 0;
}

button {
  font-family: inherit;
}

input,
select {
  font-family: inherit;
}

/* Ocultar por completo un elemento (pantallas no activas) */
.is-hidden {
  display: none !important;
}
