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

#footer {
	float: left;
	width: 100%;
	border-top: 1px solid #E8F69A;
	background: #23CCBA;
	padding: 50px 0 0 0;
}

/* Box Cima */

#footer .topFooter {
	float: left;
	width: 100%;
	padding: 0 0 50px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/* Título Footer */

#footer .tituloRodape {
	float: left;
    width: 100%;
    color: #1C1C20;
    font-size: 18px;
    margin: 0 0 20px 0;
    font-weight: 600;
}

/* 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: 10px;
}

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

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

/* Contatos */

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

#footer .contatos .boxContatos a {
	display: flex;
	align-items: center;
	transition: all 0.2s linear;
}

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

#footer .contatos .boxContatos a i {
	color: #1C1C20;
    font-size: 20px;
    letter-spacing: 1px;
}

#footer .contatos .boxContatos a span {
	color: #1C1C20;
    font-size: 14px;
    letter-spacing: 1px;
	margin-left: 10px;
	transition: all 0.2s linear;
}

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

/* Box Baixo */

#footer .bottomFooter {
	float: left;
	width: 100%;
	padding: 30px 0;
	border-top: 1px solid #1C1C20;
}

#footer .bottomFooter {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#footer .bottomFooter .botaoTopo {
	display: flex;
	align-items: center;
	cursor: pointer;
}

#footer .bottomFooter .botaoTopo span {
	margin-right: 15px;
	color: #1C1C20;
	font-size: 14px;
}

#footer .bottomFooter .botaoTopo i {
	color: #1C1C20;
    font-size: 20px;
}

#footer .bottomFooter .copyright span {
	color: #1C1C20;
	font-size: 14px;
}

@media (max-width: 768px) {

	#footer .topFooter {
		grid-template-columns: repeat(1, 1fr);
	}

}

@media (max-width: 550px) {

	#footer .bottomFooter {
		flex-direction: column-reverse;
	}

	#footer .bottomFooter .copyright {
		margin-bottom: 30px;
	}

}