/* FILE: css/components/footer.css */
.system-status-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 100;
    background: #050507;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* ISSO SEPARA ESQUERDA E DIREITA */
    width: 100%;
    max-width: 1400px;
}

/* Left: LOG */
.system-log {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.system-log::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 5px var(--accent-primary);
    animation: pulse-log 2s infinite;
}

/* Right: TRAY */
.system-tray {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch {
    display: flex;
    gap: 5px;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.lang-opt.active {
    color: var(--accent-primary);
    font-weight: bold;
}

.telemetry-container {
    display: flex;
    gap: 15px;
}

.system-uptime,
.local-time {
    font-family: monospace;
    font-size: 0.7rem;
    color: #c4a0f0;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 8px;
    border-radius: 2px;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.local-time {
    color: #4dff7c;
    border-color: rgba(0, 255, 65, 0.3);
}

@keyframes pulse-log {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        justify-content: center;
    }

    .system-log {
        display: none;
    }

    /* Hide log on mobile to fit */
}
