#go-to-top {
  /* Posicionamiento y diseño */
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(52, 58, 64, 0.5); /* Color semitransparente: negro con 50% de opacidad */
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  
  /* Transición para efectos suaves */
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.5s ease;
  
  /* Oculto por defecto */
  opacity: 0;
  visibility: hidden;
}

#go-to-top:hover {
  background-color: rgba(52, 58, 64, 0.8); /* Más opaco al pasar el mouse */
  transform: translateY(-5px);
}