/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte */
body {
  font-family: 'Inter', sans-serif;
}

/* Menu ativo */
.menu-link.active {
  color: #3b82f6;
  font-weight: bold;
}

/* Transições */
a, button {
  transition: all 0.3s ease-in-out;
}
