footer {
    background-color: var(--claro);
    width: 100%;
    margin: auto;
    margin-top: 0;
    padding: 50px 0 100px 0;
}

.separador {
    width: 100%;
    height: 1px;
    background-color: var(--morado);
    opacity: 0.1;
    margin: 50px 0;
}

.footer__section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.footer__section_img {
    width: 145px;
    padding-bottom: 30px;
}

.footer__section_img img {
    width: 100%;
}

.footer__section_menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer__section_link h2 {
    color: var(--morado);
    font-size: 32px;
    margin: 40px 0;
}

.footer__section_link a {
    color: var(--amarillo);
    text-decoration: none;
    transition: all 300ms ease-in-out;
}

.footer__section_link a:hover {
    color: var(--azulclaro);
}

.footer__section_menu ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.footer__section_menu li {
    font-family: avenir_nb;
    list-style: none;
    padding: 0 20px;
    text-transform: uppercase;
}

.footer__section_menu li a {
    text-decoration: none;
    font-size: 16px;
    transition: all 300ms ease-in-out;
}

.footer__section_menu li a:hover {
    color: var(--azulclaro);
}

.footer_section_2 {
    display: flex;
    flex-direction: column;
}

.redes {
    width: 45%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.redes a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.redes i {
    margin: auto;
    width: 45px;
    height: 45px;
    font-size: 20px;
    color: white;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redes i::before {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: all 100ms ease-in-out;
    background-color: var(--morado);
    border-radius: 50%;
    text-align: center;
}

.redes a:hover i::before {
    width: 45px;
    height: 45px;
    font-size: 25;
    background-color: var(--morado2);
}

.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-sharp,
.fa-solid,
.fab,
.far,
.fas {
    display: flex;
}

.final {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.final p {
    margin: 0;
}

.final a {
    font-family: avenir_nb;
    text-decoration: none;
    transition: all 200ms ease-in-out;
}

.final a:hover {
    color: var(--azulclaro)
}

a {
    color: var(--morado);
}

@media screen and (max-width: 900px) {
    .footer__section h1 {
        font-size: 35px;
    }

    .footer__section_menu ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .final {
        padding: 0 10px;
        flex-wrap: wrap;
    }

    .redes {
        width: 100%;
        height: 100px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1200px) {
    .footer__section_menu ul {
        padding: 0 25px;
    }
}