/* ── Home subscription promo ── */
.hs-promo {
	--hs-primary: #066ac9;
	--hs-primary-deep: #044a8d;
	--hs-snapp: #0070f3;
	--hs-ink: #0f172a;
	--hs-muted: #64748b;
	--hs-surface: rgba(255, 255, 255, 0.72);
	position: relative;
	overflow: hidden;
	padding: 3.5rem 0;
	isolation: isolate;
}

.hs-promo__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(ellipse 80% 60% at 15% 20%, rgba(6, 106, 201, 0.14), transparent 55%),
		radial-gradient(ellipse 70% 50% at 90% 80%, rgba(0, 112, 243, 0.1), transparent 50%),
		linear-gradient(165deg, #f4f8fc 0%, #eef4fb 45%, #f8fafc 100%);
}

.hs-promo__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.45;
	pointer-events: none;
	animation: hs-float 9s ease-in-out infinite;
}

.hs-promo__orb--a {
	width: 220px;
	height: 220px;
	background: rgba(6, 106, 201, 0.35);
	top: -60px;
	left: -40px;
}

.hs-promo__orb--b {
	width: 180px;
	height: 180px;
	background: rgba(0, 112, 243, 0.28);
	bottom: -50px;
	right: 8%;
	animation-delay: -3.5s;
}

.hs-promo__panel {
	position: relative;
	display: grid;
	grid-template-columns: 1.35fr 0.9fr;
	gap: 2rem;
	align-items: center;
	padding: 2.25rem 2.5rem;
	border-radius: 1.25rem;
	background: var(--hs-surface);
	border: 1px solid rgba(6, 106, 201, 0.12);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 18px 40px -28px rgba(4, 74, 141, 0.45);
	animation: hs-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hs-promo__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--hs-primary);
	margin-bottom: 0.75rem;
}

.hs-promo__eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--hs-primary);
	box-shadow: 0 0 0 0 rgba(6, 106, 201, 0.55);
	animation: hs-pulse 2.4s ease-out infinite;
}

.hs-promo__title {
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	font-weight: 800;
	line-height: 1.35;
	color: var(--hs-ink);
	margin: 0 0 0.65rem;
}

.hs-promo__title mark {
	background: linear-gradient(120deg, rgba(6, 106, 201, 0.14), rgba(0, 112, 243, 0.08));
	color: var(--hs-primary-deep);
	padding: 0 0.2em;
	border-radius: 0.3em;
}

.hs-promo__lead {
	color: var(--hs-muted);
	font-size: 0.98rem;
	line-height: 1.75;
	margin: 0 0 1.35rem;
	max-width: 36rem;
}

.hs-promo__perks {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 1.1rem;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.hs-promo__perks li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: #334155;
}

.hs-promo__perks i {
	color: var(--hs-primary);
	font-size: 0.95rem;
}

.hs-promo__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
}

.hs-promo__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1.35rem;
	border-radius: 0.7rem;
	background: linear-gradient(135deg, var(--hs-primary) 0%, var(--hs-primary-deep) 100%);
	color: #fff !important;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none !important;
	border: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
	box-shadow: 0 10px 24px -14px rgba(6, 106, 201, 0.8);
}

.hs-promo__cta:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
	box-shadow: 0 14px 28px -12px rgba(6, 106, 201, 0.75);
	color: #fff !important;
}

.hs-promo__cta i {
	transition: transform 0.25s ease;
}

.hs-promo__cta:hover i {
	transform: translateX(-3px);
}

.hs-promo__side {
	position: relative;
	padding: 1.35rem 1.4rem;
	border-radius: 1rem;
	background: linear-gradient(160deg, #0b4f96 0%, #066ac9 48%, #0070f3 100%);
	color: #fff;
	overflow: hidden;
	animation: hs-rise 0.85s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hs-promo__side::before {
	content: "";
	position: absolute;
	inset: auto -20% -40% 30%;
	height: 160%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
	pointer-events: none;
}

.hs-promo__side-label {
	position: relative;
	font-size: 0.78rem;
	font-weight: 600;
	opacity: 0.85;
	margin-bottom: 0.55rem;
}

.hs-promo__installments {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 0.45rem;
	margin-bottom: 1rem;
}

.hs-promo__installments-num {
	font-size: 3.2rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.03em;
	background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.75));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: hs-num-in 0.9s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hs-promo__installments-text {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
}

.hs-promo__snapp {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.7rem 0.85rem;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(6px);
}

.hs-promo__snapp-logo {
	width: 40px;
	height: 40px;
	border-radius: 0.55rem;
	overflow: hidden;
	flex-shrink: 0;
	background: #0070f3;
}

.hs-promo__snapp-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.hs-promo__snapp-copy {
	min-width: 0;
}

.hs-promo__snapp-title {
	font-size: 0.9rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.hs-promo__snapp-desc {
	font-size: 0.75rem;
	opacity: 0.85;
	margin: 0.15rem 0 0;
	line-height: 1.4;
}

@keyframes hs-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(18px); }
}

@keyframes hs-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hs-pulse {
	0% { box-shadow: 0 0 0 0 rgba(6, 106, 201, 0.5); }
	70% { box-shadow: 0 0 0 10px rgba(6, 106, 201, 0); }
	100% { box-shadow: 0 0 0 0 rgba(6, 106, 201, 0); }
}

@keyframes hs-num-in {
	from {
		opacity: 0;
		transform: scale(0.86) translateY(8px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@media (max-width: 991.98px) {
	.hs-promo__panel {
		grid-template-columns: 1fr;
		padding: 1.75rem 1.5rem;
		gap: 1.5rem;
	}

	.hs-promo__installments-num {
		font-size: 2.6rem;
	}
}

@media (max-width: 575.98px) {
	.hs-promo {
		padding: 2.5rem 0;
	}

	.hs-promo__panel {
		padding: 1.4rem 1.15rem;
	}

	.hs-promo__actions {
		width: 100%;
	}

	.hs-promo__cta {
		width: 100%;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hs-promo__orb,
	.hs-promo__panel,
	.hs-promo__side,
	.hs-promo__eyebrow-dot,
	.hs-promo__installments-num,
	.hs-promo__cta,
	.hs-promo__cta i {
		animation: none !important;
		transition: none !important;
	}
}
