/* RODAPE */
.rodape {
    padding-top: 120px;
    padding-bottom: 60px;
    background-image: url(../imagens/rodape_bg.jpg);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    color: hsla(0,0%,100%,.7);
}

.rodape .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.rodape__col {
/*	
    width: 25%;
    padding-right: 15px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
*/
	display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: auto;
	
}

.rodape__col:last-child {
    padding-right: 0;
}

.rodape__col__logo {
    width: 100%;
    margin-bottom: 20px !important;
}

.rodape__col__logo img {
    max-width: 100%;
    max-height: 200px;
    display: block;
}

.rodape__col h5 {
    color: #fff;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
	font-size: 22px;
}

.rodape__col h5:before {
    position: absolute;
    left: 0;
    content: "";
    bottom: 0;
    width: 50%;
    height: 1px;
    background: #e8e8f0;
}

.rodape__col a {
    margin-bottom: 9px;
	transition: all .2s ease;
}
.rodape__col a:hover{transition: all .3s ease; padding-left:5px; color:#FFF;}

/* .rodape__col a:hover{
    color: #6868eb;
} */

.rodape__col p{ margin-bottom:9px;}
.rodape__col i{ color:#FFF; }

.rodape__assinatura {
    width: 100%;
    background-color: #17171a;
    padding: 10px 0;
    color: #7d7d84;
}

.rodape__assinatura .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

/* .rodape__assinatura a:hover {
    color: #6868eb;
} */

.rodape__assinatura__imob img {
    display: block;
}

@media (max-width: 768px) {
    .rodape__col {
        width: 100%;
        margin-bottom: 40px;
    }

    .rodape__assinatura .container {
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
    }

    .rodape__assinatura__imob img {
        margin-top: 10px;
    }
}
/* END RODAPE */

.backtop {
    width: 48px;
    height: 48px;
    text-align: center;
    position: fixed;
    bottom: 70px;
    padding: 0;
    line-height: 48px;
    right: 30px;
    z-index: 99999999;
    color: #fff;
    /* background: #6868eb; */
    border: 1px solid /* #6868eb */;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateY(20px);
    transition: all .3s ease;
    border-radius: 3px;
    cursor: pointer;
}

.backtop:hover {
    cursor: pointer;
/*  background: #3b3be5;
    border-color: #3b3be5; */
    bottom: 80px;
}

.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}