/* ============================================
   Design tokens — Massagem a Dois v3
   Template: colunablindada/v9 | Colors: massagem/v1
============================================ */
:root {
	--bg-primary: #fdf9f7;
	--bg-secondary: #f9f3ef;
	--bg-accent-soft: #fdf0f5;
	--bg-dark: #18212e;
	--bg-dark-soft: #243040;
	--text-primary: #18212e;
	--text-secondary: #4a5568;
	--text-muted: #8896a6;
	--text-muted-2: #b0bbc6;
	--text-light: #ffffff;
	--accent-primary: #d94e7e;
	--accent-primary-dark: #8b1a43;
	--accent-primary-light: #e87baa;
	--accent-gold: #c9945a;
	--accent-gold-light: #f0c898;
	--border-soft: rgba(140, 70, 110, 0.13);
	--border-soft-2: rgba(140, 70, 110, 0.07);
	--shadow-soft: 0 12px 40px rgba(24, 33, 46, 0.1);
	--shadow-card:
		0 4px 24px rgba(24, 33, 46, 0.07), 0 1px 4px rgba(24, 33, 46, 0.05);
	--shadow-card-hover:
		0 12px 48px rgba(24, 33, 46, 0.12), 0 2px 8px rgba(24, 33, 46, 0.07);
	--shadow-glow: 0 8px 40px rgba(217, 78, 126, 0.45);
	--shadow-glow-lg: 0 16px 64px rgba(217, 78, 126, 0.35);
	--radius-lg: 20px;
	--radius-xl: 24px;
	--radius-2xl: 32px;
	--radius-full: 9999px;
	--gradient-brand: linear-gradient(
		135deg,
		#8b1a43 0%,
		#d94e7e 60%,
		#e87baa 100%
	);
	--gradient-warm: linear-gradient(
		160deg,
		#fdf9f7 0%,
		#fdf0f5 50%,
		#f9f3ef 100%
	);
	--gradient-hero: linear-gradient(
		180deg,
		#f5d8c8 0%,
		#fdf0f5 55%,
		#fdf9f7 100%
	);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family:
		"Outfit",
		"Manrope",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Helvetica,
		Arial,
		sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: var(--bg-primary);
	color: var(--text-primary);
	text-rendering: optimizeLegibility;
	line-height: 1.6;
	font-feature-settings:
		"kern" 1,
		"liga" 1;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}
button {
	font-family: inherit;
	cursor: pointer;
}

main {
	margin: 0;
	padding: 0;
}

.page {
	max-width: 100vw;
	overflow-x: hidden;
	background: var(--bg-primary);
	color: var(--text-primary);
}

/* ============================================
   Layout helpers
============================================ */
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
}
.container--sm {
	max-width: 36rem;
}
.container--md {
	max-width: 36rem;
}
.container--xl {
	max-width: 36rem;
}

@media (min-width: 640px) {
	.container {
		padding: 0 1.5rem;
	}
}
@media (min-width: 768px) {
	.container--xl {
		max-width: 64rem;
		padding: 0 2rem;
	}
	.container--md {
		max-width: 64rem;
		padding: 0 2rem;
	}
	.container--sm {
		max-width: 48rem;
		padding: 0 2rem;
	}
}

.center {
	text-align: center;
}

.eyebrow {
	text-align: center;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent-primary);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin: 0 0 0.5rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.eyebrow::before,
.eyebrow::after {
	content: "";
	display: block;
	height: 1px;
	width: 24px;
	background: linear-gradient(90deg, transparent, var(--accent-primary));
	opacity: 0.5;
}
.eyebrow::after {
	background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.section-title {
	color: var(--text-primary);
	font-size: 1.625rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	text-align: center;
	text-wrap: balance;
	margin: 0 0 2.5rem 0;
}
@media (min-width: 640px) {
	.section-title {
		font-size: 2rem;
	}
}
@media (min-width: 768px) {
	.section-title {
		font-size: 2.5rem;
	}
}

.section-paragraph {
	margin: 1.5rem auto 0;
	max-width: 48rem;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

/* ============================================
   Buttons
============================================ */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 0.875rem 1.75rem;
	border: none;
	border-radius: var(--radius-full);
	background: var(--gradient-brand);
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	box-shadow: var(--shadow-glow);
	transition:
		filter 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}
.btn-primary::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.15) 0%,
		transparent 60%
	);
	border-radius: inherit;
	pointer-events: none;
}
.btn-primary:hover {
	filter: brightness(1.07);
	box-shadow: var(--shadow-glow-lg);
	transform: translateY(-1px);
}
.btn-primary:active {
	transform: scale(0.97) translateY(0);
}
.btn-primary:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(217, 78, 126, 0.4);
}
.btn-block {
	width: 100%;
}

/* ============================================
   Highlights / marks
============================================ */
mark.hl-dark {
	background: var(--bg-dark);
	color: #fff;
	padding: 0.15rem 0.6rem;
	border-radius: 0.5rem;
}
mark.hl-primary {
	background: none;
	background-image: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	padding: 0.15rem 0.6rem;
	border-radius: 0.5rem;
	font-weight: 800;
}

/* ============================================
   Animations
============================================ */
@keyframes pulse-dark {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(24, 33, 46, 0.2);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(24, 33, 46, 0);
	}
}
.animate-pulse-dark {
	animation: pulse-dark 2.5s ease-in-out infinite;
}

