/* FOOTER */
#footer-fantucci {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 430px;
	font-family: var(--font-family);
}

/* FOOTER TOP */
.footer-fantucci-top {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 77%;
	background-color: var(--bg-light);
}

.footer-fantucci-top-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

.footer-fantucci-column {
	box-sizing: border-box;
	height: 100%;

	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer-fantucci-title {
	font-size: 2rem;
	font-weight: 500;
	color: var(--secondary);
}

.footer-fantucci-top .footer-fantucci-list {
	list-style: none;
	padding: 0;
	margin: 0;

	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-fantucci-top .footer-fantucci-list li a {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--bg-secondary);
}

.footer-fantucci-contact-list {
	padding: 0;
	margin: 0;
	list-style: none;

	display: flex;
	gap: 1rem;
}

.footer-fantucci-contact-list li a i {
	color: var(--bg-secondary);
	font-size: 5rem;
}

.footer-fantucci-payment-methods {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-fantucci-payment-methods img {
	width: 100%;
	max-width: 620px;
}

/* FOOTER BOTTOM */
.footer-fantucci-bottom {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 23%;
	background-color: var(--bg-primary);
}

.footer-fantucci-bottom-container {
	height: 100%;
}

#footer-fantucci .footer-fantucci-bottom-column {
	width: 100%;
	height: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
}

#footer-fantucci .footer-fantucci-bottom-row {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* WEBER */

#footer-weber {
	display: flex;
	text-align: center;
}

#footer-weber a {
	color: var(--tertiary);
	font-size: 1.5rem;
	font-weight: 500;
}

.cnpj {
	text-align: center;
	color: var(--secondary);
}

@media (max-width: 767px) {
	.footer-fantucci-top .footer-fantucci-list {
		align-items: center;
	}

	.footer-fantucci-column {
		box-sizing: border-box;
		height: auto !important;
		display: flex;
		flex-direction: column;
		gap: 0;
		align-items: center;
	}

	.footer-fantucci-column div {
		margin: 15px;
	}

	.footer-fantucci-top-container {
		height: auto !important;
	}

	.footer-fantucci-top {
		height: auto !important;
	}

	.footer-fantucci-payment-methods {
		margin-bottom: 13px;
	}
}