.setor10 {
  background-color: #fff;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  padding-bottom: 0;
}

.setor10-titulo {
  font-size: 20px;
  font-weight: 300;
  color: #6a6a6a;
  margin-bottom: 10px;
  text-align: center;
}

.setor10-carrossel {
  height: 60px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1200px;
}

/* Slide com 13 imagens duplicadas e largura dinâmica */
.setor10-slide {
  display: flex;
  width: max-content;
  animation: setor10-deslizar 35s linear infinite;
}

/* Imagens com espaçamento e efeito em tons de cinza */
.setor10-slide img {
  height: 60px;
  margin: 0 30px;
  vertical-align: middle;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.setor10-slide img:hover {
  filter: grayscale(0%);
}

/* Animação contínua até a metade (13 imagens) */
@keyframes setor10-deslizar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsividade para tablets e celulares */
@media (max-width: 768px) {
  .setor10 {
    height: auto;
    padding: 20px 10px;
  }

  .setor10-titulo {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .setor10-carrossel {
    height: 50px;
  }

  .setor10-slide img {
    height: 40px;
    margin: 0 20px;
  }
}
