.slider-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.5s;
}

.slider {
  display: flex;
  width: calc(100vw * 3);
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  width: 100vw;
  height: 100%;
  padding: 120px 5% 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  align-items: flex-start;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}

.slide h1 {
  font-size: 3.2em;
  margin-bottom: 25px;
  line-height: 1.2;
  max-width: 80%;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInRight 0.8s ease forwards 1s;
}

.slide p {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 80%;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInRight 0.8s ease forwards 1.2s;
}

.btn {
  padding: 14px 40px;
  background: #f7931d;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 1.4s;
}

.slider-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 1.6s;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(0);
  animation: dotPop 0.3s ease forwards;
}


.dot:nth-child(1) { animation-delay: 1.8s; }
.dot:nth-child(2) { animation-delay: 1.9s; }
.dot:nth-child(3) { animation-delay: 2s; }

.dot.active {
  background: #f7931d;
  border-color: #fff;
  transform: scale(1.3);
}

/* Animación entre slides */
.slide:not(.active) h1,
.slide:not(.active) p,
.slide:not(.active) .btn {
  opacity: 0 !important;
  transform: translateX(50px) !important;
  transition: all 0.6s ease !important;
}