/* RODAPE */
.rodape__logo {
    display: block;
    margin: 0 auto 5px;
    max-width: 100%;
    max-height: 250px;
	text-align:center;
}
.rodape__logo img{ max-width:600px; max-height:250px;}

.rodape {
	padding-top: 80px;
    padding-bottom: 60px;
    background: #404a3d;
    color: #fff;
    position: relative;
}
.rodape__bg {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
}

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

.rodape__col {
    width: 33%;
    padding-right: 15px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    list-style: none;
}
.rodape__col ul{     list-style: none; }

.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: 1.2rem;
}

.rodape__col h5:before {
    position: absolute;
    left: 0;
    content: "";
    bottom: 0;
    width: 50%;
    height: 4px;
    background: var(--primary);
    border-radius: 5px;
}

.rodape__col a {
    margin-bottom: 5px;
    font-weight: 400;
    display: block;
	transition: 0.2s ease;
}

.rodape__col a:hover{
	transition: 0.2s ease;
	padding-left:6px;
    color: var(--primary);
}

.rodape__assinatura {
    width: 100%;
    background-color: #394336;
    padding: 10px 0;
    color: #fff;
}

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

.rodape__assinatura a:hover {
    color: var(--primary);
}

.rodape__assinatura__imob img {
    display: block;
}
.rd_links{padding-left: 20px;}
.rd_address address, .rd_address p {margin-bottom: 5px; font-style: normal; font-size: 16px;}
address {
    font-style: normal;
}

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

    .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: var(--secondary);
    border: 1px solid var(--secondary);
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateY(20px);
    transition: all .3s ease;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
}

.backtop:hover {
    cursor: pointer;
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
    bottom: 80px;
}

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

/*scrollbar*/
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--secondary);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
/*end scrollbar*/


.my-icon-whatsapp{margin-left: auto; margin-right: auto;}
.pulse{top: -5px;}