:root {
    --footer-color: #fff;
    --footer-background-color: #000;
    --footer-icon-color: #fff;
}

mais-footer {
    width: min(100%, 1500px);
    margin: auto;
    
    .area-footer {
        background: var(--footer-background-color);
        color: var(--footer-color);

        .container {
            margin-left: 0px;
            margin-right: 0px;
            margin: auto;
            
            .box-footer {
                width: min(87%, 1500px);
                padding: 10px 0px;
                display: flex;
                font-weight: 200;
                justify-content: space-between;
                font-size: 12px;
                align-items: anchor-center;
                justify-self: anchor-center;
                margin: auto;

                @media screen and (max-width:650px) {
                    flex-direction: column;
                    align-items: center;
                    gap: 5px;
                }

                .store_box {
                    display: flex;
                    flex-direction: row;
                }

                a {
                    color: var(--footer-color);

                    svg {
                        fill: var(--footer-icon-color);
                    }
                }
            }
        }
    }
}