/*********************************************
** Footer 
*********************************************/

#footer {
	float: left;
	width: 100%;
	padding: 70px 0 50px 0;
}

/* Título Footer */

#footer .tituloRodape {
	float: left;
    width: 100%;
    margin: 0 0 30px 0;
    background: linear-gradient(to right, #322AA2, #D30F5F);
    color: transparent;
    background-clip: text;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

/* Box Logo */

#footer .boxLogo figure {
	margin-bottom: 30px;
}

#footer .boxLogo p {
	color: #8F8BCA;
    font-size: 14px;
    margin: 0;
    line-height: 22px;
}

/* Menu */

#footer .menuFooter ul {
	padding: 0;
    margin: 0;
    display: inline-block;
}

#footer .menuFooter ul li {
	float: left;
	width: 100%;
	list-style: none;
}

#footer .menuFooter ul li + li {
	margin-top: 4px;
}

#footer .menuFooter ul li a {
	color: #322AA2;
    font-size: 15px;
    letter-spacing: 1px;
	transition: all 0.2s linear;
}

#footer .menuFooter ul li a:hover {
	color: #D30F5F;
}

/* Contatos */

#footer .contatos .boxContatos {
	float: left;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#footer .contatos .boxContatos a {
	color: #322AA2;
    font-size: 15px;
    transition: all 0.2s linear;
	font-weight: 400;
	line-height: 25px;
}

#footer .contatos .boxContatos a + a {
	margin-top: 10px;
}

#footer .contatos .boxContatos a:hover {
	color: #D30F5F;
}

/* Redes Sociais */

#footer .redesSociais .boxLinks {
	float: left;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#footer .redesSociais .boxLinks a {
	display: flex;
    align-items: center;
}

#footer .redesSociais .boxLinks a + a {
	margin-top: 10px;
}

#footer .redesSociais .boxLinks a i {
	color: #D30F5F;
    font-size: 20px;
	transition: all 0.1s linear;
	margin-right: 10px;
}

#footer .redesSociais .boxLinks a span {
	color: #322AA2;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
	font-weight: 400;
}

#footer .redesSociais .boxLinks a:hover span {
	color: #D30F5F;
}

/*********************************************
** Whatsappa Flutuante
*********************************************/

#modalWhatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: none;
    z-index: 1;
    cursor: pointer;
}

#modalWhatsapp img {
    width: 50px;
}

@media (max-width: 768px) {

	#footer {
		text-align: center;
		padding: 40px 0;
	}

	#footer .boxLogo figure {
		margin-bottom: 20px;
	}

	#footer .boxLogo p br:first-child {
		display: none;
	}

	#footer .menuFooter {
		float: left;
		width: 100%;
		margin: 40px 0;
	}

	#footer .contatos .boxContatos {
		align-items: center;
	}

	#footer .redesSociais {
		float: left;
		width: 100%;
		margin-top: 40px;
	}

	#footer .redesSociais .boxLinks {
		align-items: center;
	}

}