@keyframes pulse-pink {
	0%,
	100% {
		box-shadow: var(--shadow-glow);
		transform: translateY(0);
	}
	50% {
		box-shadow: var(--shadow-glow-lg);
		transform: translateY(-2px);
	}
}
.animate-pulse-pink {
	animation: pulse-pink 2.4s ease-in-out infinite;
}

@keyframes bounce-soft {
	0%,
	100% {
		transform: translateY(0);
	}
	60% {
		transform: translateY(30%);
	}
}
.icon-bounce {
	animation: bounce-soft 1.4s ease-in-out infinite;
}

@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fade-in {
	animation: fadeSlideUp 0.55s ease both;
}

/* ============================================
   Hero
============================================ */
.hero {
	position: relative;
	margin: 0;
	padding: 0;
	background: var(--bg-primary);
	overflow: hidden;
}
.hero-inner {
	background: var(--gradient-hero);
	max-width: 540px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 1;
}
.hero-image-wrap {
	position: relative;
	width: 100vw;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	padding: 0;
}
.hero-image {
	width: 100%;
	max-width: none;
	height: auto;
	object-fit: contain;
	-webkit-mask-image: linear-gradient(to bottom, black 94%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 94%, transparent 100%);
}
.hero-image-fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 16%;
	background: linear-gradient(
		to top,
		var(--bg-primary) 0%,
		rgba(251, 248, 246, 0.4) 60%,
		rgba(251, 248, 246, 0) 100%
	);
	pointer-events: none;
}
.hero-headline {
	/* padding: 0 1.25rem; */
	margin-top: -2.5rem;
	position: relative;
	z-index: 10;
}
.hero-headline h1 {
	margin: 3rem auto 0;
	font-size: 2.3rem;
	font-weight: 800;
	letter-spacing: -0.035em;
	color: var(--text-primary);
	line-height: 1.1;
	text-shadow: 0 2px 24px rgba(24, 33, 46, 0.06);
}
.hero-line-1 {
	display: block;
	line-height: 1.12;
}
.hero-line-2 {
	display: block;
	line-height: 2;
}

/* gradient underline on emotional keyword */
.hero-hl {
	font-style: normal;
	position: relative;
	white-space: nowrap;
}
.hero-hl::after {
	content: "";
	position: absolute;
	bottom: -0.1em;
	left: 0;
	width: 100%;
	height: 3px;
	border-radius: 99px;
	background: var(--gradient-brand);
	animation: underline-grow 0.6s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
	transform-origin: left center;
}
@keyframes underline-grow {
	from {
		transform: scaleX(0);
		opacity: 0;
	}
	to {
		transform: scaleX(1);
		opacity: 1;
	}
}

/* thin ornamental divider between the two headline lines */
.hero-headline-divider {
	display: block;
	width: 36px;
	height: 2px;
	border-radius: 99px;
	background: var(--gradient-brand);
	opacity: 0.35;
	margin: 0.7rem auto;
}
@media (min-width: 640px) {
	.hero-headline h1 {
		font-size: 2.8rem;
	}
}

@media (max-width: 639px) {
	.hero-inner {
		box-sizing: border-box;
		min-height: 100svh;
		min-height: 100dvh;
		justify-content: flex-start;
		gap: 1rem;
		padding: 0 0 env(safe-area-inset-bottom, 0px);
	}
	.hero-image-wrap {
		padding: 0;
	}
	.hero-image {
		width: 100%;
		max-width: none;
		max-height: none;
	}
	.hero-headline {
		margin-top: -0.75rem;
		/* padding: 0 1.25rem; */
	}
	.hero-headline h1 {
		font-size: 1.65rem;
		line-height: 1.22;
		letter-spacing: -0.03em;
	}
	.hero-headline-divider {
		margin: 0.5rem auto;
	}
	.hero-line-1,
	.hero-line-2 {
		display: inline;
		line-height: inherit;
	}
	.hero-desc {
		margin: 0;
		font-size: 0.8rem;
		line-height: 1.4;
		padding: 0 1.25rem;
	}
	.hero-cta-wrap {
		margin: 0;
		padding: 0 1rem;
	}
	.hero-cta-wrap .btn-primary {
		min-height: 56px;
		font-size: 1.05rem;
	}
	.hero-social-proof {
		margin: 0;
		font-size: 0.85rem;
	}
	.hero-scroll-down {
		margin: 0;
	}
}

@media (max-width: 639px) and (min-height: 750px) {
	.hero-image {
		max-width: none;
		max-height: none;
	}
	.hero-headline h1 {
		font-size: 2rem;
		line-height: 1.2;
	}
	.hero-desc {
		margin-top: -0.85rem;
		font-size: 0.85rem;
	}
}

.hero-desc {
	margin: 2rem 0 0;
	padding: 0 1.25rem;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--text-secondary);
}
.hero-desc strong {
	color: var(--text-primary);
	font-weight: 700;
}
.hero-cta-wrap {
	padding: 0 1rem;
	margin-top: 1.75rem;
	width: 100%;
}
.hero-cta-wrap .btn-primary {
	font-size: 1.2rem;
	font-weight: 700;
}
.hero-social-proof {
	margin: 0.875rem 0 0;
	padding: 0 1rem;
	font-size: 0.9rem;
	color: var(--text-muted);
}
.hero-scroll-down {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
	margin: 2.5rem 0 2rem;
	background: none;
	border: none;
	color: var(--text-muted-2);
	font-size: 0.9rem;
	letter-spacing: 0.03em;
	transition: color 0.15s;
}
.hero-scroll-down:hover {
	color: var(--text-muted);
}

