/* Footer Simplificado - Sempre embaixo */
.footer {
    background: #2c3e50;
    color: white;
    padding: 1.5rem 2rem;
    margin-left: 260px;
    width: calc(100% - 260px);
    position: relative;
    clear: both;
    display: block;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #ecf0f1;
}

.footer-left i {
    color: var(--accent-color);
    font-size: 1.125rem;
}

.footer-right {
    font-size: 0.875rem;
    color: #ecf0f1;
}

.footer-right i {
    color: var(--danger-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        margin-left: 0;
        width: 100%;
        padding: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        font-size: 0.75rem;
    }
}
