.navbar {
  justify-content: space-evenly !important;
}

a {
  font-size: 16px !important;
}

/* Camada de bloqueio */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8); /* Leve transparência */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Fica acima de tudo */
  pointer-events: all; /* Bloqueia interações abaixo */
}

/* Quando escondido */
#loading-overlay.hidden {
  display: none;
}
