/* ========================================
   Footer Compartilhado - ZEG Biogás
   ======================================== */

.app-footer {
    padding: 1.5rem 2rem;
    background:  rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid #2a3444;
    position: relative;
    z-index: 100;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #333080;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-copyright {
    color: #201e5f;
    font-size: 0.8125rem;
    margin: 0;
}

.footer-copyright span {
    color: #f05f45;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 640px) {
    .app-footer {
        padding: 1.25rem 1rem;
    }

    .footer-link {
        font-size: 0.8125rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}