.mvt-main-contact {
  background: var(--bg-body);
  padding: 80px 0;
  color: var(--text-main);
}

.mvt-wrapper-1300 {
  max-width: 1300px;
  margin: 0 auto;
  width: 95%;
}

/* FAQ */
.mvt-faq-section {
  margin-bottom: 80px;
}

.mvt-faq-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 40px;
}

.mvt-faq-item {
  background: var(--bg-card);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mvt-faq-header {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.mvt-faq-header.active {
  background: var(--mvt-green);
  color: white;
}

.mvt-faq-header i {
  transition: transform 0.3s ease;
}

.mvt-faq-header.active i {
  transform: rotate(135deg);
}

.mvt-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-card);
}

.mvt-faq-content p {
  padding: 25px;
  line-height: 1.6;
  margin: 0;
}

/* Estilos Coreográficos del Área de Animación Técnica */
.mvt-faq-visual-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  width: 100%;
  overflow: hidden;
}

.mvt-tech-circle-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 3px dashed var(--mvt-green);
  border-radius: 50%;
  opacity: 0.25;
  animation: mvtSpin 25s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvt-tech-circle-bg::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  border: 1px double var(--mvt-green);
  border-radius: 50%;
  opacity: 0.4;
}

.mvt-vehicle-png {
  position: relative;
  max-width: 90%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  animation: mvtFloat 6s ease-in-out infinite;
}

@keyframes mvtSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes mvtFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 991px) {
  .mvt-faq-visual-container {
    min-height: 320px;
    margin-top: 30px;
  }
  .mvt-tech-circle-bg {
    width: 280px;
    height: 280px;
  }
}
