/**
 * Rodapé padrão das Landing Pages.
 * Visual por LP: .lp-footer--{variant} no CSS da página.
 */

.lp-footer {
	--lp-footer-bg: #111;
	--lp-footer-fg: rgba(255, 255, 255, 0.75);
	--lp-footer-muted: rgba(255, 255, 255, 0.55);
	--lp-footer-title: rgba(255, 255, 255, 0.65);
	position: relative;
	padding: 50px 20px;
	overflow: hidden;
	background-color: var(--lp-footer-bg);
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: var(--lp-footer-fg);

	@media (min-width: 992px) {
		padding: 95px 120px 50px;
	}
}

.lp-footer.has-bg-image {
	background-image: var(--lp-footer-bg-image);
}

.lp-footer__inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	text-align: center;
}

.lp-footer__columns {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 50px;
	margin-bottom: 50px;

	@media (min-width: 992px) {
		flex-direction: row;
		align-items: stretch;
		gap: 110px;
	}
}

.lp-footer__column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lp-footer__column-title {
	margin: 0 0 0.85rem;
	flex-shrink: 0;
	color: var(--lp-footer-title);
	font-size: 0.85rem;
	font-weight: 400;
	line-height: 1.3;
}

.lp-footer__logos {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 50px;
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;

	@media (min-width: 992px) {
		flex-wrap: nowrap;
		flex-direction: row;
		gap: 110px;
	}
}

.lp-footer__logo a {
	display: inline-block;
	line-height: 0;
	transition: opacity 0.2s ease;
}

.lp-footer__logo a:hover {
	opacity: 0.75;
}

.lp-footer__logo img {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.lp-footer__legal {
	max-width: 1700px;
	margin: 0 auto;
	color: var(--lp-footer-muted);
	font-size: 0.7rem;
	font-weight: 300;
	line-height: 1.55;

	@media (min-width: 992px) {
		font-size: 0.75rem;
		text-align: center;
	}
}

.lp-footer__legal p {
	margin: 0;
}
