/* Customizações Nativas e Animações da Home */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

[data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: currentColor;
}

.hero-orb {
  animation: drift 12s ease-in-out infinite;
}

.hero-orb-delayed {
  animation: drift 14s ease-in-out infinite reverse;
}

.lift-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lift-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--brand-shadow-sm);
  border-color: var(--brand-primary-200);
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 10px, 0) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-orb-delayed,
  .lift-card {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}