/* Efeitos leves para reforcar profundidade sem exagero visual. */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.feature-card:nth-child(2) {
  transition-delay: 60ms;
}

.feature-card:nth-child(3) {
  transition-delay: 120ms;
}

.feature-card:nth-child(4) {
  transition-delay: 180ms;
}

.status-badge span {
  animation: pulseStatus 1800ms ease-in-out infinite;
}

@keyframes pulseStatus {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(23, 138, 75, 0.10);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(23, 138, 75, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
