/* =========================================================
   BASE.CSS – estilos globales y reset
   ========================================================= */

/* Reset simple y normalización */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Tipografía base */
html {
  font-size: 16px; /* Base de 16px */
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* Imágenes y medios */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Enlaces */
a {
  text-decoration: none;
  color: inherit;
}

/* Listas */
ul,
ol {
  list-style: none;
}

/* Botones y inputs */
button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* Contenedores */
.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}
