.mav-carousel-section {
  background-color: #ffffff;
  padding: 16px 0;
}

.mav-carousel-wrapper {
  overflow: hidden;
  width: 100vw;
}

.mav-carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-left 120s linear infinite;
  animation-play-state: running; /* 👈 esto es clave */
  padding-left: 20px; /* opcional, margen interior */
}


.mav-carousel-track .service-item {
  flex: 0 0 auto;
  min-width: 200px;
  margin: 0 15px;
  background-color: #f9b700;
  color: #000;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  text-decoration: none;
  transition: transform 0.3s;
}

.mav-carousel-track .service-item:hover {
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Opcional: ajustamos el título visualmente */
h2.cta-text {
  text-align: center;
  margin-bottom: 12px;
}

.mav-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 20px;
}

.mav-footer-col h3.cta-text {
  margin-bottom: 10px;
  font-size: 18px;
}

.mav-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mav-footer-list li {
  margin-bottom: 6px;
}

.mav-footer-list a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.mav-footer-list a:hover {
  text-decoration: underline;
}

