@use "helpers";

footer{
    width: calc(100% + 30px);
    margin-left: -15px;

    & > .container-fluid{
        margin-left: 0px;
        margin-right: 0px;
    }
}

#voltar-topo {
    display: none;

    a {
        position: fixed;
        z-index: 120;
        outline: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 30px;
        width: 48px;
        height: 48px;
        bottom: 75px;
        padding: 0; 
        color: helpers.$textoDark;
        font-family: helpers.$fontLight;
        text-transform: uppercase;
        font-size: 13px;
        line-height: 50px;
        text-align: center;
        border: solid 1px helpers.$borders;
        border-radius: 50%;
        background-color: #FFFFFF;
        -webkit-box-shadow: 0px 3px 15px -7px rgba(0, 0, 0, 0.35);
        -moz-box-shadow: 0px 3px 15px -7px rgba(0, 0, 0, 0.35);
        box-shadow: 0px 3px 15px -7px rgba(0, 0, 0, 0.35);
        @include helpers.transicao(0.4s ease-in-out);

        &:before {
            @include helpers.sprite();
            display: block;
            content: "";
            width: 15px;
            height: 9px;
            margin-right: 0px;
            background-position: -438px -84px;
        }
    }

    span{
        display: none;

        @media (min-width: 1200px) {
            display: block;
        }
    }
}

#rodape {
    background-color: helpers.$highlight;

    .options{
        display: flex;
        flex-direction: column;
        width: auto;
        gap: 20px;

        .title-option{
            display: block;
            margin: 0px;
            color: helpers.$textoLight;
            font: normal 15px helpers.$fontRegular;
            line-height: 18px;
            letter-spacing: 0.05rem;
        }

        .options-content{
            display: flex;
            flex-direction: column;
            gap: 10px;

            .option{
                opacity: 0.5;
                display: block;
                margin: 0px;
                color: helpers.$textoLight;
                font: normal 15px helpers.$fontRegular;
                line-height: 18px;
                letter-spacing: 0.05rem;
            }
        }

        .network-content{
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;

            .network{
                outline: 0px;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 32px;
                height: 32px;
            }

            .blog-donna {
                display: flex;
                flex-direction: column;
                color: white;
                background-color: helpers.$highlight;

                .title {
                    font: normal 15px helpers.$fontBlack;
                }

                .subtitle {
                    font: normal 11px helpers.$fontBold;
                }
            }
        }

        .formas-pagamento{
            aspect-ratio: 274 / 57;
            object-fit: contain;
            object-position: center;
            display: block;
            width: 100%;
            max-width: 274px;
        }
    }

    .conteudo{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        max-width: 1580px;
        margin: 0 auto;
        padding: 72px 30px;
        gap: 10px;

        @media(max-width:1199px){
            flex-wrap: wrap;
            gap: 30px 10px;
            padding-top: 30px;
            padding-bottom: 30px;
        }

        .options{
            @media(max-width:1199px){
                width: calc(33.3% - 10px);
            }

            @media(max-width:767px){
                width: 100%;
            }
        }
    }
}

#copyright {
    background-color: helpers.$highlight;

    .conteudo{
        display: block;
        width: 100%;
        max-width: 1550px;
        margin: 0 auto;
        padding: 0px 15px;
        padding-bottom: 70px;

        @media(max-width:1199px){
            padding-bottom: 60px;
        }

        .copy{
            display: block;
            margin: 0px;
            color: helpers.$textoLight;
            font: normal 12px helpers.$fontRegular;
            line-height: 18px;
            letter-spacing: 0.05rem;
        }
    }
}

#social-media {
    display: flex;
    position: fixed;
    z-index: 99;
    flex-direction: column;
    bottom: 70px;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    align-items: flex-end;
}