/* Animação simples de carregamento (spinner) */
.spinner {
    border: 4px solid rgba(0, 0, 0, .1);
    border-left-color: #3b82f6; /* azul-500 */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
