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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background-color: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: 0;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding-inline: 24px;
  margin-inline: auto;
}

.container-sm {
  width: 100%;
  max-width: 780px;
  padding-inline: 24px;
  margin-inline: auto;
}

/* Utilitários Visuais */
.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.text-purple { color: var(--color-purple); }
.text-pink { color: var(--color-pink); }
.text-lime { color: var(--color-lime); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
