/* ========================================
   RESET CSS
   Archivo: src/css/reset.css
   Descripción: Normaliza estilos entre navegadores
   Ruta desde index.html: ./src/css/reset.css
   
   Elimina márgenes y paddings por defecto
   Establece box-sizing border-box globalmente
========================================= */

/* ============================================
   RESET.CSS - Normalización de estilos
   Versión: 1.0
   ============================================ */

/* Reset universal */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Elementos base */
html {
  scroll-behavior: smooth;
  font-size: 16px; /* 1rem = 16px */
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

/* Reset de elementos comunes */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
}

/* Accesibilidad focus */
:focus-visible {
  outline: 2px solid var(--color-ambar, #f88410);
  outline-offset: 2px;
}
