/* Selos (USP) e blocos de números (UDP) flutuando sobre a imagem do hero,
   estilo "pill badge" no topo + "stat card" na base — não é a faixa horizontal. */

.hero-7-img-wrap {
	position: relative;
}

.hero-float-badges {
	position: absolute;
	left: 0;
	right: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	z-index: 5;
	pointer-events: none;
}

.hero-float-badges--top {
	top: 24px;
	justify-content: flex-start;
	padding: 0 24px;
}

.hero-float-badges--bottom {
	bottom: -28px;
	justify-content: center;
	padding: 0 24px;
}

.hero-pill-badge {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(20, 20, 25, 0.88);
	color: #fff;
	padding: 10px 18px 10px 12px;
	border-radius: 50px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(4px);
}

.hero-pill-badge-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	font-size: 13px;
	flex-shrink: 0;
}

.hero-pill-badge-ico svg { width: 13px; height: 13px; fill: #fff; }

.hero-pill-badge-txt {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.hero-stat-card {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	padding: 16px 20px;
	border-radius: 16px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
	min-width: 200px;
}

.hero-stat-card-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.2);
	font-size: 20px;
	flex-shrink: 0;
}

.hero-stat-card-ico svg { width: 20px; height: 20px; fill: #fff; }

.hero-stat-card-txt {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.hero-stat-card-num {
	font-size: 22px;
	font-weight: 700;
}

.hero-stat-card-label {
	font-size: 13px;
	opacity: 0.9;
	white-space: nowrap;
}

@media (max-width: 991px) {
	.hero-float-badges--top {
		top: 12px;
		padding: 0 12px;
	}
	.hero-float-badges--bottom {
		bottom: -20px;
		padding: 0 12px;
	}
	.hero-stat-card { min-width: unset; padding: 10px 14px; }
	.hero-stat-card-num { font-size: 18px; }
	.hero-stat-card-label { font-size: 11px; }
	.hero-pill-badge-txt { font-size: 12px; }
}

@media (max-width: 575px) {
	.hero-float-badges--top,
	.hero-float-badges--bottom {
		position: static;
		margin-top: 14px;
		padding: 0;
	}
}
