footer {
    overflow: hidden;
    background-color: var(--color-roxo);
    color: #fff;
    background-image: url("../img/footer/background-footer.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
footer .content {
    padding: 3rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
footer .content > .left {
    max-width: 360px;
}
footer a.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
footer .content > .left p {
    padding-top: 1rem;
    border-top: 4px solid var(--color-roxo-escuro);
    font-size: 1rem;
}
footer .content > .left p a {
    color: #fff;
    transition: .3s;
}
footer .content > .left p a:hover {
    color: var(--color-verde);
    text-decoration: underline;
}

footer .content > .right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
footer .explorar {
    padding-right: 3rem;
    margin-right: 3rem;
    border-right: 4px solid var(--color-roxo-escuro);
}
footer .content > .right h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}
footer .content > .right ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
footer svg {
    width: 20px;
    fill: #fff;
}
footer .content > .right ul a {
    color: #fff;
    transition: .2s; 
    font-size: 1rem;
}
footer .content > .right ul a:hover {
    color: var(--color-verde);
    text-decoration: underline;
}
footer .content > .right .contato a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
footer .content > .right ul a:hover svg {
    fill: var(--color-verde);
}
.by-engenho {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: #fff;
    position: relative;
    z-index: 1;
}
.by-engenho a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
@media (max-width: 1120px) {
    footer .content {
        flex-direction: column;
        gap: 0rem;
        padding: 2rem 1rem;
    }
    footer .content > .left {
        max-width: 100%;
    }
    footer .content > .right {
        justify-content: flex-start;
        flex-direction: column;
    }
    footer .explorar {
        padding: 1rem 0;
        margin: 1rem 0;
        border: 4px solid var(--color-roxo-escuro);
        border-left: none;
        border-right: none;
        width: 100%;
    }
    footer .content > .left p {
        border: none;
        padding: 0;
    }
}
@media (max-width: 400px) {
    .by-engenho img {
        width: 220px;
        height: auto;
    }
}