/* =======================
   GLOBAL RESET & BASE STYLES
   =======================*/
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Previene scroll horizontal global */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif, sans-serif;
}

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

a {
  text-decoration: none;
  color: inherit;
  /* display: inline-block; */
}

img {
  display: block; /* Elimina gaps en línea */
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

input,
button,
textarea,
select {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
}

/* Específicos de campos de formulario */
[type="text"],
[type="email"],
[type="url"],
[type="password"],
[type="number"],
[type="date"],
[type="search"],
[type="tel"],
[type="time"],
select,
textarea {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: none;
}
