.clients {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
  }
  
  .section-title {
    font-size: 40px;
    margin-bottom: 50px;
    text-transform: uppercase;
  }
  
  .client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .client-logo {
    width: calc((100% - 60px) / 4); /* ajustar o número 4 para definir a quantidade de logos por linha */
    height: 140px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
  }
  
  
  .client-logo img {
    max-width: 100%;
    max-height: 100%;
    transition: filter 0.3s ease-in-out;

  }
  
  @media (max-width: 768px) {
    .client-logo {
      margin-bottom: 30px;
      width: calc((100% - 40px) / 2); /* ajustar o número 2 para definir a quantidade de logos por linha em dispositivos menores */
    }
  }

  