/* --- Hero: animated background orbs --- */
.hero-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(55px);
	z-index: 0;
}
.hero-orb--1 {
	width: 320px;
	height: 320px;
	background: radial-gradient(
		circle,
		rgba(232, 123, 170, 0.45) 0%,
		transparent 70%
	);
	top: -80px;
	right: -90px;
	animation: float-orb 9s ease-in-out infinite;
}
.hero-orb--2 {
	width: 240px;
	height: 240px;
	background: radial-gradient(
		circle,
		rgba(245, 216, 200, 0.65) 0%,
		transparent 70%
	);
	bottom: 18%;
	left: -70px;
	animation: float-orb 12s ease-in-out infinite reverse;
}
@keyframes float-orb {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-22px) scale(1.06);
	}
}

/* --- Hero: image glow --- */
.hero-image-glow {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 65%;
	height: 70px;
	background: radial-gradient(
		ellipse at center,
		rgba(217, 78, 126, 0.22) 0%,
		transparent 70%
	);
	filter: blur(18px);
	pointer-events: none;
	z-index: 1;
}

/* --- Hero: social proof badge --- */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(217, 78, 126, 0.07);
	border: 1.5px solid rgba(217, 78, 126, 0.22);
	color: var(--accent-primary-dark);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 0.4rem 1.1rem;
	border-radius: var(--radius-full);
	margin-top: 1.25rem;
	animation: fadeSlideUp 0.55s 0.1s ease both;
}
.hero-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent-primary);
	flex-shrink: 0;
	animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(217, 78, 126, 0.55);
	}
	50% {
		box-shadow: 0 0 0 5px rgba(217, 78, 126, 0);
	}
}

/* --- Hero: gradient accent headline line --- */
.hero-line-accent {
	display: block;
	line-height: 1.15;
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-top: 0.25rem;
}

/* --- Hero: trust strip --- */
.hero-trust-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.2rem 0.5rem;
	margin-top: 0.85rem;
	font-size: 0.78rem;
	color: var(--text-muted);
	font-weight: 500;
	letter-spacing: 0.01em;
}
.trust-sep {
	color: var(--text-muted-2);
	opacity: 0.5;
}

/* --- Hero: staggered entrance animations --- */
.hero-badge {
	animation: fadeSlideUp 0.55s 0.1s ease both;
}
.hero-headline {
	animation: fadeSlideUp 0.55s 0.2s ease both;
}
.hero-desc {
	animation: fadeSlideUp 0.55s 0.3s ease both;
}
.hero-cta-wrap {
	animation: fadeSlideUp 0.55s 0.4s ease both;
}
.hero-scroll-down {
	animation: fadeSlideUp 0.55s 0.5s ease both;
}

/* --- Hero: content wrapper (transparent on mobile, column on desktop) --- */
.hero-content {
	display: contents;
}

/* ============================================
   Hero — Desktop two-column layout
============================================ */
@media (min-width: 768px) {
	.hero {
		background: var(--gradient-hero);
	}

	.hero-inner {
		background: transparent;
		max-width: 1200px;
		flex-direction: row;
		align-items: center;
		text-align: left;
		padding: 5rem 3rem 4rem;
		gap: 4rem;
		min-height: 90vh;
	}

	.hero-image-wrap {
		flex: 0 0 46%;
		position: relative;
		width: auto;
		left: auto;
		transform: none;
		order: 2;
	}

	.hero-image {
		-webkit-mask-image: none;
		mask-image: none;
		border-radius: var(--radius-2xl);
		width: 100%;
		max-height: 80vh;
		object-fit: cover;
		object-position: center top;
	}

	.hero-image-glow {
		display: none;
	}

	.hero-content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
		flex: 1;
		order: 1;
	}

	.hero-headline {
		margin-top: 0;
	}

	.hero-headline h1 {
		font-size: 3.5rem;
		margin: 0;
		text-align: left;
	}

	.hero-line-accent {
		margin-top: 0.4rem;
	}

	.hero-desc {
		text-align: left;
		padding: 0;
		margin-top: 0;
		font-size: 1.1rem;
		max-width: 100%;
	}

	.hero-cta-wrap {
		padding: 0;
		margin-top: 0;
		width: 100%;
		max-width: 420px;
	}

	.hero-scroll-down {
		margin: 0;
		align-self: flex-start;
	}
}

@media (min-width: 1024px) {
	.hero-headline h1 {
		font-size: 4rem;
	}

	.hero-inner {
		padding: 5rem 4rem 4rem;
		gap: 5rem;
	}
}

/* ============================================
   Testimonials
============================================ */
.testimonials {
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	background: var(--bg-secondary);
	padding: 5rem 0 3rem;
	position: relative;
}
.testimonials::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 10%,
		rgba(217, 78, 126, 0.15) 50%,
		transparent 90%
	);
}
@media (min-width: 640px) {
	.testimonials {
		padding: 7rem 0 4rem;
	}
}
@media (min-width: 768px) {
	.testimonials {
		padding: 8rem 0 5rem;
	}
}

.testimonials-carousel-wrap {
	position: relative;
	width: 100%;
	padding: 0;
}
@media (min-width: 640px) {
	.testimonials-carousel-wrap {
		padding: 0 1.5rem;
	}
}
@media (min-width: 768px) {
	.testimonials-carousel-wrap {
		max-width: 64rem;
		margin: 0 auto;
		padding: 0 2rem;
	}
}

.carousel {
	overflow: hidden;
}
.carousel-track {
	display: flex;
	transition: transform 0.35s ease;
	will-change: transform;
}

