/*diversos*/
.diversos {
    background-color: #e6e6e6;
    padding: 60px 0;
}

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

.diversos__item {
    border: 1px solid #fff;
    padding: 20px;
    width: 30%;
    color: #383c43;
    height: 335px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
	margin-bottom:45px;
}

.diversos__item:hover {
    background-color: #383c43;
    color: #fff;
}

.diversos__item:hover .diversos__item__link {
    color: #fff;
}
.diversos__item__link:hover{ text-decoration: underline;}

.diversos__item:hover .diversos__item__btn {
    background-color: #fff;
    color: #383c43;
}

.diversos__item__icone {
    font-size: 60px;
}

.diversos__item__separator {
    width: 100px;
    height: 3px;
    /*background-color: #ed1d25;*/
}


.diversos__item__description {
    font-weight: bold;
    font-size: 13px;
}

.diversos__item__btn {
    background-color: #383c43;
    color: #fff;
    font-weight: bold;
    padding: 7px 50px;
    transition: .2s ease;
}

.diversos__item__btn:hover {
    filter: brightness(1.3);
}

.diversos__item__link {
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 0;
    color: #383c43;
}

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

.diversos__item__form__input {
    width: 48%;
    border: 1px solid #fff;
    padding: 5px;
    font-weight: bold;
    color: #383c43;
    margin-bottom: 7px;
    background-color: #e6e6e6;
    outline: none;
}

.diversos__item:hover .diversos__item__form__input {
    background-color: #383c43;
    color: #fff;
}

.diversos__item__form__codigo {
    width: 48%;
    text-align: end;
    white-space: nowrap;
}

.diversos__item__form__codigo input {
    width: 44%;
    padding: 5px;
    background-color: #e6e6e6;
    border: 1px solid #fff;
    outline: none;
    font-weight: bold;
}

.diversos__item:hover .diversos__item__form__codigo input {
    background-color: #383c43;
    color: #fff;
}

.diversos__item__form__codigo span {
    font-weight: bold;
    font-size: 16px;
}

.diversos__item__form .diversos__item__btn {
    margin: 0 auto;
    margin-top: 10px;
	cursor:hand;
	cursor:pointer;
}


/*end diversos*/

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

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

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

.rodape h2 {
    font-size: 20px;
}

.rodape p, .rodape a {
    font-size: 14px;
}

.rodape__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    filter: brightness(0.2);
    object-fit: none;
}

.rodape .container--1 {
    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;
    max-width: 25%;
}

.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: #fff;
    margin-bottom: 5px;
    transition: .2s ease;
}

/*.rodape__col__link:hover {
    box-shadow: 0px 2px 0px 0px #ed1d25;
}*/

/*.rodape__col__link i {
    color: #ed1d25;
}*/

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

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

.rodape__col__uc__item:hover {
    transform: scale(1.2);
}

.rodape__col__uc__item img {
    width: 100%;
}

.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 #ed1d25;*/
    border-radius: 2px;
}

.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: 10px;
    display: flex;
    align-items: center;
}

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

.assinatura {
    background-color: #121212;
    padding: 10px 0;
    color: #fff;
    font-size: 13px;
}

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



/*end rodape*/

@media (max-width: 720px) {
    /*DIVERSOS*/
    .diversos {
        padding: 30px 0;
    }

    .diversos__item{
        width: 100%;
        margin-bottom: 20px;
    }

    .diversos__item:last-child {
        margin-bottom: 0;
    }
    /*END DIVERSOS*/

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

    /*RODAPE*/
    .rodape .container--1 {
        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--1 p{ width:100%;}
	
    /*END RODAPE*/
}