/*rodape*/
.rodape {
    background: #EBEEF3;
    
}

.rodape__top {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 50px;
    padding-top: 50px;
    background-color: #F6F6F6;
}

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

.rodape__logo {
    max-width: 360px;
    max-height: 130px;    
}

.rodape__logo img{
    max-width: 100%;
	max-height:250px;
    display: block;
}

.rodape__right {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    justify-content: center;
}

.rodape__social {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.rodape__social span {
    margin-right: 5px;
    text-transform: uppercase;
}

.rodape__social ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.rodape__social li {
    margin: 0 5px;
}

.rodape__social a {
    height: 40px;
    width: 40px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: var(--primary);
    background: #fff;
    transition: all 0.4s ease;
    border: 2px solid rgba(253, 169, 79, 0.2);
    font-size: 15px;
	margin-left:5px;
}

.rodape__social a:hover {
    background: var(--primary);
    color: #fff;
}

.rodape__right .btn {
    margin-left: 20px;
}

.rodape__bottom {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.rodape__lista {
    max-width: 25%;
    padding: 0 15px;
}

.rodape__lista h4 {
    font-weight: 700;
    margin-bottom: 16px;
}

.rodape__lista p {
    font-size: 14px;
}

.rodape__lista a{transition: all 0.2s ease;}
.rodape__lista a:hover{ transition: all 0.2s ease; padding-left:7px;}

.rodape__assinatura {
    padding-bottom: 44px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.rodape__assinatura img {
    display: block;
}

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

    .rodape__top {
        flex-flow: column nowrap;
        align-items: flex-start;
    }

    .rodape__logo {
		margin: 0 auto;
        margin-bottom: 40px;
    }
	
	.rodape__social { margin-bottom: 20px; }
}

@media (max-width: 568px) {
    .rodape__lista {
        width: 100%;
    }

    .rodape__assinatura {
        flex-direction: column;
    }
}
/*end rodape*/

/*backtop*/
@keyframes backtop__bounce {
    0% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }
    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }
}
.backtop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: var(--primary);
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    z-index: 99;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: block;
    animation: backtop__bounce 4s infinite ease-in-out;
}

.backtop:hover a{
    color: #fff;
}
/*end backtop*/


/* scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}