footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1rem;
    background: var(--color-black);
    color: var(--color-white);
    gap: 15px;

    @media (min-width: 768.1px) {
        flex-direction: row;
        align-items: flex-start;
        padding: 2rem 4rem;
        grid-template-columns: repeat(5, 1fr);
    }

    .h3 {
        color: var(--color-orange);
        font-size: 1.2rem;
        font-weight: 800;
    }

    ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;

        li {
            color: var(--color-white);

            a {
                color: currentColor;
                text-decoration: none;|

                &:hover {
                    color: currentColor;
                }
            }
        }
    }

    & > div {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: flex-start;

        &:first-child {
            grid-column: 1/-1;

            @media (min-width: 768.1px) {
                grid-column: 1/3;
            }
        }
    }

    .color-orange {
        color: var(--color-orange);
    }

    .redes-container {
        ul {
            padding: 0;
            list-style: none;
            display: flex;
            justify-content: flex-end;
            width: 100%;
            min-width: 150px;

            li {
                a {
                    color: var(--color-orange);
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    text-decoration: none;|

                    span {
                        color: var(--color-white);
                    }
                    i {
                        font-size: xx-large;
                    }
                }
            }
        }
    }
    .follow-us {
        picture {
            max-width: 170px;
            margin-top: 30px;

            img {
                max-width: 100%;
            }
        }
    }
}