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

body {
  font-family: var(--font-body);
  background-color: #ffffff;      /* 👈 FONDO BLANCO */
  color: #1a1a1a;                  /* 👈 TEXTO OSCURO */
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-title);
}

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