.sectionClient {
  display: flex;
  width: 100%;
  padding: 20px 0;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden; /* Agregado para prevenir el overflow horizontal */
}

.client {
  color: #333;
  font-family: "Roboto Flex";
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

h3 > span {
  color: #00accd;
}

.line {
  width: 153px;
  height: 7px;
  background: #333;
}

.carrusel {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.carrusel-items {
  display: flex;
  padding: 30px 0;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; /* Agregado para un desplazamiento suave en dispositivos móviles */
  scrollbar-width: none; /* Ocultar scrollbar en Firefox */
}

.carrusel-items::-webkit-scrollbar {
  display: none; /* Ocultar scrollbar en Webkit (Chrome, Safari) */
}

.carrusel-item {
  flex: 0 0 auto;
  min-width: 250px;
  max-width: 250px;
  height: 250px;
  margin: 0 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carrusel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carrusel-item:hover {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .client {
    font-size: 32px;
  }

  .carrusel-item {
    min-width: 120px;
    max-width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .client {
    font-size: 28px;
  }

  .carrusel-item {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .client {
    font-size: 24px;
  }

  .carrusel-item {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
  }
}
