footer {
	background-color: var(--preto-meioescuro);
	padding: 10vh 3em;
}

.footer_slogan {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6em;
}

.footer_slogan > img {width: 130px;}
.footer_slogan > h1 {
	font-size: 3.5em;
    color: var(--white);
    font-weight: 400;
}

.footer_box_container {
	display: flex;
	justify-content: space-around;
	align-content: center;
}

.footer_box_item {
	min-width: 20%;
}

.footer_box_item > h3 {
	color: var(--vermelho-vinho);
	font-size: 3em;
	font-weight: 400;
	margin-bottom: 0.5em;
}

.footer_box_item > p {
	display: flex;
	align-items: center;
	font-family: 'Poppins';
	color: var(--white);
	font-size: 1.2em;
	font-weight: 400;
}

.footer_box_item > p i {
	font-size: 1.5em;
	margin-right: .5em;
}

.footer_socialmidias {
	padding-top: 10em;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2em;
}

.footer_socialmidias > a i {
	color: var(--white);
	font-size: 3em;
}

.copyfooter {
    font-weight: 700;
    margin-top: 5em;
    text-align: center;
}

@media (max-width: 1000px) {
	footer {
		padding: 2em 0px;
	}
	.footer_slogan > img {width: 100px;}
	.footer_slogan > h1 {
		font-size: 2.5em;
	}
	.footer_box_container {
		display: flex;
		justify-content: space-around;
		align-content: center;
		flex-direction: column;
	}
	.footer_box_item {
		width: 100%;
		text-align: center;
		margin-bottom: 6em;
	}
	.footer_box_item > h3 {
		font-size: 2em;
	}
	.footer_box_item > p {
		justify-content: center;
	}
	.footer_socialmidias {
		padding-top: 5em;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 2em;
	}
}

@media (max-width: 768px) {
	.footer_slogan {
		flex-direction: column;
	}
}