.sfp-offer-reveal {
	--sfp-offer-radius: 28px;
	--sfp-offer-gold: #d8b273;
	--sfp-offer-gold-soft: #f6e6c2;
	--sfp-offer-violet: #7c3aed;
	--sfp-offer-blue: #3b82f6;
	--sfp-offer-muted: #948da9;
	--sfp-offer-muted-2: #6b6480;
	position: relative;
	max-width: 824px;
	margin: 0 auto;
	color: var(--sfp-offer-text);
	perspective: 1400px;
}

.sfp-offer-card {
	position: relative;
	display: grid;
	min-height: 0;
	height: auto;
	transform-style: preserve-3d;
	transition: transform 0.82s cubic-bezier(.2,.78,.22,1);
}

.sfp-offer-reveal.is-revealed .sfp-offer-card {
	transform: rotateY(180deg);
}

.sfp-offer-after-submit {
	outline: none;
}

.sfp-offer-after-submit .sfp-offer-card {
	display: block;
	height: auto;
	transform: none;
}

.sfp-offer-after-submit .sfp-offer-back {
	transform: none;
	min-height: 0;
}

.sfp-offer-face {
	position: relative;
	grid-area: 1 / 1;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: clamp(24px, 5vw, 42px);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: var(--sfp-offer-radius);
	background:
		radial-gradient(ellipse 520px 360px at 82% 0%, rgba(59,130,246,.12), transparent 58%),
		radial-gradient(ellipse 460px 360px at 0% 100%, rgba(124,58,237,.10), transparent 62%),
		linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
		linear-gradient(135deg, #171522, #080810 62%, #05050a);
	box-shadow: 0 28px 80px rgba(0,0,0,.38);
	backface-visibility: hidden;
}

.sfp-offer-face::before,
.sfp-offer-face::after {
	content: "";
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(216,178,115,.38);
	border-radius: 50%;
	background: #080512;
	transform: translateY(-50%);
}

.sfp-offer-face::before { left: -13px; }
.sfp-offer-face::after { right: -13px; }

.sfp-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.sfp-offer-front {
	gap: 28px;
	padding: clamp(28px, 4.8vw, 36px);
}

.sfp-offer-front::before,
.sfp-offer-front::after {
	display: none;
}

.sfp-offer-front-content {
	display: grid;
	gap: 14px;
}

.sfp-offer-eyebrow {
	margin: 0;
	color: var(--sfp-offer-gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .30em;
	text-transform: uppercase;
}

.sfp-offer-face h3 {
	max-width: 650px;
	margin: 0;
	color: var(--sfp-offer-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 7vw, 64px);
	font-style: italic;
	font-weight: 600;
	letter-spacing: -.035em;
	line-height: 1.02;
}

.sfp-offer-front h3 {
	max-width: 720px;
	font-family: inherit;
	font-size: clamp(30px, 4.2vw, 36px);
	font-style: normal;
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1.08;
}

.sfp-offer-face p {
	max-width: 640px;
	margin: 0;
	color: var(--sfp-offer-muted);
	font-size: 17px;
	line-height: 1.6;
}

.sfp-offer-front .sfp-offer-front-content > p:not(.sfp-offer-eyebrow) {
	max-width: 720px;
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.55;
}

.sfp-offer-form {
	display: grid;
	gap: 16px;
	max-width: none;
	margin-top: 2px;
}

.sfp-offer-form label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255,255,255,.72);
}

