body {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

h1, h2, h3 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  font-size: var(--font-size-body-lg);
  line-height: var(--line-height-body);
}

strong {
  font-weight: var(--font-weight-bold);
}

em {
  font-style: italic;
}

/* Utilitários */
.u-text-center {
  text-align: center;
}

.u-max-content {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

.u-color-cta {
  color: var(--color-cta);
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