.testimonial-slide {
	flex: 0 0 85vw;
	padding-left: 0.75rem;
}
.testimonial-slide:first-child {
	padding-left: 0;
}

@media (min-width: 640px) {
	.testimonial-slide {
		flex-basis: 300px;
		padding-left: 1rem;
	}
	.testimonial-slide:first-child {
		padding-left: 0;
	}
}
@media (min-width: 768px) {
	.testimonial-slide {
		flex-basis: 320px;
	}
}

.testimonial-frame {
	padding: 0.375rem;
}
@media (min-width: 640px) {
	.testimonial-frame {
		padding: 0.5rem;
	}
}

/* Text-based testimonial card */
.testimonial-card {
	position: relative;
	width: 100%;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--border-soft);
	box-shadow: var(--shadow-card);
	transition:
		box-shadow 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-height: 220px;
}
.testimonial-slide.is-active .testimonial-card {
	border-color: rgba(217, 78, 126, 0.3);
	box-shadow: 0 8px 40px rgba(217, 78, 126, 0.18);
	transform: translateY(-2px);
}

.testimonial-stars {
	color: var(--accent-gold);
	font-size: 1.125rem;
	letter-spacing: 0.08em;
}
.testimonial-quote {
	flex: 1;
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin: 0;
	font-style: italic;
}
@media (min-width: 640px) {
	.testimonial-quote {
		font-size: 1rem;
	}
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-soft-2);
}
.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--border-soft);
	flex-shrink: 0;
}
.testimonial-author-info {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}
.testimonial-author-info strong {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--text-primary);
}
.testimonial-author-info span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin-top: 2rem;
	padding: 0 1rem;
}
.carousel-btn {
	min-height: 52px;
	min-width: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(217, 78, 126, 0.08);
	color: var(--accent-primary);
	border: 1px solid rgba(217, 78, 126, 0.15);
	transition:
		background-color 0.15s,
		transform 0.15s;
}
.carousel-btn:hover {
	background: rgba(217, 78, 126, 0.15);
	transform: scale(1.05);
}
.carousel-btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(217, 78, 126, 0.2);
}

.carousel-dots {
	display: flex;
	gap: 0.5rem;
}
.carousel-dot {
	height: 8px;
	width: 8px;
	border: none;
	padding: 0;
	border-radius: 9999px;
	background: rgba(217, 78, 126, 0.2);
	transition:
		width 0.3s ease,
		background-color 0.3s ease;
}
.carousel-dot.is-active {
	background: var(--accent-primary);
	width: 24px;
}
.carousel-dot:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(217, 78, 126, 0.2);
}

/* ============================================
   What you get
============================================ */
.what-you-get {
	background: linear-gradient(
		180deg,
		var(--bg-primary) 0%,
		var(--bg-secondary) 220px
	);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}
/* Two what-you-get sections in a row share the same color — no seam to blend */
.what-you-get + .what-you-get {
	background: var(--bg-secondary);
}
/* First section: extra, symmetric breathing room around the title */
/* .what-you-get--intro .section-title {
	margin-top: 3.5rem;
	margin-bottom: 3.5rem;
} */
.what-you-get::before {
	content: "";
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(
		ellipse,
		rgba(217, 78, 126, 0.06) 0%,
		transparent 70%
	);
	pointer-events: none;
}
@media (min-width: 640px) {
	.what-you-get {
		padding: 5.5rem 0;
	}
}
@media (min-width: 768px) {
	.what-you-get {
		padding: 7rem 0;
	}
}

.platform-image-wrap {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
}
.platform-image {
	width: 100%;
	max-width: 56rem;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-card);
}

.phases-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2.5rem;
}
@media (min-width: 640px) {
	.phases-list {
		margin-top: 3rem;
	}
}

.phase-card {
	background: #fff;
	border-radius: var(--radius-xl);
	border: 1px solid var(--border-soft);
	padding: 1.375rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	box-shadow: var(--shadow-card);
	transition:
		box-shadow 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}
