@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&display=swap');

/* Remove barra inferior */
#colophon .site-info {
	display: none !important;
}

/* Neusa footer-style watermark */
.site-footer {
	background-color: #ccb094;
	min-height: 420px;
	overflow: hidden;
	position: relative;
}

/* Keep all footer content above the watermark */
.site-footer > .container,
.site-footer > .site-info {
	position: relative;
	z-index: 2;
}

/* Large faded background text */
.site-footer::before {
	bottom: -0.08em;
	color: #c2a17c;
	content: "Neusa";

	/* ALTERAÇÃO APENAS DA FONTE */
	font-family: "KostaniaMedium", "Kostania Medium", serif;

	font-size: clamp(180px, 29vw, 520px);
	font-weight: 700;
	left: 50%;
	letter-spacing: -0.06em;
	line-height: 0.8;
	opacity: 0.72;
	pointer-events: none;
	position: absolute;
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: 1;
}

/* Tablet */
@media (max-width: 1024px) {
	.site-footer {
		min-height: 340px;
	}

	.site-footer::before {
		bottom: -0.06em;
		font-size: clamp(150px, 34vw, 360px);
	}
}

/* Mobile */
@media (max-width: 767px) {
	.site-footer {
		min-height: 260px;
	}

	.site-footer::before {
		bottom: -0.04em;
		font-size: clamp(115px, 48vw, 230px);
		opacity: 0.62;
	}
}