/* Estilos atualizados para o carrossel de débitos veiculares */
.debitos-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 2rem 0;
}

.debitos-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1200px;
}

.debito-item {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.debito-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.08);
}

.debito-item .icon-debito {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.debito-item h3 {
  color: #ff6600;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.debito-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
  .debitos-carousel {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .debito-item {
    min-width: 200px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .debito-item {
    min-width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .debito-item {
    min-width: 45%;
    max-width: 45%;
  }
}
