/* ==============================
   Archivo: reset.css
   Ubicación: /assets/css/
   Descripción: Reinicio básico de estilos por defecto del navegador
   ============================== */

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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden; /* 🔒 Previene scroll lateral */
  background-color: #f9f9f9;
  color: #222;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
