.lince-numeros-widget {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	width: 100%;
	padding: 64px 7%;
	background: transparent;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #fff;
	box-sizing: border-box;
}

.lince-numeros-widget::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(255, 255, 255, 0.02);
	-webkit-backdrop-filter: blur(50px);
	backdrop-filter: blur(3px);
	pointer-events: none;
}

.lince-numeros-widget__title,
.lince-numeros-widget__grid {
	position: relative;
	z-index: 1;
}

.lince-numeros-widget__title {
	margin: 0 0 36px;
	color: #fff;
	text-align: center;
	font-size: 28px;
	font-weight: 400;
	display: none !important;
}

.lince-numeros-widget__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	max-width: 1120px;
	margin: 0 auto;
}

.lince-numeros-widget__item {
	text-align: center;
}

.lince-numeros-widget__value {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 4px;
	line-height: 1;
}

.lince-numeros-widget__prefix,
.lince-numeros-widget__suffix {
	font-size: 32px;
	font-weight: 500;
}

.lince-numeros-widget__number {
	font-size: clamp(56px, 7vw, 96px);
	font-weight: 900;
	color: var(--cor-primaria, #56b6d8);
}

.lince-numeros-widget__label {
	max-width: 280px;
	margin: 16px auto 0;
	color: #fff !important;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

@media screen and (max-width: 700px) {
	.lince-numeros-widget {
		padding: 48px 24px;
		background-attachment: scroll;
	}

	.lince-numeros-widget__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.lince-numeros-widget__prefix,
	.lince-numeros-widget__suffix {
		font-size: 22px;
	}

	.lince-numeros-widget__number {
		font-size: 58px;
	}

	.lince-numeros-widget__label {
		font-size: 16px;
	}
}
