/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.trust-bar {
  position: relative;
  overflow: hidden;
  background: var(--terracota-medio);
  padding: 1.1rem 0;
  border: none;
  outline: none;
  box-shadow: none;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s var(--easing-expo);
  box-shadow: inset 0 -1px 0 rgba(var(--white-rgb), 0.1);
}

.trust-bar,
.trust-bar *,
.trust-bar *::before,
.trust-bar *::after {
  border: none;
  outline: none;
  box-shadow: none;
}

.trust-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
}

.trust-marquee-track {
  display: flex;
  width: max-content;
  animation: trust-marquee-scroll 30s linear infinite;
}

.trust-bar:hover .trust-marquee-track {
  animation-play-state: paused;
}

.trust-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.trust-item {
  flex-shrink: 0;
  padding-inline: 1.4rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.1vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.trust-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verde-agua);
}

@keyframes trust-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar {
    transition: none !important;
  }

  .trust-marquee-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .trust-item {
    padding-inline: 1.1rem;
  }
}
