/* Animaciones adicionales */

/* Brillo en los botones */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Entrada de los módulos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile {
    animation: fadeInUp 0.8s ease-out;
}

.buttons .button {
    animation: fadeInUp 0.8s ease-out backwards;
}

.buttons .button:nth-child(1) { animation-delay: 0.1s; }
.buttons .button:nth-child(2) { animation-delay: 0.2s; }
.buttons .button:nth-child(3) { animation-delay: 0.3s; }
.buttons .button:nth-child(4) { animation-delay: 0.4s; }
.buttons .button:nth-child(5) { animation-delay: 0.5s; }
.buttons .button:nth-child(6) { animation-delay: 0.6s; }
.buttons .button:nth-child(7) { animation-delay: 0.7s; }