.container-footer {
    background-color: #00233f;
    padding: 96px 64px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-title {
    font-family: Barlow-Regular;
    font-size: 48px;
    color: white;
    margin: 0 0 48px;
    line-height: 1;
}

.footer-info {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-info>a {
    color: white;
    text-align: right;
}

.footer-contact {
    font-family: Barlow-Regular;
}

.footer-contact>a {
    color: white;
    font-size: 13px;
}

.footer-redes {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.footer-redes>a {
    display: flex;
    align-items: center;
    color: #ECA500;
}

.footer-redes>a>img {
    padding-right: 8px;
    width: 30px;
}



@media screen and (max-width: 1018px) {

    .container-footer {
        padding: 64px 32px;
    }

    .footer-title {
        font-size: 32px;
        text-align: center;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 32px;
    }

    .footer-contact>a {
        text-align: center;
        width: 100%;
        flex: none;
        display: block;
        color: white;
        font-size: 13px;
    }

    .footer-info>a {
        margin-top: 16px;
        text-align: center !important;
    }
}