﻿.footer {
	background-color: var(--p4);
	color: var(--light);
	padding: 32px 16px 0;
}

.footer-text {
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0.25px;
	font-weight: 300;
	margin-bottom: 32px;
}

.footer-support ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
}

.footer-support ul li:not(.caption) {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.5px;
}

.footer-support ul li.caption {
	color: var(--s);
	opacity: 1;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 300;
}

.footer-support ul li i {
	font-size: 16px;
	line-height: 1;
}

.support-whatsapp {
	padding: 16px 0 16px 32px;
	margin: 16px 0;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.5px;
	position: relative;
	/* border-top: 1px solid rgba(204, 232, 239, 0.08);
	border-bottom: 1px solid rgba(204, 232, 239, 0.08); */
}

.support-whatsapp:before {
	content: "";
	width: 32px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background-image: url(../img/icones/whatsapp.svg);
	background-size: 24px;
	background-position: left center;
	background-repeat: no-repeat;
}

.support-whatsapp a span {
	display: block;
	font-size: 12px;
	line-height: 16px;
	font-weight: 200;
	color: var(--s2);
}

.support-app {
	text-align: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding: 24px 12px;
	background-color: rgb(0 60 101 / 20%);
	border-radius: 16px;
}

.support-app p {
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	margin: 0;
}

.support-app ul {
	padding: 0;
	margin: 0;
	list-style: none;
	width: 100%;
}

.support-app ul li {
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	margin-bottom: 12px;
}

.support-app img {
	max-width: 130px;
}

.footer-copy {
	display: block;
	margin: 24px 0 0;
	padding: 16px 0;
	text-align: center;
	border-top: 1px solid rgba(204, 232, 239, 0.08);
}

@media screen and (min-width: 768px) {
	.footer {
		padding: 32px 0 0;
	}
}

@media screen and (min-width: 1024px) {
	.footer {
		padding: 72px 0 0;
	}

	.footer .container {
		display: grid;
		align-content: center;
		justify-content: center;
		align-items: center;
		justify-items: stretch;
		grid-template-areas:
			"fText fText"
			"fSupport fApp"
			"fCopy fCopy";
			gap: 16px 0;
	}

	.footer .container .footer-text {
		grid-area: fText;
	}

	.footer .container .footer-support {
		grid-area: fSupport;
	}

	.footer .container .support-app {
		grid-area: fApp;
	}

	.footer .container .footer-copy {
		grid-area: fCopy;
	}

	.footer .container .footer-text,
	.footer .container .footer-support,
	.footer .container .support-app,
	.footer .container .footer-copy {
		margin: 0;
		border: none;
	}

	.footer-text {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.5px;
	}

	.footer-support {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: center;
		justify-content: space-between;
		align-items: center;
	}

	.footer-support ul,
	.footer-support .support-whatsapp {
		max-width: 100%;
		width: 100%;
	}

	.footer-copy {
		display: block;
		margin: 24px 0 0;
		padding: 24px 0;
		text-align: center;
		border-top: 1px solid rgba(204, 232, 239, 0.08);
		font-size: 12px;
		line-height: 18px;
		letter-spacing: 0.5px;
	}
}

@media screen and (min-width: 1366px) {
	.footer .container .support-app {
		padding-left: 120px;
		justify-content: flex-start;
		position: relative;
	}

	.support-app :before {
		content: "";
		width: 220px;
		height: 220px;
		position: absolute;
		left: -120px;
		top: -10px;
		background-image: url(../img/app-telas-2.png);
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}

	.support-app p,
	.support-app ul li {
		text-align: left;
	}
}
