/*********************************************
** Footer 
*********************************************/

#footer {
	float: left;
	width: 100%;
	padding: 40px 0;
}

/* Logo */

#footer #logoFooter {
	float: left;
	width: 100%;
	text-align: center;
}

/* Redes Sociais */

#footer .redesSociais {
	float: left;
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px 0;
}

#footer .redesSociais a {
	margin: 0 5px;
	transition: all 0.2s linear;
}

#footer .redesSociais a:hover {
	transform: scale(1.1);
}

/* Links Rodapé */

#footer .boxLinksRodape {
	float: left;
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}

#footer .boxLinksRodape a {
	display: inline-block;
    color: #1E4F6A;
    text-decoration: underline!important;
	margin-bottom: 15px;
}

#footer .boxLinksRodape a + a {
	margin-left: 15px;
}

/* Endereço */

#footer .enderecoFooter {
	float: left;
	width: 100%;
	text-align: center;
}

#footer .enderecoFooter p {
	color: #1C4F6A;
    margin: 0;
    line-height: 24px;
    font-size: 14px;
}

@media (max-width: 768px) {
	
	#footer {
		padding: 30px 0;
	}
	
}