.footer-liste {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 0 20px 0;
    color: var(--text-main);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h2 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--accent);
}

.link-group a {
    display: block;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: 0.3s;
    opacity: 0.8;
}

.link-group a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 1.4rem;
    transition: 0.3s;
}

.social-icons a:hover i {
    transform: translateY(-3px);
}

/* Linha Final */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .footer-links {
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}