footer.main{
    background-color: #1E1E1E;
    padding: 80px 0px;
    .al-container{
        width: 1227px;
        gap: 28px;
        .logomarca{
            max-width: 215px;
            margin-bottom: 12px;
        }
        .contato{
            max-width: 804px;
            margin: 0px auto;
            @media screen and (max-width: 856px) {
                flex-wrap: wrap;
                gap: 13px;
                justify-content: center;
                align-items: center;
            }
            .left{
                width: 31%;
                @media screen and (max-width: 856px) {
                    width: 100%;
                    justify-content: center;
                    align-items: center;
                    max-width: 500px;
                }
                gap: 13px;
            }
            .right{
                width: 61%;
                @media screen and (max-width: 856px) {
                    width: 100%;
                    max-width: 500px;
                    justify-content: center;
                    align-items: center;
                }
            }
        }
        .redes-sociais{
            margin: 12px 0px;
            gap: 60px;
            a.rede-social{
                width: 47px;
                height: 47px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                background-color: $primary-color;
                transition: all .3s;
                svg, svg *{
                    transition: all .3s;
                }
                &:hover{
                    svg, svg *{
                        fill: $primary-color;
                    }
                    background-color: $secondary-color;
                }
            }
        }
    }
}
.powered-by{
    width: 100%;
    background-color: $primary-color;
    padding: 5px 0px;
    .al-container{
        width: 1227px;
        span, a{
            color: #FFF;
            font-size: 16px;
            font-weight: 400;
            line-height: 197%; /* 31.52px */
        }
        a{
            transition: all .3s;
            &:hover{
                color: $secondary-color;
            }
        }
    }
}