/* Freccia di risalita alzata sopra la barra mobile */
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 80px; /* Alzata per non sovrapporsi al menu mobile */
  z-index: 9999;
  display: none;
  width: 40px;
  height: 40px;
  background: #9e9e9e;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background: #084298;
  color: #fff;
}