.phase-card:hover {
	box-shadow: var(--shadow-card-hover);
	border-color: rgba(217, 78, 126, 0.2);
	transform: translateY(-2px);
}
.phase-card-top {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: flex-start;
}
.phase-emoji-thumb {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 0.875rem;
	background: linear-gradient(135deg, #fdf0f5, #f9e8f0);
	border: 1px solid rgba(217, 78, 126, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(217, 78, 126, 0.1);
}
.phase-emoji-thumb img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}
.phase-meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
	flex: 1;
	min-width: 0;
}
.phase-meta h3 {
	color: var(--text-primary);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
	margin: 0;
}
.phase-card p {
	color: var(--text-secondary);
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0;
}
.phase-card ul {
	list-style: none;
	margin: 0.25rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.phase-card ul li {
	font-size: 0.8rem;
	color: var(--text-muted);
	padding-left: 0.875rem;
	position: relative;
}
.phase-card ul li::before {
	content: "▸";
	position: absolute;
	left: 0;
	color: var(--accent-primary);
	font-size: 0.65rem;
	top: 1px;
}
@media (min-width: 640px) {
	.phase-card p {
		font-size: 1rem;
	}
}

.badge-dark {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	border-radius: 9999px;
	background: var(--bg-dark);
	padding: 0.25rem 0.875rem;
	font-size: 0.7rem;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.badge-with-icon {
	gap: 0.3rem;
	padding: 0.25rem 0.625rem;
}

/* ============================================
   Bonuses
============================================ */
.bonuses {
	background: #fff;
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}
.bonuses::before {
	content: "";
	position: absolute;
	bottom: -80px;
	right: -80px;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		ellipse,
		rgba(217, 78, 126, 0.05) 0%,
		transparent 70%
	);
	pointer-events: none;
}
@media (min-width: 640px) {
	.bonuses {
		padding: 5.5rem 0;
	}
}
@media (min-width: 768px) {
	.bonuses {
		padding: 7rem 0;
	}
}

.bonuses-header,
.offer-header {
	text-align: center;
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.icon-tile {
	width: 56px;
	height: 56px;
	border-radius: 1.125rem;
	background: var(--gradient-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 4px 20px rgba(217, 78, 126, 0.3);
}

/* Soft variant: light tile holding a brand-colored PNG icon */
.icon-tile--soft {
	background: linear-gradient(135deg, #fdf0f5, #f9e8f0);
	border: 1px solid rgba(217, 78, 126, 0.18);
	box-shadow: 0 4px 16px rgba(217, 78, 126, 0.12);
}
.icon-tile img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}
.what-you-get .icon-tile {
	margin: 0 auto 1.25rem;
}

.bonus-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.bonus-card {
	border-radius: var(--radius-xl);
	background: #fff;
	border: 1px solid var(--border-soft);
	padding: 1.375rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	box-shadow: var(--shadow-card);
	transition:
		box-shadow 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}
.bonus-card:hover {
	box-shadow: var(--shadow-card-hover);
	border-color: rgba(217, 78, 126, 0.2);
	transform: translateY(-2px);
}
.bonus-card-top {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}
.bonus-emoji-thumb {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 0.875rem;
	background: linear-gradient(135deg, #fdf0f5, #f9e8f0);
	border: 1px solid rgba(217, 78, 126, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(217, 78, 126, 0.1);
}
.bonus-emoji-thumb img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}
.bonus-meta {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
}
.bonus-badges {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: nowrap;
}
.bonus-meta h3 {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-primary);
	line-height: 1.3;
	margin: 0;
}
.bonus-card > p {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 0;
}
@media (min-width: 640px) {
	.bonus-card > p {
		font-size: 1rem;
	}
}

.price-old {
	font-size: 0.72rem;
	color: #e05252;
	font-weight: 600;
	text-decoration: line-through;
	white-space: nowrap;
	opacity: 0.85;
}
.price-free {
	display: inline-block;
	border-radius: 0.375rem;
	background: #fdf0f5;
	border: 1px solid rgba(217, 78, 126, 0.25);
	padding: 0.125rem 0.5rem;
	color: var(--accent-primary-dark);
	font-weight: 800;
	font-size: 0.72rem;
	white-space: nowrap;
}

/* ============================================
   Comparison
============================================ */
.comparison {
	background: linear-gradient(180deg, #fff 0%, var(--bg-secondary) 220px);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}
@media (min-width: 640px) {
	.comparison {
		padding: 5.5rem 0;
	}
}
@media (min-width: 768px) {
	.comparison {
		padding: 7rem 0;
	}
}

.comparison-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.comparison-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.compare-card {
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}
.compare-card:hover {
	transform: translateY(-3px);
}
@media (min-width: 640px) {
	.compare-card {
		padding: 2rem;
	}
}

.compare-card--problem {
	background: #fff;
	border: 1px solid #fee2e2;
	box-shadow: var(--shadow-card);
}
.compare-card--solution {
	background: linear-gradient(
		145deg,
		var(--bg-dark) 0%,
		var(--bg-dark-soft) 100%
	);
	box-shadow: 0 16px 56px rgba(24, 33, 46, 0.3);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-bottom: 0.5rem;
}
.compare-card--problem .compare-head {
	border-bottom: 1px solid #fef2f2;
}
.compare-card--solution .compare-head {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-head h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
}
@media (min-width: 640px) {
	.compare-head h3 {
		font-size: 1.5rem;
	}
}
.compare-card--problem .compare-head h3 {
	color: var(--text-primary);
}
.compare-card--solution .compare-head h3 {
	color: #fff;
}

.compare-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.compare-icon--red {
	background: #fef2f2;
	color: #ef4444;
}
.compare-icon--pink {
	background: rgba(217, 78, 126, 0.15);
	color: var(--accent-primary-light);
}

.compare-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.compare-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.875rem 0;
	font-size: 1rem;
	line-height: 1.6;
}
@media (min-width: 640px) {
	.compare-list li {
		font-size: 1.125rem;
	}
}
.compare-list li svg {
	margin-top: 2px;
	flex-shrink: 0;
}

.compare-list--red li {
	color: var(--text-secondary);
	border-bottom: 1px solid #fef2f2;
}
.compare-list--red li:last-child {
	border-bottom: none;
}
.compare-list--red li svg {
	color: #fca5a5;
}

.compare-list--pink li {
	color: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.compare-list--pink li:last-child {
	border-bottom: none;
}
.compare-list--pink li svg {
	color: var(--accent-primary-light);
}

/* ============================================
   Offer
============================================ */
.offer {
	background: linear-gradient(
		180deg,
		var(--bg-secondary) 0%,
		var(--bg-primary) 220px
	);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}
.offer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 10%,
		rgba(217, 78, 126, 0.25) 50%,
		transparent 90%
	);
}
@media (min-width: 640px) {
	.offer {
		padding: 5.5rem 0;
	}
}
@media (min-width: 768px) {
	.offer {
		padding: 6rem 0;
	}
}

.offer-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
	.offer-header {
		margin-bottom: 3rem;
	}
}
.offer-header .section-title {
	margin-bottom: 0;
}

.offer-card {
	background: #fff;
	border-radius: var(--radius-2xl);
	border: 1px solid rgba(217, 78, 126, 0.15);
	overflow: hidden;
	box-shadow:
		0 20px 64px rgba(217, 78, 126, 0.14),
		0 4px 16px rgba(24, 33, 46, 0.06);
}
.offer-discount {
	background: var(--gradient-brand);
	padding: 1.25rem 1.5rem;
	display: flex;
	justify-content: center;
}
.discount-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 0.75rem 1.375rem;
	font-size: 1rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.01em;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
	.discount-pill {
		font-size: 1.125rem;
	}
}

.offer-body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 640px) {
	.offer-body {
		padding: 1.5rem;
	}
}

