@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Syne:wght@700;800&family=JetBrains+Mono&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base 1rem = 16px */
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--color-dark-1);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-syne {
  font-family: 'Syne', sans-serif;
  line-height: 1.3;
  padding-bottom: 0.15em; /* Previne corte nas letras com haste para baixo (descenders) da fonte Syne */
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

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

section {
  padding: 100px 0;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
