/* ============================================
   DTA S.A. - Animaciones Mínimas
   Solo animaciones sutiles y profesionales
   ============================================ */

/* Fade In Simple */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth Scroll */
html.smooth-scroll {
    scroll-behavior: smooth;
}

/* Pulse Glow - Nueva División */
@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(184, 232, 0, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 40px rgba(184, 232, 0, 0.8), 0 0 60px rgba(184, 232, 0, 0.4);
        transform: scale(1.02);
    }
}

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