@charset "UTF-8";
/* Reseteamos los margin y paddings de todas las etiquetas */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  /* Evito que elementos Grid y Flex se desborden de su contenedor */
  min-width: 0;
}
/* Evitamos problemas con las images */
img,
picture,
video,
iframe,
figure {
  width: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* Reseteamos los enlaces para funcionar como cajas... */
a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}
/* ... excepto los que se encuentran en párrafos */
p a {
  display: inline;
}
/* Configuramos anclas suaves */
html {
  scroll-behavior: smooth;
}
/* Me aseguro de que el body tenga una altura mínima de 100dvh */
body {
  min-height: 100vh;
}
/* Establezco medidas responsive para h1, h2 y h3 con la función clamp */
h1 {
  line-height: 1;
  /* Balanceo del título */
  text-wrap: balance;
}
h2 {
  line-height: 1;
  /* Balanceo del título */
  text-wrap: balance;
}
h3 {
  line-height: 1;
  /* Balanceo del título */
  text-wrap: balance;
}
/* Desactivamos estilos por defecto de las principales etiquetas de texto */
h4,
h5,
h6,
p,
span,
strong,
blockquote,
i,
b,
u,
em {
  font-size: 1rem;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Evitamos problemas con los pseudoelementos de quotes */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
/* Configuramos el texto que seleccionamos */
::selection {
  background-color: var(--negro);
  color: var(--blanco);
}
/* Reseteamos las tablas */
table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Evitamos problemas con los SVG */
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}
