.promo-vehicle {
  background: linear-gradient(135deg, #f0e9a5, #fbbf24);
  padding: 60px 20px;
}

.promo-link {
    display: block;
    text-decoration: none;
    color: inherit;
}


.promo-container {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  width: 90%;

  cursor: pointer;
  transition: 
    transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out,
    background 0.4s ease-in-out;
    
  animation: promoPulse 2s ease-in-out infinite;
  background: linear-gradient(145deg, #0f1f3a, #020617);

}

/* Pequena animação pulsante inicial */
@keyframes promoPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.01); }
  100% { transform: scale(1); }
}

/* Efeito hover / foco */
.promo-link:hover .promo-container,
.promo-link:focus-visible .promo-container {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.35);
}

.promo-cta {
  margin-top: 14px;
  font-size: 1.05rem;
  color: #fbbf24;
  font-weight: 500;
  transition: color 0.4s ease-in-out;
}



.promo-container::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.promo-text {
  z-index: 2;
  max-width: 500px;
}

.promo-badge {
  background: #fbbf24;
  color: #111827;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}

.promo-text h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.promo-text p {
  color: #cbd5f5;
  font-size: 1rem;
  font-weight: 300;
}

.promo-image img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}


@media (max-width: 768px) {
  .promo-container {
    animation: none;
  }

  .promo-container {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
    width: unset;
  }

  .promo-text {
    max-width: 100%;
  }

  .promo-text h2 {
    font-size: 1.9rem;
  }

  .promo-image img {
    max-width: 300px;
    margin-top: 25px;
  }
}
