/* --- FICHEIRO DE ESTILO ISOLADO: FOOTER --- */
.site-footer {
    background-color: #0d0d0f;
    padding: 60px 8% 30px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-brand p {
    color: var(--texto-cinza);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 350px;
}
.footer-links, .footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links h4, .footer-contacts h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--texto-claro);
}
.footer-links a {
    color: var(--texto-cinza);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--rosa-neon);
}
.footer-contacts p {
    color: var(--texto-cinza);
    font-size: 0.9rem;
}
.link-footer-contacto {
    color: var(--texto-cinza);
    text-decoration: none;
    transition: color 0.3s;
}
.link-footer-contacto:hover {
    color: var(--rosa-neon);
}
.discord-tag-texto {
    color: var(--texto-claro);
    font-weight: 600;
}
.footer-legal {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.footer-legal p {
    color: #606065;
    font-size: 0.8rem;
    line-height: 1.5;
}
.footer-legal p:last-child {
    max-width: 500px;
    text-align: right;
}

/* --- RESPONSIVIDADE FOOTER --- */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal p:last-child {
        max-width: 100%;
        text-align: center;
    }
}