.cards-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
  }
  
  .cards-1 .containerr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    width: 100%;
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .cards-1 .card {
    flex: 1 1 calc(25% - 30px); /* 4 por linha com gap */
    max-width: calc(25% - 30px);
    min-width: 260px;
    height: 440px;
    position: relative;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
                inset -5px -5px 15px rgba(255, 255, 255, 0.1),
                5px 5px 15px rgba(0, 0, 0, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: 0.5s;
  }
  
  .card .box {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #2a2b2f;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
  }
  
  .card .box:hover {
    transform: translateY(-20px);
  }
  
  .card .box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
  }
  
  .card .box .content {
    padding: 20px;
    text-align: center;
  }
  
  .card .box .content h2 {
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
  }
  
  .card .box .content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 20px;
    transition: 0.5s;
  }
  
  .card .box .content p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    transition: 0.5s;
    margin-bottom: -60px;
  }
  

  


  .cards-1 .cards-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
    text-align: center;
  }
  
  .cards-1 .departments-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
  }
  
  /* Responsividade opcional */
  @media (max-width: 1024px) {
    .cards-1 .card {
      flex: 1 1 calc(50% - 30px);
      max-width: calc(50% - 30px);
    }
  }
  
  @media (max-width: 600px) {
    .cards-1 .card {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  







.clientes-title {
  text-align: center;
  margin-bottom: 80px;
}
.clientes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centraliza os cards */
  gap: 2rem; /* espaço entre eles */
  padding: 0;
  list-style: none;
}




.clients {
  padding: 20px 0;
  overflow: hidden; /* evita quebra visual */
}

.logo-track {
  display: flex;
  gap: 20px;
  animation: scroll-logos 25s linear infinite;
  width: max-content;
}

.client-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width:440px;
}

.client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
}

.client-logo img:hover {
  filter: none;
  opacity: 1;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pausar animação no hover */
.logo-track:hover {
  animation-play-state: paused;
}


    .fixed-icon {
        position: fixed;
        bottom: 20px;
        right: 10px;
        width: 60px;
        height: 60px;
        background: linear-gradient(-135deg, #49d100, #292929);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: rgb(242, 242, 242);
        font-size: 24px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 1000;
    }

    .fixed-icon:hover {
        background: linear-gradient(-135deg, #292929, #49d100);
    }

    .card img {
      transition: transform 1s ease; /* Adiciona o efeito de transição suave */
  }

  .card:hover img {
      transform: scale(1.1); /* Zoom suave ao passar o mouse sobre a imagem */
  }