.footer {
    padding: 80px 10px;
}
.branco {
    background-color: #F2F2F2;
    color: #0A2239;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    justify-items: center;
    align-items: start;
}
.f-1, .f-2 {
    display: grid;
    gap: 20px;
}
.f-1 h4, .f-2 h4 {
    font-size: 1.25rem;
    font-weight: 700;
} 
.f-1 div {
    display: grid;
    gap: 12px;
    font-size: 1.25rem;
}
.f-1 a {
    max-width: fit-content;
}
.f-1 a:hover {
    color: #BA8409;
}
.f-2 div {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.f-2 div a {
    max-width: fit-content;
    min-width: fit-content;
    flex: 1;
}
.f-2 .cont svg path {
    transition: .3s;
}
.f-2 .cont:hover svg path {
    fill: #BA8409;
}

.f-3 {
    max-width: fit-content;
}

@media only screen and (max-width:660px) {

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
        align-items: start;
        text-align: center;
    }
    .f-1 div {
        justify-items: center;
    }
}

.direitos {
    text-align: center;
    padding: 10px;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
}
.direitos a:hover {
    color: #BA8409;
}

