#footer {
    background-image: url(../imagens/footer-_1_.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0;
    width: 100%;
    height: 393px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.up-footer {
    width: 20%;
    justify-items: center;
}

.up-footer ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.up-footer ul li a {
    color: #F8FBFC;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
}

.down-footer {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: space-between;
    border-top: solid #f8fbfc1a 1px;
    margin-top: 4rem;
    color: #F8FBFC;
}

.down-footer ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.down-footer ul li a {
    color: #F8FBFC;
}

@media(max-width:426px) {

    #footer {
        align-items: start;
        height: 500px;
    }

    .up-footer {
        display: flex;
        flex-direction: column;
        width: 15rem;
        height: 50%;
        margin: 2rem 0 2rem 1rem;
    }

    .up-footer ul {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .down-footer{
        width: 100%;
        height: 50%;
        flex-direction: column;
    }

    .down-footer ul{
        padding: 0;
        margin-left: 1rem;
    }

    .down-footer p{
       margin-left: 1rem;
    }


}