/*social*/
.social {
    background-color: #fff;
}

.social .container {
    display: flex;
    justify-content: center;
    padding: 40px;
}
/*end social*/

/*rodape*/
.rodape {
    position: relative;
    color: #999;
    font-size: 14px;
    background-color: #f6f6f6;
}

.rodape h2 {
    font-size: 22px;
    color: #222;
    margin-bottom: 25px;
}

.rodape p, .rodape a {
    font-size: 16px;
    color: #999;
    font-weight: bold;
}

.rodape .container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: baseline;
    padding: 40px 0;
}

.rodape__col {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: auto;
}

.rodape__col:last-child {
    margin-right: unset;
}

.rodape__col__separator {
    width: 60px;
    height: 3px;
    background-color: #ed1d25;
    margin-top: 10px;
    margin-bottom: 30px;
}

.rodape__col__link {
    color: #999;
    margin-bottom: 10px;
    transition: .2s ease;
    text-decoration: none;
}

/*.rodape__col__link:hover {
	color: #5091fa;
}*/

.rodape__col__link i{
	color: #222;
}

.rodape__col__uc__container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    max-width: 350px;
}

.rodape__col__uc__item {
    width: 90px;
    margin-bottom: 20px;
    transition: .2s ease;
    position: relative;
}

.rodape__col__uc__item:hover img{
	filter: grayscale(100%);
}

.rodape__col__uc__item img {
    width: 100%;
    height: 80px;
    border-radius: 5px;
}

.rodape__col__uc__item__tooltip {
    position: absolute;
    visibility: hidden;
    z-index: 2;
    opacity: 0;
    transition: opacity .2s;
    color: #000;
    bottom: calc(100% + 20px);
    background-color: #fff;
    color: #383c43;
    padding: 10px;
    width: 200px;
    left: calc(50% - 100px);
    box-shadow: 0px 0px 5px 2px #222;
    border-radius: 5px;
}

.rodape__col__uc__item__tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.rodape__col__uc__item:hover .rodape__col__uc__item__tooltip {
    visibility: visible;
    opacity: 1;
}

.rodape__col li {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.rodape__col li i {
    color: #222;
    font-size: 22px;
    margin-right: 10px;
}

.assinatura {
    background-color: #f6f6f6;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.assinatura p {
	color: #999;
    font-size: 16px;
    font-weight: 500;
}

.assinatura .container {
    display: flex;
    justify-content: space-between;
    padding: unset;
    align-items: center;
}

.assinatura strong {
	color: #222;
}

.assinatura a{ text-decoration:none; }

@media (max-width: 768px) {
	.rodape .container {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        padding: unset;
    }

    .rodape a{
        margin-top: unset;
    }

    .assinatura a {
        margin-top: 20px;
    }

    .rodape__col {
        max-width: unset;
        width: 100%;
        align-items: center;
        margin-top: 30px;
    }

    .assinatura .container {
    	flex-flow: column wrap;
    	align-items: center;
    }
}

/*end rodape*/

@media (max-width: 720px) {

    /*SOCIAL*/
    .social img {
        max-width: 100%;
    }
    /*END SOCIAL*/

}