/* Fontes Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Comportamento de rolagem suave para links âncora */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utilitário para garantir que a seleção de texto siga a cor da marca */
::selection {
  background-color: #f43f5e; /* Brand Accent */
  color: white;
}