footer {
    width: 100vw;
    height: auto;
    background-color: #000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

footer .link {
    width: 25vw;
    min-width: 200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 10px;
}

footer .link a p {
    font-size: 20px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

footer .link a p:hover {
    color: var(--accent-color-lighten);
}

footer .legal {
    text-align: right;
    flex: 1;
    min-width: 200px;
}

footer .legal h3 {
    font-size: 15px;
    color: #808080;
}

/* 📱 Mobile e tablet (max 768px) */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    footer .link {
        width: 100%;
        justify-content: center;
    }

    footer .legal {
        text-align: center;
    }
}