/* 
 * Micro-interações e Animações
 */

/* Scroll Reveal orgânico (substitui o Animate.css + Waypoints) */
.fade-up-init {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-up-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Micro-interação em Botões */
.btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease !important;
}
.btn:active {
    transform: scale(0.95);
}

/* Redes Sociais "Salto" */
.aside-social a {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease !important;
    display: inline-block;
}
.aside-social a:hover {
    transform: translateY(-4px) scale(1.1);
}

/* Hover em Cards de Serviço */
.services {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.dark-theme .services:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