.offer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.offer-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-soft-2);
}
.offer-list li:last-child {
	border-bottom: none;
}
.offer-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(217, 78, 126, 0.09);
	border: 1px solid rgba(217, 78, 126, 0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-primary);
	flex-shrink: 0;
}
.offer-text {
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	flex: 1;
}
.offer-tag {
	width: 56px;
	flex-shrink: 0;
	display: flex;
	justify-content: flex-end;
}

.offer-pricing {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0;
}
.offer-pricing-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.muted {
	font-size: 0.875rem;
	color: var(--text-muted);
}
.muted-2 {
	font-size: 0.875rem;
	color: var(--text-secondary);
}
.price-strike {
	color: #ef4444;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: line-through;
}
.price-main {
	color: var(--bg-dark);
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	margin: 0;
	line-height: 1.1;
}
@media (min-width: 768px) {
	.price-main {
		font-size: 3.25rem;
	}
}
.price-sub {
	font-size: 1rem;
	color: var(--text-secondary);
	margin: 0;
}

.trust-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 600;
}
.trust-item svg {
	color: var(--accent-primary);
}
.trust-divider {
	width: 1px;
	height: 1rem;
	background: rgba(217, 78, 126, 0.2);
}

/* ============================================
   Guarantee
============================================ */
.guarantee {
	background: linear-gradient(
		180deg,
		var(--bg-primary) 0%,
		var(--bg-secondary) 220px
	);
	padding: 4rem 0;
}
@media (min-width: 640px) {
	.guarantee {
		padding: 5.5rem 0;
	}
}
@media (min-width: 768px) {
	.guarantee {
		padding: 7rem 0;
	}
}

.guarantee-card {
	background: linear-gradient(145deg, var(--bg-dark) 0%, #1e2d40 100%);
	border-radius: var(--radius-2xl);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
	box-shadow: 0 24px 64px rgba(24, 33, 46, 0.28);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
}
.guarantee-card::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 300px;
	height: 300px;
	background: radial-gradient(
		ellipse,
		rgba(217, 78, 126, 0.12) 0%,
		transparent 70%
	);
	pointer-events: none;
}
@media (min-width: 640px) {
	.guarantee-card {
		padding: 2.5rem;
	}
}
@media (min-width: 768px) {
	.guarantee-card {
		padding: 3.5rem;
	}
}

.guarantee-badge {
	width: 7.5rem;
	height: 7.5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.09);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
	position: relative;
	z-index: 1;
}

.guarantee-card h2 {
	color: #fff;
	font-size: 1.625rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.2;
	text-wrap: balance;
	margin: 0;
	position: relative;
	z-index: 1;
}
@media (min-width: 640px) {
	.guarantee-card h2 {
		font-size: 2rem;
	}
}
@media (min-width: 768px) {
	.guarantee-card h2 {
		font-size: 2.5rem;
	}
}

.guarantee-card > p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.1rem;
	line-height: 1.65;
	max-width: 32rem;
	margin: 0;
	position: relative;
	z-index: 1;
}
@media (min-width: 640px) {
	.guarantee-card > p {
		font-size: 1.2rem;
	}
}
.guarantee-card strong {
	color: #fff;
	font-weight: 700;
}

.guarantee-pill {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 1rem 1.75rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	position: relative;
	z-index: 1;
}
.guarantee-pill p {
	color: #fff;
	font-weight: 800;
	font-size: 1.25rem;
	margin: 0;
	letter-spacing: -0.01em;
}
@media (min-width: 640px) {
	.guarantee-pill p {
		font-size: 1.5rem;
	}
}
.muted-w {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
}

/* ============================================
   FAQ
============================================ */
.faq {
	background: linear-gradient(
		180deg,
		var(--bg-secondary) 0%,
		var(--bg-primary) 220px
	);
	padding: 4rem 0;
}
@media (min-width: 640px) {
	.faq {
		padding: 5.5rem 0;
	}
}
@media (min-width: 768px) {
	.faq {
		padding: 6rem 0;
	}
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	background: #fff;
	border-radius: var(--radius-xl);
	border: 1px solid var(--border-soft);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(217, 78, 126, 0.06);
	transition:
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}
.faq-item:hover {
	box-shadow: 0 6px 24px rgba(217, 78, 126, 0.1);
	border-color: rgba(217, 78, 126, 0.2);
}

.faq-item summary {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.25rem;
	min-height: 64px;
	cursor: pointer;
	transition: background-color 0.15s;
	user-select: none;
}
@media (min-width: 640px) {
	.faq-item summary {
		padding: 1.375rem 1.5rem;
	}
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item summary:hover {
	background: var(--bg-accent-soft);
}
.faq-item summary:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 2px rgba(217, 78, 126, 0.2);
}

