/* Estilos para el elemento de scroll */
.mouse-al {
  position: absolute;
  width: 26px;
  height: 40px;
  border: 2px solid #a3b75f;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0);
  top: 85%;
  margin: 0 auto;
  left: 0;
  right: 0;
  transition: all .3s;
  z-index: 10;
}

.mouse-al a {
  display: block;
  width: 26px;
  height: 40px;
}

.mouse-al .wheel-al {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: #a3b75f;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  top: 6px;
  left: 0;
  right: 0;
  animation: magic-mouse 1.7s infinite ease;
}

@keyframes magic-mouse {
  0% {
    top: 6px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: 18px;
    opacity: 0;
  }
}

/* Asegurar que las secciones hero tengan posición relativa */
.gif-hero-container .hero-section {
  position: relative;
}