/* ΩMEGA — Page Components (não existe no live, adicionado localmente) */
:root {
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
body { font-family: var(--font-main); line-height: 1.6; overflow-x: clip; }
.ambient-glow, .ambient-glow-right { position: fixed; width: 600px; height: 600px; pointer-events: none; z-index: 0; }
.ambient-glow { background: radial-gradient(circle, rgba(143,163,173,0.05) 0%, transparent 100%); top: -200px; left: -200px; }
.ambient-glow-right { background: radial-gradient(circle, rgba(74,138,106,0.05) 0%, transparent 100%); bottom: -200px; right: -200px; }
@keyframes thermal-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(143,163,173,0.04); }
  50% { box-shadow: 0 0 12px rgba(143,163,173,0.10); }
}
.feature-card, .pricing-card, .gallery-card, .community-card, .testimonial, .lei-item {
  animation: thermal-pulse 5s ease-in-out infinite;
}
