.footer {
	padding: 30px 60px;
	background: #2d2d2d;
	color: #fff;
	font-family: 'ContrafaceText-Bold';
}

.footer-container {
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 16em;
}

.footer-logo img {
	height: 105px;
}

.footer-nav {
	display: flex;
	gap: 4rem;
}

.footer-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-nav ul.separado{
	padding-right: 8em;
	border-right: 2px solid #fff;
}

.footer-nav li {
	margin-bottom: 0.8em;
}

.footer-nav a {
	color: #fff;
	text-decoration: none;
	font-size: 1.6em;
	text-transform: uppercase;
}
.footer-nav a:hover {
	text-decoration: underline;
}

.footer-social {
	display: flex;
	margin-left: auto;
	gap: 1.5em;
}

.footer-social .social-icon i {
	width:66px;
	height:66px;
	background-color: #fff;
	color: #ed720f;
	display: block;
	border-radius:50%;
	text-align: center;
	line-height:66px;
	font-size:3.3em;
	transition: all ease 0.3s;
}
.footer-social .social-icon:hover i {
	background-color: #ed720f;
	color: #fff;
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		gap: 3em;
	}
	.footer-logo img {
		height: 80px;
	}
	.footer-nav {
		flex-direction: column;
		align-items: center;
		gap: 2em;
	}
	.footer-nav ul.separado {
		padding-right: 0;
		border-right: none;
	}
	.footer-social {
		margin-left: 0;
		justify-content: center;
	}
}