/* Boton subir al inicio */
#scrollTopButton {
  position: fixed;
  bottom: 52px;   /* Encima del boton menu */
  right: 0px;
  z-index: 1300;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #28a745; /* Verde llamativo */
  color: white;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}

#scrollTopButton:hover {
  background-color: #218838; /* Verde mas oscuro al pasar el mouse */
  transform: scale(1.1);
}

#scrollTopBtn {
  display: none;
}