/* Importando fonte Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

/* Configurações Globais */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* Customização da Barra de Rolagem (Webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #005491; /* Primary color */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #003d6b; /* Primary dark */
}

/* Ajustes finos para garantir que o menu mobile fique sobre tudo */
#mobile-menu {
  z-index: 9999;
}
