.slider {
  width: 100%;
  height: 100vh; /* 🔥 correcto */
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.slide {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1);
}

.slide.active {
  transform: scale(1);
  opacity: 1;
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.footer-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  display: flex;
  gap: 15px;

  
}

.footer-social img {
  width: 28px;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-social img:hover {
  opacity: 1;
  transform: scale(1.2);
}