@keyframes alvor-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.001); transform: scale(1); }
  50% { box-shadow: 0 0 0 10px transparent; transform: scale(1.03); }
}

@keyframes alvor-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-med) ease, transform var(--motion-med) ease;
}

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

/* motion="none": remove qualquer animação/transição/pulso */
body[data-motion="none"] *,
body[data-motion="none"] *::before,
body[data-motion="none"] *::after {
  animation: none !important;
  transition: none !important;
}

body[data-motion="none"] [data-reveal] {
  opacity: 1;
  transform: none;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .btn--urgent { animation: none; }
}
