/**
 * Estilos do rodapé.
 *
 * @package PT2026
 */

.pt2026-footer {
	background: linear-gradient(180deg, #f2262b 0%, #d51b23 40%, #b5121e 100%);
	color: #fff;
	padding-top: 3rem;
	padding-bottom: 3rem;
	font-size: 0.95rem;
}

.pt2026-footer a {
	font-family: var(--pt2026-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 110%;
	color: #fff;
	text-decoration: none;
}

.pt2026-footer a:hover,
.pt2026-footer a:focus {
	text-decoration: underline;
}

.pt2026-footer-logo {
	height: 197px;
	width: 197px;
}

.pt2026-footer-brand-links {
	padding-top: 1.5rem;
}

.pt2026-footer-brand-links a {
	font-family: var(--pt2026-font-body);
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	display: block;
}

.pt2026-footer-brand-links a + a {
	margin-top: 0.15rem;
}

.pt2026-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pt2026-footer-menu > li {
	width: 100%;
	margin-bottom: 1.5rem;
}


@media (min-width: 768px) {
	.pt2026-footer-menu > li {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.pt2026-footer-menu > li {
		width: 25%;
	}
}

.pt2026-footer-menu > li > a {
	display: block;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.pt2026-footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pt2026-footer-menu ul li {
	margin-bottom: 0.50rem;
}

.pt2026-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pt2026-footer-social-icon-28 {
	width: 28px;
	height: 28px;
	--pt2026-icon-h: 28px;
}

.pt2026-footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pt2026-footer-links li {
	margin-bottom: 0.25rem;
}

.pt2026-footer-copy {
	min-width: 49%;
	white-space: nowrap;
}

/* Ícones sociais no footer: fundo branco, ícone vermelho */
.pt2026-footer .pt2026-home-social-icon {
	background-color: #fff;
	color: #b5121e;
}

.pt2026-footer .pt2026-home-social-icon i {
	color: #b5121e;
}

.pt2026-footer .pt2026-footer-social-icon-28 {
	width: 28px;
	height: 28px;
	--pt2026-icon-h: 28px;
}

.pt2026-footer .pt2026-home-social-icon:hover,
.pt2026-footer .pt2026-home-social-icon:focus {
	background-color: #fbe4e4;
	color: #b5121e;
}

/* QA4.1: mobile — 4px entre links do rodapé */
@media (max-width: 767.98px) {
	.pt2026-footer-menu > li > a {
		margin-bottom: 20px;
	}


	.pt2026-footer-brand-links a + a {
		margin-top: 4px;
	}

	.pt2026-footer-menu > li {
		margin-bottom: 4px;
	}

	.pt2026-footer-menu > li:last-child {
		margin-bottom: 0;
	}

	.pt2026-footer-menu ul li {
		margin-bottom: 4px;
	}

	.pt2026-footer-menu ul li:last-child {
		margin-bottom: 0;
	}

	.pt2026-footer-links li {
		margin-bottom: 4px;
	}

	.pt2026-footer-links li:last-child {
		margin-bottom: 0;
	}
}

