.background-clientes {
  margin-bottom: 60px;
  padding: 50px 0 70px;
  background-color: #F9F9F9;
  width: 100%;
}
.container-clientes {
  margin: auto;
  width: 90%;
  max-width: 1400px;
}
.title {
  padding-bottom: 40px;
  width: max-content;
  display: block;
  align-items: center;
  align-self: center;
  margin: auto;
}
.title h1 {
  color: var(--color-2);
  font-size: 36px;
  text-align: center;
}
.title hr {
  width: 110px;
  margin-top: 10px;
  margin-inline: auto;
  border: none;
  height: 2px;
  background: var(--color-1);

  &::after {
    content: "";
    margin-top: 10px;
    height: 2px;
    width: 100%;
  }
}

.container-logos {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-around;
  gap: 8px;
}
.logo_cliente {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s ease;

  &:hover {
    filter: grayscale(0%);
  }
}

@media (width < 750px) {
  .title hr{
    width: 90px;
  }
  .logo_cliente{
    filter: none;
  }
}