/*
 * ===============================================
 * RESET CSS - Boulangeri
 * ===============================================
 * Normalización y reset de estilos del navegador
 * para conseguir consistencia entre navegadores
 * ===============================================
 */

/* === BOX SIZING === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === HTML Y BODY === */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.5;
  font-family: var(--font-family);
  color: var(--color-gray-900);
  background-color: var(--color-white);
}

/* === TIPOGRAFÍA === */
/*h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}*/

p {
  margin: 0;
}

/* === ENLACES === */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  text-decoration: none;
}

/* === LISTAS === */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* === IMÁGENES === */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* === BOTONES === */
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

button:focus {
  outline: none;
}

/* === FORMULARIOS === */
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* === TABLAS === */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* === OTROS === */
hr {
  border: 0;
  border-top: 1px solid var(--color-gray-200);
  margin: 0;
}

/* === SELECCIÓN DE TEXTO === */
::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}
