/* Simple Slider Styles */

.simple-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.simple-slider {
  position: relative;
  width: 100%;
  height: 600px;
}

.simple-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Transição Fade */
[data-transition="fade"] .simple-slide {
  transform: none;
}

[data-transition="fade"] .simple-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Transição Slide */
[data-transition="slide"] .simple-slide {
  transform: translateX(100%);
  opacity: 1;
  visibility: visible;
  transition: transform 0.8s ease-in-out;
}

[data-transition="slide"] .simple-slide.active {
  transform: translateX(0);
}

[data-transition="slide"] .simple-slide.prev {
  transform: translateX(-100%);
}

/* Conteúdo do Slide */
.simple-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
}

.simple-slide-inner {
  padding: 40px;
}

.simple-slide-title {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 15px auto;
  line-height: 1.2;
}

.simple-slide-subtitle {
  color: #fff;
  font-size: 20px;
  margin: 0 0 25px auto;
  line-height: 1.5;
}

.simple-slide-cta {
  display: inline-block;
  padding: 15px 40px;
  background: #000000;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.simple-slide-cta:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/* Setas de navegação */
.simple-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.simple-slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.simple-slider-prev {
  left: 20px;
}

.simple-slider-next {
  right: 20px;
}

.simple-slider-arrow svg {
  color: #333;
}

/* Dots de navegação */
.simple-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.simple-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.simple-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.simple-slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Responsivo */
@media (max-width: 768px) {
  .simple-slider {
    height: 500px;
  }

  .simple-slide-title {
    font-size: 32px;
  }

  .simple-slide-subtitle {
    font-size: 16px;
  }

  .simple-slide-inner {
    padding: 30px 20px;
  }

  .simple-slide-cta {
    padding: 12px 30px;
    font-size: 16px;
  }

  .simple-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .simple-slider-prev {
    left: 10px;
  }

  .simple-slider-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .simple-slider {
    height: 400px;
  }

  .simple-slide-title {
    font-size: 24px;
  }

  .simple-slide-subtitle {
    font-size: 14px;
  }

  .simple-slide-inner {
    padding: 20px 15px;
  }

  .simple-slide-cta {
    padding: 10px 25px;
    font-size: 14px;
  }
}