.faq-icon {
	color: var(--accent-primary);
	flex-shrink: 0;
	transition: transform 0.3s ease-in-out;
}
.faq-item[open] .faq-icon {
	transform: rotate(45deg);
}

.faq-item summary > span {
	color: var(--text-primary);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.3;
}
@media (min-width: 640px) {
	.faq-item summary > span {
		font-size: 1.25rem;
	}
}

.faq-body {
	padding: 0 1.25rem 1.5rem;
}
@media (min-width: 640px) {
	.faq-body {
		padding: 0 1.5rem 1.75rem;
	}
}
.faq-body p {
	margin: 0;
	padding-top: 1rem;
	border-top: 1px solid var(--border-soft-2);
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
}
@media (min-width: 640px) {
	.faq-body p {
		font-size: 1.125rem;
	}
}

/* ============================================
   Floating CTA
============================================ */
.floating-cta {
	position: fixed;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%) translateY(1rem);
	z-index: 50;
	width: 100%;
	max-width: 360px;
	padding: 0 1rem;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.3s,
		transform 0.3s;
}
.floating-cta.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
.floating-cta-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	border-radius: var(--radius-full);
	background: var(--gradient-brand);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	box-shadow: var(--shadow-glow);
	transition:
		filter 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
	animation: pulse-pink 2.4s ease-in-out infinite;
}
.floating-cta-link:hover {
	filter: brightness(1.07);
	box-shadow: var(--shadow-glow-lg);
	transform: translateY(-1px);
}
.floating-cta-link:active {
	transform: scale(0.97);
}

/* ============================================
   Footer
============================================ */
.site-footer {
	background: var(--bg-dark);
	padding: 2.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-line-1 {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
	letter-spacing: 0.03em;
}
.footer-line-2 {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.28);
	margin: 0.5rem 0 0;
}

/* ============================================
   Persuasion text (missing base styles)
============================================ */
.persuasion-text {
	margin: 1.5rem auto 0;
	max-width: 48rem;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.75;
	color: var(--text-secondary);
}
.persuasion-text strong {
	color: var(--text-primary);
	font-weight: 700;
}

/* ============================================
   Feature items (Por que funciona — 3 cards)
============================================ */
.persuasion-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}
@media (min-width: 640px) {
	.persuasion-features {
		flex-direction: row;
		gap: 1.25rem;
	}
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.375rem;
	background: #fff;
	border-radius: var(--radius-xl);
	border: 1px solid var(--border-soft);
	box-shadow: var(--shadow-card);
	flex: 1;
	transition:
		box-shadow 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}
.feature-item:hover {
	box-shadow: var(--shadow-card-hover);
	border-color: rgba(217, 78, 126, 0.2);
	transform: translateY(-2px);
}

