/* Carrossel de Parceiros */
.carousel-container {
  width: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.carousel-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  gap: 20px;
  scroll-behavior: smooth;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px !important;
}

.carousel-slide {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background: white;
  border-radius: 12px;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide.no-padding {
  padding: 0;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.carousel-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-logo.cover {
  object-fit: cover;
}

.carousel-button {
  background-color: #2a5a48;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
  z-index: 10;
}

.carousel-button:hover {
  background-color: #1f4635;
  transform: scale(1.1);
}

.carousel-button:active {
  transform: scale(0.95);
}

.carousel-button.prev {
  order: -1;
}

.carousel-button.next {
  order: 1;
}

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

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator:hover {
  background-color: #999;
}

.indicator.active {
  background-color: #2a5a48;
  transform: scale(1.2);
}

/* Responsivo para tablets */
@media (max-width: 768px) {
  .carousel-container {
    padding: 30px 15px;
    margin-bottom: 60px;
  }

  .carousel-slide {
    flex: 0 0 150px;
    height: 55px;
    padding: 8px;
    overflow: hidden;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Responsivo para smartphones */
@media (max-width: 480px) {
  .carousel-container {
    padding: 20px 10px;
    margin-bottom: 60px;
  }

  .carousel-wrapper {
    gap: 10px;
  }

  .carousel-track {
    gap: 10px;
  }

  .carousel-slide {
    flex: 0 0 120px;
    height: 45px;
    padding: 6px;
    overflow: hidden;
  }

  .carousel-button {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
