/* =====================================================
   teste.css — CSS mínimo para a template "Teste"
   (single-blank-2.php). Carregado APENAS nessa template.
   ===================================================== */

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #000;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

/* =====================================================
   Footer mínimo (só o que a template Teste usa)
   ===================================================== */

.t4-footer {
	width: 100%;
	padding: 40px 0;
	background: #fff;
}

.t4-footer__container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.t4-footer__bottom-row {
	display: flex;
	justify-content: center;
	width: 100%;
}

.t4-footer__copyright {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	border-top: 1px solid #ebebeb;
	flex-wrap: wrap;
}

.t4-footer__trek-logo {
	width: 80px;
	height: auto;
	flex-shrink: 0;
}

.t4-footer__trek-logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.t4-footer__copyright-text {
	font-family: inherit;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	color: #595959;
	text-align: center;
	margin: 0;
}

@media (max-width: 600px) {
	.t4-footer { padding: 24px 0; }
	.t4-footer__copyright { flex-direction: column; gap: 12px; }
}