/* Updated: 2026-02-03 */
/* Clientes section - marquee of partner logos */
.clientes-section {
  width: 100%;
  background: linear-gradient(135deg, rgba(60, 36, 21, 0.98) 0%, rgba(45, 27, 16, 0.98) 100%);
  background-attachment: scroll; /* Disable parallax to avoid edge artifacts */
  padding: 64px 20px 72px;
}

.clientes-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.clientes-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a445;
  font-weight: 700;
  margin: 0;
}

.clientes-section .section-title {
  color: #fff;
  margin: 4px 0 8px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.clientes-section .section-title .highlight {
  color: #d4a445;
}

.clientes-section .section-text {
  max-width: 880px;
  margin: 0 auto 20px;
  color: #e8e8e8;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

/* Slider container */
.clientes-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 18px 0;
}

.clientes-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: clientes-marquee 40s linear infinite;
}

.clientes-track:hover {
  animation-play-state: paused;
}

.cliente-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.25s ease;
  overflow: visible;
}

.cliente-logo img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
}

.cliente-logo:hover {
  transform: translateY(-4px);
}

@keyframes clientes-marquee {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0%); }
}

@media (max-width: 900px) {
  .clientes-track {
    gap: 24px;
    animation-duration: 32s;
  }
  .cliente-logo {
    width: 160px;
    height: 88px;
  }
  .clientes-section {
    padding: 56px 16px 64px;
  }
}

@media (max-width: 600px) {
  .clientes-track {
    gap: 18px;
    animation-duration: 26s;
  }
  .cliente-logo {
    width: 120px;
    height: 72px;
  }
  
  .cliente-logo img {
    max-width: 100px;
    max-height: 50px;
