/* Custom CSS for pure-react-carousel - Sem source maps problemáticos */
.carousel {
  position: relative;
  outline: none;
}

.carousel * {
  box-sizing: border-box;
}

.carousel__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.carousel__slider-tray {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
}

.carousel__slide {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.carousel__dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  padding: 0;
  background-color: #ccc;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel__dot--selected {
  background-color: #04159e;
}

.carousel__dot:hover:not(.carousel__dot--selected) {
  background-color: #999;
}

.carousel__dot:focus {
  outline: 2px solid #04159e;
  outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel__dots {
    margin: 15px 0 0 0;
  }
  
  .carousel__dot {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }
}