/* FORSÉNTICO — Clientes */

#clientes .clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8rem 2.5rem;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 2.5rem auto 0;
}

#clientes .client-logo {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 120px;
  padding: 1rem;

  background: #ffffff;

  border: 1px solid rgba(39, 93, 225, 0.16);
  border-radius: 14px;

  box-shadow:
    0 8px 24px rgba(6, 25, 86, 0.05);

  overflow: hidden;
}

#clientes .client-logo img {
  display: block;
  width: auto;
  max-width: 5cm;
  max-height: 88px;
  height: auto;
  object-fit: contain;
}

#clientes .client-logo--linkbg {
  grid-column: 2 / span 2;
  width: calc(50% - 1.25rem);
  justify-self: center;
}

@media (max-width: 980px) {
  #clientes .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#clientes .client-logo-img--impocali {
  max-width: 6.2cm;
  max-height: 105px;
}
@media (max-width: 700px) {

  #clientes .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  #clientes .client-logo {
    height: 110px;
    padding: 0.85rem;
  }

  #clientes .client-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 72px;
    object-fit: contain;
  }

  #clientes .client-logo--linkbg {
    grid-column: 1 / -1;
    width: calc((100% - 1.25rem) / 2);
    justify-self: center;
  }
}
#clientes .client-logo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 42px;
  height: 42px;

  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(39, 93, 225, 0.10) 50%
  );

  pointer-events: none;
}
#clientes .clients-heading p {
  margin-top: 1rem;
  max-width: 820px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  color: #061956;
}
#clientes .clients-confidentiality {
  max-width: 780px;
  margin: 2.2rem auto 0;

  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 600;
  font-style: italic;
  text-align: center;

  color: #061956;
}