footer {
    color: var(--footer-text);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 2px solid var(--footer-border);
    font-family: 'Arial', sans-serif;
    background-color: var(--footer-bg);
    box-sizing: border-box;
}

.footer-logo {
    width: 150px;
    margin-right: 20px;
}

.footer-logo img {
    width: 50px;
    height: auto;
}

.footer-text {
    flex: 1;
    text-align: center;
    color: var(--footer-text);
}

.footer-text p {
    margin: 0;
    font-size: 12px;
}

.footer-info-right {
    width: 150px;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, .footer-info-right {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-logo img {
        width: 80px;
    }
}