.feature-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 0.875rem;
	background: linear-gradient(135deg, #fdf0f5, #f9e0ed);
	border: 1px solid rgba(217, 78, 126, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(217, 78, 126, 0.1);
}
.feature-icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.feature-text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.feature-text strong {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.015em;
}
.feature-text span {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* ============================================
   Instructor section (Quem vai te guiar)
============================================ */
.instructor {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--bg-secondary) 0%, #fff 220px);
	position: relative;
	overflow: hidden;
}
.instructor::before {
	content: "";
	position: absolute;
	bottom: -80px;
	left: -60px;
	width: 360px;
	height: 360px;
	background: radial-gradient(
		ellipse,
		rgba(217, 78, 126, 0.06) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.instructor-header {
	text-align: center;
	margin-bottom: 2rem;
}

.instructor-subtitle {
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	color: var(--accent-primary);
	letter-spacing: 0.02em;
	margin: 0.25rem 0 0;
}

.instructor-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 768px) {
	.instructor-grid {
		grid-template-columns: 320px 1fr;
		gap: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.instructor-grid {
		grid-template-columns: 380px 1fr;
		gap: 4rem;
	}
}

.instructor-photo {
	border-radius: var(--radius-2xl);
	overflow: hidden;
	max-width: 340px;
	margin: 0 auto;
	border: 1px solid var(--border-soft);
	box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
	.instructor-photo {
		max-width: 100%;
		margin: 0;
	}
}

.instructor-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.instructor-subtitle {
	font-size: 1rem;
	font-weight: 600;
	color: var(--accent-primary);
	margin: 0.25rem 0 1.25rem;
	letter-spacing: 0.01em;
}

.instructor-bio {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.85;
}

/* ============================================
   Responsive — Small phones (≤390px)
   Ex: iPhone SE (375×667)
============================================ */
@media (max-width: 390px) {
	.hero-headline h1 {
		font-size: 1.4rem;
	}
	.hero-desc {
		font-size: 1rem;
	}
	.hero-cta-wrap .btn-primary {
		font-size: 0.95rem;
		white-space: normal;
		line-height: 1.3;
		padding: 0.875rem 1rem;
	}
	.section-title {
		font-size: 1.3rem;
	}
	.eyebrow {
		font-size: 0.875rem;
	}
	.faq-item summary > span {
		font-size: 0.975rem;
	}
	.offer-text {
		font-size: 0.875rem;
	}
	.price-main {
		font-size: 1.875rem;
	}
	.compare-list li {
		font-size: 0.9rem;
	}
	.guarantee-pill p {
		font-size: 1.1rem;
	}
}

/* ============================================
   Responsive — Large phones portrait (400–639px)
   Ex: iPhone 17 Pro Max (430×932)
============================================ */
@media (min-width: 400px) and (max-width: 639px) {
	.hero-headline h1 {
		font-size: 1.6rem;
	}
	.hero-desc {
		font-size: 1.1rem;
	}
}
@media (min-width: 400px) and (max-width: 639px) and (min-height: 750px) {
	.hero-headline h1 {
		font-size: 1.6rem;
	}
	.hero-desc {
		font-size: 1.1rem;
	}
}

/* ============================================
   Responsive — Landscape mobile
   Short viewport (portrait phone rotated)
============================================ */
@media (max-height: 500px) and (orientation: landscape) {
	.hero-inner {
		min-height: auto;
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
		justify-content: flex-start;
		gap: 0.75rem;
	}
	.hero-image-wrap {
		padding: 0 1rem;
	}
	.hero-image {
		max-height: 50vh;
	}
	.hero-scroll-down {
		margin: 0.25rem 0 0.5rem;
	}
}

/* ============================================
   Responsive — Tablet / small desktop (640–1023px)
============================================ */
@media (min-width: 640px) and (max-width: 1023px) {
	.hero-inner {
		max-width: 680px;
		padding: 3rem 2rem 4rem;
	}
	.hero-image {
		max-width: 60%;
	}
	.hero-headline {
		padding: 0 1rem;
	}
	.hero-headline h1 {
		font-size: 2.4rem;
	}
	.hero-desc {
		font-size: 1.1rem;
		padding: 0 1rem;
	}
	.hero-cta-wrap {
		padding: 0 1rem;
		max-width: 520px;
	}
}

/* ============================================
   Responsive — Desktop (≥1024px)
============================================ */
@media (min-width: 1024px) {
	/* Containers */
	.container--xl {
		max-width: 80rem;
		padding: 0 3rem;
	}
	.container--md {
		max-width: 48rem;
		padding: 0 2rem;
	}
	.container--sm {
		max-width: 44rem;
		padding: 0 2rem;
	}

	/* Typography */
	.section-title {
		font-size: 2.75rem;
	}
	.eyebrow {
		font-size: 1.05rem;
	}
	.persuasion-text {
		font-size: 1.25rem;
	}

	/* Hero — side-by-side layout */
	.hero-inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		max-width: 80rem;
		margin: 0 auto;
		min-height: auto;
		padding: 5rem 3rem 4rem;
		column-gap: 4rem;
		row-gap: 1.25rem;
		align-items: start;
		text-align: left;
	}
	.hero-image-wrap {
		grid-column: 2;
		grid-row: 1 / span 4;
		padding: 0;
		align-self: center;
	}
	.hero-image {
		width: 100%;
		max-width: 100%;
		max-height: 80vh;
	}
	.hero-image-fade {
		display: none;
	}
	.hero-headline {
		grid-column: 1;
		grid-row: 1;
		margin-top: 0;
		padding: 0;
		text-align: left;
	}
	.hero-headline h1 {
		font-size: 3rem;
		text-align: left;
	}
	.hero-line-1,
	.hero-line-2 {
		display: block;
		line-height: 1.2;
	}
	.hero-desc {
		grid-column: 1;
		grid-row: 2;
		margin: 0;
		padding: 0;
		font-size: 1.2rem;
		text-align: left;
	}
	.hero-cta-wrap {
		grid-column: 1;
		grid-row: 3;
		margin: 0;
		padding: 0;
		max-width: 440px;
	}
	.hero-cta-wrap .btn-primary {
		font-size: 1.25rem;
	}
	.hero-scroll-down {
		grid-column: 1;
		grid-row: 4;
		margin: 0;
		justify-self: start;
	}

	/* Phases — 2-column grid */
	.phases-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

	/* Bonuses — 2-column grid */
	.bonus-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

	/* Card spacing */
	.phase-card,
	.bonus-card {
		padding: 1.75rem;
	}
	.phase-meta h3,
	.bonus-meta h3 {
		font-size: 1.1rem;
	}

	/* Section padding */
	.what-you-get,
	.bonuses,
	.comparison,
	.offer,
	.guarantee,
	.faq {
		padding: 7rem 0;
	}
	.testimonials {
		padding: 9rem 0 6rem;
	}

	/* Testimonials */
	.testimonial-slide {
		flex-basis: 380px;
	}
	.testimonial-quote {
		font-size: 1rem;
	}

	/* Comparison */
	.compare-list li {
		font-size: 1.125rem;
	}

	/* Offer */
	.offer-body {
		padding: 2rem;
	}
	.price-main {
		font-size: 3.25rem;
	}

	/* Guarantee */
	.guarantee-card {
		padding: 4rem;
	}
	.guarantee-card h2 {
		font-size: 2.5rem;
	}
	.guarantee-card > p {
		font-size: 1.25rem;
	}
	.guarantee-pill p {
		font-size: 1.5rem;
	}

	/* FAQ */
	.faq-item summary {
		min-height: 72px;
	}
	.faq-item summary > span {
		font-size: 1.25rem;
	}
	.faq-body p {
		font-size: 1.125rem;
	}

	/* Floating CTA */
	.floating-cta {
		max-width: 440px;
	}
}

/* ============================================
   Responsive — Extra wide desktop (≥1280px)
============================================ */
@media (min-width: 1280px) {
	.hero-inner {
		padding: 6rem 4rem 5rem;
		column-gap: 5rem;
	}
	.hero-headline h1 {
		font-size: 3.5rem;
	}
	.section-title {
		font-size: 3rem;
	}
	.bonus-list {
		grid-template-columns: repeat(3, 1fr);
	}
}
