/* styles/base.css — resets globais e base do documento */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  background: #ffffff;
  font-family:
    "Manrope",
    -apple-system,
    system-ui,
    sans-serif;
}
::selection {
  background: var(--accent, #2563ff);
  color: #fff;
}
