.footer {
    background-color: #00165C;
    padding: 80px 10px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    color: #fff;
    align-items: center;
}
.footer-grid a {
    transition: .3s;
}
.footer-grid a:hover {
    color: #FFB300;
}
.footer1 {
    display: grid;
    justify-items: center;
    gap: 20px;
}
.footer1 .redes {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.footer1 .redes a {
    transition: .3s;
    border-radius: 9px;
    box-shadow: 0px 0px 0px .001px #FFB300 inset;
}
.footer1 .redes a:hover {
    box-shadow: 0px 0px 5px 30px #FFB300 inset;
}

.footer2 {
    display: grid;
    gap: 15px;
    font-size: 1.375rem;
}
.footer2 a {
    max-width: fit-content;
}

.footer3 {
    display: grid;
    gap: 15px;
}
.footer3 a {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1.25rem;
    font-style: italic;
    max-width: fit-content;
}
.footer3 a img {
    transition: .3s;
}
.footer3 a:hover img {
    transform: scale(1.1);
}
.direitos {
    background-color: #fff;
    padding: 20px 10px;
    text-align: center;
    font-size: 1.125rem;
}
@media only screen and (max-width:910px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }
    .footer3 {
        display: grid;
        gap: 15px;
        justify-items: center;
        text-align: center;
    }
    .footer3 a {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        font-size: 1.25rem;
        font-style: italic;
        max-width: fit-content;
    }
    .footer2 {
        display: grid;
        gap: 15px;
        font-size: 1.375rem;
        justify-items: center;
        text-align: center;
    }
}