/* bp_nosotros_stats — banda horizontal de estadísticas con icono + número + label */

.bp-stats {
	position: relative;
	background-color: var(--bp-navy);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--bp-white);
	padding: 96px 0;
	overflow: hidden;
	isolation: isolate;
}

.bp-stats__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: center;
	justify-items: center;
}

.bp-stats__item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	color: var(--bp-white);
}

.bp-stats__icon {
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	color: var(--bp-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.bp-stats__icon svg,
.bp-stats__icon-img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.bp-stats__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	line-height: 1.1;
}

.bp-stats__number {
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: 0.01em;
	color: var(--bp-white);
	text-align: center;
}

.bp-stats__label {
	margin-top: 4px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
}

@media (max-width: 900px) {
	.bp-stats { padding: 64px 0; }
	.bp-stats__inner {
		grid-template-columns: 1fr;
		gap: 32px;
		justify-items: center;
	}
	.bp-stats__item {
		justify-content: center;
	}
}
