﻿.website-footer {
    background: @color-white;
    padding-top:30px;

    @media screen{
        @media (min-width:960px){
            padding-top:0;
            position:absolute;
            bottom:0;
            left:0;
            right:0;
        }
    }
}

.website-rights,
.website-powered {
    font-size: 10px;
    text-transform: uppercase;
}

.website-rights {
    .flex(12);
    color: @color-lgray;
    text-align: center;
    margin: 20px 0 30px;
    line-height: 1em;

    @media screen{
        @media (min-width:740px){
            margin: 40px 0;
        }
    }
}

.selo-amigodosurdo {
    width: 100%;

    img {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    @media screen {
        @media (max-width:739px) {
            width: 80%;
            margin: 15px auto 0px auto;
        }

        @media (min-width:740px) {
            width: 28%;
            padding-right: 15px;
        }

        @media (min-width:1024px) {
            padding-right: 0px;
        }
    }
}
.qr-code-emac {
    width: 100%;

    img {
        display: block;
        width: 100%;
    }

    @media screen {
        @media (max-width:739px) {
            width: 80%;
            margin: 30px 0; 
        }

        @media (min-width:740px) {
            width: 30%;
        }
    }
}

.website-powered {
    padding: 0 15px;
    line-height: 2.2em;
    text-align: right;

    img {
        display: block;
        float: right;
        width: 20px;
        height: 22px;
        margin-left: 9px;
    }

    @media screen {
        @media (max-width:1024px) {
            margin: 30px auto 0 auto;
        }
    }
}

.website-footer--intro {
    display: flex;
    align-items: center;

    @media screen {
        @media (min-width:739px) {
            width: 50%;
        }

        @media (min-width:1024px) {
            width: 33%;
        }
    }

    .link {
        margin-right: 20px;
        padding: 0 15px;
    }

    .detail {
        font-size: 12px;
        line-height: 1.15em;
    }

    .logotype {
        width: 130px;
        height: 60px;
        background: url(/images/logotype-color.min.svg) no-repeat center/contain;
        margin: 0;
    }

    strong {
        font-size: 20px;
        font-weight: 800;
        line-height: .8em;
        display: block;
        margin-bottom: 14px;
    }
}

.website-footer--info{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    @media screen{
        @media (max-width:739px){
            flex-direction:column;
        }

        @media (min-width:740px){
            justify-content: space-between;
        }
    }
}

.website-footer--menu{
    display:none;

    @media screen{
        @media (min-width:960px){
            display:flex;
            list-style:none;
            margin:0;
            padding:0 15px;
            flex-basis:100%;
            justify-content:space-between;
            flex-wrap:wrap;

            &:after{
                content:'';
                margin:40px 0;
                flex-basis:100%;
                background:@color-dwhite;
                height:1px;
            }

            .link,
            .title {
                display:block;
                line-height:1em;
            }

            [target="_blank"]:after{
                content:'';
                display:inline-block;
                height:10px;
                width:10px;
                background:url(/images/icons/targetblank.min.svg) no-repeat center;
                margin-left:6px;
                transform: translateY(-1px);
            }

            .link{
                color:@color-black;
                font-size:12px;
                margin-top:10px;

                &:before{
                    content:'';
                    display:block;
                    float:left;
                    margin:3px 6px 0 0;
                    height:6px;
                    width:6px;
                    border-radius:50%;
                    border:1px solid @color-dblue;
                }

                & + .title{
                    margin-top:40px;
                }

                &:hover{
                    text-decoration:underline;
                }
            }

            .title{
                font-weight:900;
                color:@color-black;
                text-transform:uppercase;
                font-size:16px;

                & + .title{
                    margin-top:10px;
                }
            }
        }
    }
}

/*WhatsApp Fixo*/
.btn-whats {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 87px;
    height: 86px;
    z-index: 10;

    img {
        position: absolute;
        bottom: 7px;
        left: 6px;
        z-index: 20;
        transition: .4s all;

        &:hover {
            -webkit-transform: rotateZ(15deg);
            -ms-transform: rotateZ(15deg);
            transform: rotateZ(15deg);
        }

        @media screen and (min-width: 960px) {
            bottom: 14px;
            right: 10px;
            left: auto;
        }
    }

    &:before {
        content: '';
        width: 110px;
        height: 105px;
        background-color: #00d45b;
        position: absolute;
        left: -70px;
        bottom: -39px;
        transform: rotate( 48deg ) translate(20px);

        @media screen and (min-width: 960px) {
            width: 140px;
            height: 135px;
            transform: rotate(42deg) translate(32px);
            left: auto;
            bottom: auto;
        }
    }

    @media screen and (min-width: 960px) {
        right: 0;
        left: auto;
    }
}