.sfp-offer-form input {
	width: 100%;
	min-height: 58px;
	box-sizing: border-box;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 16px;
	background: rgba(0,0,0,.35);
	color: var(--sfp-offer-text);
	padding: 0 20px;
	font-size: 18px;
	outline: none;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.sfp-offer-form input::placeholder {
	color: rgba(218,212,235,.44);
}

.sfp-offer-form input:focus {
	border-color: var(--sfp-offer-violet);
	background: rgba(0,0,0,.48);
	box-shadow: 0 0 0 4px rgba(124,58,237,.18);
}

.sfp-offer-reveal-btn,
.sfp-offer-whatsapp {
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 14px;
	font-size: 16px;
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
	transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.sfp-offer-reveal-btn {
	width: 100%;
	background: linear-gradient(100deg, var(--sfp-offer-violet) 0%, #7b4df4 48%, var(--sfp-offer-blue) 100%);
	color: #fff;
	box-shadow: 0 18px 40px rgba(71,106,255,.24);
}

.sfp-offer-reveal-btn:hover,
.sfp-offer-whatsapp:hover {
	filter: brightness(1.07);
	transform: translateY(-1px);
}

.sfp-offer-reveal-btn:disabled {
	opacity: .7;
	cursor: wait;
	transform: none;
}

.sfp-offer-fineprint {
	margin-top: auto !important;
	color: var(--sfp-offer-muted-2) !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
}

.sfp-offer-spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255,255,255,.28);
	border-top-color: currentColor;
	border-radius: 50%;
	animation: sfpOfferSpin .8s linear infinite;
}

.sfp-offer-error {
	margin-top: auto;
	border: 1px solid rgba(255,80,80,.35);
	border-radius: 14px;
	background: rgba(255,80,80,.12);
	color: #ffb4b4;
	padding: 12px 14px;
}

.sfp-offer-back {
	transform: rotateY(180deg);
	background:
		radial-gradient(circle at 20% 15%, rgba(216,178,115,.16), transparent 55%),
		linear-gradient(165deg, #100a1e, #0a0713 60%);
	border-color: rgba(216,178,115,.35);
}

.sfp-offer-back .sfp-offer-eyebrow {
	color: var(--sfp-offer-gold);
}

.sfp-offer-back h3 {
	max-width: none;
	background: linear-gradient(135deg, var(--sfp-offer-gold-soft), var(--sfp-offer-gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.sfp-offer-title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: .18em;
}

.sfp-offer-rotating-word {
	position: relative;
	display: inline-block;
	padding-right: .04em;
	min-width: 1.2em;
	will-change: transform, opacity;
}

.sfp-offer-rotating-word.is-typing {
	padding-right: .16em;
}

.sfp-offer-rotating-word.is-typing::after {
	content: "";
	position: absolute;
	right: 0;
	top: .15em;
	width: 2px;
	height: .88em;
	border-radius: 999px;
	background: currentColor;
	opacity: .85;
	animation: sfpOfferCaret 860ms steps(2, start) infinite;
}

.sfp-offer-rotating-word.is-sliding {
	transform-origin: left center;
}

@keyframes sfpOfferCaret {
	50% {
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sfp-offer-rotating-word.is-typing::after {
		animation: none;
	}
}

.sfp-offer-back > p:not(.sfp-offer-eyebrow) {
	font-size: 17px;
}

.sfp-offer-image {
	width: 100%;
	max-height: 180px;
	object-fit: cover;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,.12);
}

.sfp-offer-expiry {
	align-self: flex-start;
	border: 1px solid rgba(216,178,115,.45);
	border-radius: 999px;
	color: var(--sfp-offer-gold-soft);
	background: rgba(216,178,115,.08);
	padding: 6px 11px;
	font-size: 12px;
	font-weight: 800;
}

.sfp-offer-coupon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	border: 1px dashed rgba(216,178,115,.48);
	border-radius: 12px;
	background: rgba(255,255,255,.045);
	padding: 14px 16px;
}

.sfp-offer-code {
	color: var(--sfp-offer-text);
	font-size: clamp(18px, 4vw, 24px);
	font-weight: 900;
	letter-spacing: .08em;
	white-space: nowrap;
}

.sfp-offer-copy {
	min-height: 40px;
	border: 0;
	background: transparent;
	color: var(--sfp-offer-gold);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
	cursor: pointer;
}

.sfp-offer-copy:hover,
.sfp-offer-copy:focus-visible {
	color: var(--sfp-offer-gold-soft);
}

.sfp-offer-copy.is-copied {
	color: #86efac;
}

.sfp-offer-whatsapp {
	width: 100%;
	background: #20b858;
	color: #062a13;
	box-shadow: 0 14px 28px rgba(32,184,88,.18);
}

.sfp-offer-whatsapp-icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.sfp-offer-confetti {
	position: absolute;
	left: 50%;
	bottom: 96px;
	pointer-events: none;
}

.sfp-offer-confetti span {
	position: absolute;
	width: 8px;
	height: 12px;
	border-radius: 2px;
	background: var(--sfp-offer-gold);
}

.sfp-offer-theme-light .sfp-offer-front {
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(15,23,42,.14);
}

.sfp-offer-theme-light .sfp-offer-front p,
.sfp-offer-theme-light .sfp-offer-form label {
	color: #667085;
}

.sfp-offer-theme-light .sfp-offer-front h3,
.sfp-offer-theme-light .sfp-offer-code {
	color: #101828;
}

.sfp-offer-theme-light .sfp-offer-form input {
	background: #f8fafc;
	color: #101828;
}

@keyframes sfpOfferSpin {
	to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
	.sfp-offer-card {
		min-height: 0;
	}

	.sfp-offer-face {
		padding: 24px 20px;
	}

	.sfp-offer-face h3 {
		font-size: clamp(38px, 12vw, 52px);
	}

	.sfp-offer-front h3 {
		font-size: clamp(28px, 8vw, 34px);
	}

	.sfp-offer-coupon {
		align-items: stretch;
		flex-direction: column;
	}

	.sfp-offer-code {
		white-space: normal;
		word-break: break-word;
	}

	.sfp-offer-copy {
		border: 1px solid rgba(216,178,115,.42);
		border-radius: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sfp-offer-card,
	.sfp-offer-reveal-btn,
	.sfp-offer-whatsapp,
	.sfp-offer-form input {
		transition: none;
	}

	.sfp-offer-reveal.is-revealed .sfp-offer-card {
		transform: none;
	}

	.sfp-offer-reveal.is-revealed .sfp-offer-front {
		display: none;
	}

	.sfp-offer-back {
		transform: none;
	}
}
