/* Updated: 2026-02-03 */
/* Exportadoras section - marquee of partner logos (Ban8 reference) */
.exportadoras-section {
  width: 100%;
  background: #f5f8fd;
  padding: 64px 0 72px;
}

.exportadoras-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 20px;
}

.exportadoras-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0b4bb3;
  font-weight: 700;
  margin: 0;
}

.exportadoras-section .section-title {
  color: #0b1f3f;
  margin: 4px 0 8px;
  text-align: center;
}

.exportadoras-section .section-title .highlight {
  color: #0b4bb3;
}

.exportadoras-section .section-text {
  max-width: 880px;
  margin: 0 auto 20px;
  color: #4b5563;
  text-align: center;
}

/* Slider container */
.exportadoras-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 18px 0;
}

.exportadoras-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: exportadoras-marquee 40s linear infinite;
}

.exportadoras-track:hover {
  animation-play-state: paused;
}

.export-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;
}

.export-logo img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
}

.export-logo:hover {
  transform: translateY(-4px);
}

@keyframes exportadoras-marquee {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0%); }
}

@media (max-width: 900px) {
  .exportadoras-track {
    gap: 24px;
    animation-duration: 32s;
  }
  .export-logo {
    width: 160px;
    height: 88px;
  }
  .exportadoras-section {
    padding: 56px 16px 64px;
  }
}

@media (max-width: 600px) {
  .exportadoras-track {
    gap: 18px;
    animation-duration: 26s;
  }
  .export-logo {
    width: 140px;
    height: 80px;
  }
}
