/* Estilos para o carrossel de serviços */
.services-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.services-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.services-carousel .service-card {
  min-width: calc(33.333% - 20px);
  flex: 0 0 auto;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 18px;
}

.carousel-arrow:hover {
  background-color: var(--dark-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 184, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Responsividade do carrossel */
@media screen and (max-width: 992px) {
  .services-carousel .service-card {
    min-width: calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .services-carousel .service-card {
    min-width: calc(100% - 20px);
  }
}
