.scroll-top-custom {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 95px !important; /* Se cambia de 15px a 75px (15 + 80) */
  z-index: 99999;
  background-color: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
  font-size: 1.2em;
}

.scroll-top-custom.active {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

/* También es buena práctica eliminar la línea en el estado de hover y focus */
.scroll-top-custom:hover,
.scroll-top-custom:focus {
  background-color: var(--accent-color);
  outline: none;
  box-shadow: none; /* <-- Esto también puede causar líneas o sombras */
}