/* Carousel Styles */

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f0f0f0;
  /* border-radius: 8px; */
}

.carousel-slides {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
}

.carousel-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: fill;
  display: block;
}

/* Botões de navegação */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3090CE;
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  z-index: 10;
  font-weight: bold;
  user-select: none;
}

.carousel-btn:hover {
  background: #58D841;
}

.carousel-btn-prev {
  left: 16px;
}

.carousel-btn-next {
  right: 16px;
}

/* Indicadores (dots) */
.carousel-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsivo */
@media (max-width: 768px) {
  .carousel-btn {
    padding: 10px 14px;
    font-size: 16px;
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }

  .carousel-indicators {
    bottom: 12px;
    gap: 8px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .carousel-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .carousel-indicators {
    bottom: 10px;
    gap: 6px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }
}