
			.hero-quedas {
				text-align: center;
				padding: 72px 18px 58px;
				margin: 0px auto 34px;
				background: radial-gradient(circle at top left, rgba(37,99,235,.38), transparent 34%),
				            linear-gradient(135deg, #050816, #111827, #1d4ed8);
				color: #fff;
				border-radius: 0 0 28px 28px;
				box-shadow: 0 16px 44px rgba(0,0,0,.22);
			}

			.hero-stats {
				display: flex;
				justify-content: center;
				gap: 18px;
				flex-wrap: wrap;
				margin-bottom: 30px;
			}

			.hero-stats div {
				background: rgba(255,255,255,.10);
				border: 1px solid rgba(255,255,255,.20);
				border-radius: 18px;
				padding: 16px 24px;
				min-width: 195px;
				backdrop-filter: blur(8px);
			}

			.hero-stats strong {
				display: block;
				font-size: 2rem;
				font-weight: 900;
				line-height: 1;
			}

			.hero-stats span {
				display: block;
				margin-top: 7px;
				font-size: .92rem;
				opacity: .92;
				font-weight: 500;
			}

			.hero-quedas h1 {
				font-size: clamp(2rem, 5vw, 4.1rem);
				font-weight: 900;
				letter-spacing: .045em;
				margin-bottom: 16px;
				line-height: 1.08;
			}

			.hero-quedas p {
				font-size: clamp(1rem, 2.5vw, 1.35rem);
				opacity: .94;
				margin-bottom: 28px;
				line-height: 1.45;
			}

			.hero-btn {
				display: inline-block;
				padding: 14px 28px;
				border-radius: 999px;
				background: linear-gradient(90deg, #2563eb, #7c3aed);
				color: #fff;
				font-weight: 900;
				text-decoration: none;
				box-shadow: 0 12px 30px rgba(37,99,235,.38);
				transition: .2s ease;
			}

			.hero-btn:hover {
				transform: translateY(-2px);
				box-shadow: 0 16px 38px rgba(37,99,235,.50);
			}

			.hero-carrossel-titulo {
				margin-top: 18px;
			}

			@media (max-width: 640px) {
				.hero-quedas {
					padding: 52px 14px 44px;
					margin-bottom: 26px;
				}

				.hero-stats div {
					min-width: 145px;
					padding: 14px 16px;
				}

				.hero-stats strong {
					font-size: 1.6rem;
				}
			}