/* ========== ESTILOS GLOBALES ========== */
html {
  scroll-behavior: smooth;
}

.underline-accent {
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* ========== CARRUSEL INFINITO DE LOGOS ========== */
@keyframes logo-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-carousel-track {
  animation: logo-carousel 25s linear infinite !important;
  will-change: transform;
}

.logo-carousel-track:hover {
  animation-play-state: paused !important;
}
