:root {
	--bg: #fff7f9;
	--bg-secondary: #f8d7e1;
	--glow: #f3bfd0;
	--border: #f2cad7;
	--text: #2b2326;
	--text-secondary: #6e5b62;
	--accent: #c98ea2;
	--card: #fff8fb;
	--shadow-soft: 0 18px 46px rgba(201, 142, 162, 0.22);
	--shadow-card: 0 26px 50px rgba(194, 137, 156, 0.14);
	--radius-main: 34px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-bottom: 11.5rem;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--text);
	background:
		radial-gradient(56rem 40rem at 90% -10%, rgba(243, 191, 208, 0.5), transparent 62%),
		radial-gradient(45rem 28rem at -10% 28%, rgba(248, 215, 225, 0.8), transparent 58%),
		var(--bg);
	overflow-x: hidden;
	line-height: 1.65;
	padding-bottom: 6.6rem;
}

:root {
	--bg: #f6e3e8;
	--card: #fffaf8;
	--line: #ead7dc;
	--text: #2f2629;
	--muted: #715d64;
	--accent: #c98ea2;
	--sticky: #c8e7f8;
	--floating-cta-bottom: max(0.88rem, calc(env(safe-area-inset-bottom, 0px) + 0.6rem));
	--shadow: 0 22px 45px rgba(130, 93, 108, 0.18);
	--radius-xl: 42px;
	--radius-lg: 30px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.55;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 12rem;
}

html.js body {
	opacity: 0;
	transition: opacity 720ms ease;
}

html.js body.page-ready {
	opacity: 1;
}

.ambient-glow {
	position: fixed;
	border-radius: 50%;
	filter: blur(55px);
	pointer-events: none;
	opacity: 0.45;
	z-index: -1;
}

.ambient-glow-1 {
	width: 54vw;
	height: 54vw;
	right: -14vw;
	top: -12vw;
	background: #f0c8d5;
	animation: ambientFloatA 11s ease-in-out infinite alternate;
}

.ambient-glow-2 {
	width: 46vw;
	height: 46vw;
	left: -12vw;
	top: 45vh;
	background: #efbdd0;
	animation: ambientFloatB 13s ease-in-out infinite alternate;
}

.lang-switch {
	position: fixed;
	top: 0.75rem;
	right: 0.75rem;
	display: inline-flex;
	gap: 0.28rem;
	padding: 0.24rem;
	border-radius: 999px;
	border: 1px solid rgba(232, 204, 214, 0.9);
	background: rgba(255, 248, 251, 0.82);
	backdrop-filter: blur(8px);
	z-index: 160;
	box-shadow: 0 10px 20px rgba(130, 93, 108, 0.14);
}

.lang-switch a {
	min-width: 2.25rem;
	height: 2rem;
	padding: 0 0.7rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: #6c5860;
	transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.lang-switch a.is-active {
	background: linear-gradient(165deg, rgba(214, 153, 175, 0.92), rgba(189, 126, 151, 0.9));
	color: #fff;
	box-shadow: 0 8px 16px rgba(145, 95, 115, 0.3);
}

.reveal-ready {
	opacity: 0;
	transform: translateY(22px) scale(0.99);
	filter: blur(2px);
	transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.reveal-ready.is-revealed {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

.first-screen {
	width: min(100% - 1.25rem, 28rem);
	margin-inline: auto;
	padding: 0.95rem 0 2rem;
}

.hero-image-wrap {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--shadow);
	position: relative;
	min-height: 23rem;
}

.hero-image {
	width: 100%;
	height: 23rem;
	object-fit: cover;
	object-position: center 24%;
	display: block;
	transform: scale(1);
}

.hero-card {
	margin: -1.2rem auto 0;
	width: calc(100% - 1.25rem);
	background: linear-gradient(175deg, rgba(255, 250, 248, 0.98), rgba(255, 250, 248, 0.94));
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
	padding: 1.45rem 1.25rem 1.35rem;
	position: relative;
	z-index: 2;
	backdrop-filter: blur(10px);
}

.hero-card::before {
	content: "";
	position: absolute;
	inset: 0.38rem;
	border-radius: inherit;
	border: 1px solid rgba(255, 255, 255, 0.52);
	pointer-events: none;
}

.brand {
	margin: 0;
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 700;
	color: var(--accent);
}

.hero-card h1 {
	margin: 0.5rem 0 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.45rem, 12vw, 3.35rem);
	line-height: 0.9;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-wrap: balance;
}

.subhead {
	margin: 0.75rem 0 0;
	font-size: 0.98rem;
	color: var(--muted);
	line-height: 1.48;
}

.primary-btn,
.ghost-btn {
	width: 100%;
	border-radius: 999px;
	padding: 0.86rem 1rem;
	font: inherit;
	font-weight: 600;
	border: 1px solid transparent;
	text-align: center;
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.primary-btn {
	margin-top: 1rem;
	background: linear-gradient(170deg, #cf93a8, #bb7f95);
	color: #fff;
	box-shadow: 0 16px 24px rgba(148, 97, 116, 0.24);
}

.cta-whatsapp {
	position: relative;
	overflow: hidden;
	will-change: transform, box-shadow;
}

.cta-whatsapp::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 55%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transform: skewX(-18deg);
	transition: left 540ms ease;
	pointer-events: none;
}

.ghost-btn {
	background: rgba(255, 255, 255, 0.72);
	border-color: var(--line);
	color: var(--text);
}

.primary-btn:disabled,
.ghost-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.quiz-card {
	margin-top: 1.2rem;
	background: linear-gradient(180deg, rgba(255, 250, 248, 0.97), rgba(255, 250, 248, 0.93));
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	padding: 1.25rem 1rem 1.15rem;
	box-shadow: var(--shadow);
	min-height: 0;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(6px);
}

.quiz-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(70% 44% at 10% 12%, rgba(255, 255, 255, 0.44), transparent 100%),
		radial-gradient(72% 46% at 88% 82%, rgba(243, 191, 208, 0.2), transparent 100%);
	pointer-events: none;
}

.progress-track {
	height: 0.64rem;
	border-radius: 999px;
	background: #ecdee3;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	width: 25%;
	background: linear-gradient(90deg, #d48fa7, #c98ea2);
	transition: width 280ms ease;
}

.step-label {
	margin: 0.75rem 0 0;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
}

.quiz-question {
	margin: 0.45rem 0 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.9rem, 9vw, 2.8rem);
	line-height: 1;
	font-weight: 600;
	min-height: 0;
	transition: opacity 220ms ease, transform 220ms ease;
	position: relative;
	z-index: 1;
}

.quiz-options {
	display: grid;
	gap: 0.62rem;
	margin-top: 1rem;
	min-height: 0;
	position: relative;
	z-index: 1;
}

.quiz-option {
	width: 100%;
	padding: 0.88rem 0.95rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.74);
	font: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text);
	transition: all 240ms ease;
}

.quiz-option.is-selected {
	background: rgba(208, 153, 174, 0.2);
	border-color: rgba(186, 118, 144, 0.5);
	box-shadow: inset 0 0 0 1px rgba(186, 118, 144, 0.25);
	transform: translateY(-1px) scale(1.01);
}

.transition-text {
	margin: 0;
	font-size: 0.9rem;
	min-height: 0;
	max-height: 0;
	color: #7b626b;
	padding: 0 0.8rem;
	border-radius: 18px;
	border: 1px solid transparent;
	background: rgba(255, 252, 253, 0);
	box-shadow: 0 10px 24px rgba(148, 104, 122, 0.1);
	opacity: 0;
	overflow: hidden;
	transform: translateY(6px);
	transition: opacity 280ms ease, transform 280ms ease, max-height 280ms ease, margin-top 280ms ease, padding 280ms ease;
	position: relative;
	z-index: 1;
}

.transition-text.is-visible {
	margin-top: 0.86rem;
	max-height: 7rem;
	padding: 0.72rem 0.8rem;
	border-color: rgba(238, 206, 217, 0.9);
	background: rgba(255, 252, 253, 0.72);
	opacity: 1;
	transform: translateY(0);
}

.quiz-actions {
	display: grid;
	grid-template-columns: 0.9fr 1.2fr;
	gap: 0.6rem;
	margin-top: 0.9rem;
}

.quiz-final {
	margin-top: 1.1rem;
	padding: 1rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.65);
	animation: fadeSlide 300ms ease;
}

.quiz-final h3 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.8rem, 8.4vw, 2.6rem);
	line-height: 1;
	font-weight: 600;
}

.quiz-final h4 {
	margin: 0.25rem 0 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.6rem, 7.8vw, 2.2rem);
	line-height: 0.98;
	font-weight: 600;
	color: #3e3136;
}

.quiz-final p {
	margin: 0.65rem 0 0;
	font-size: 0.94rem;
	color: var(--muted);
}

.final-btn {
	margin-top: 0.9rem;
}

.testimonials-section,
.inside-section,
.final-cta-section,
.faq-section {
	margin-top: 1.55rem;
	padding: 1.2rem 0.1rem;
}

.testimonials-section {
	position: relative;
	border-radius: 34px;
	overflow: hidden;
	padding: 1.35rem 0.7rem 1.2rem;
	isolation: isolate;
}

.testimonials-backdrop {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.testimonials-backdrop::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(248, 229, 236, 0.34), rgba(244, 220, 230, 0.28)),
		radial-gradient(70% 55% at 50% 15%, rgba(255, 255, 255, 0.2), transparent 100%);
}

.testimonials-backdrop-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
	transform: scale(1.08);
	filter: saturate(0.94) contrast(1.05);
}

.editorial-title {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 11vw, 3.6rem);
	line-height: 0.96;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-align: center;
	text-wrap: balance;
	max-width: 18ch;
	margin-inline: auto;
}

.feature-grid {
	display: grid;
	gap: 0.85rem;
	margin-top: 1rem;
}

.testimonial-slider {
	margin-top: 1rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.55rem;
	align-items: center;
}

.testimonial-viewport {
	overflow: hidden;
	border-radius: 30px;
	touch-action: pan-y;
	cursor: grab;
}

.testimonial-viewport.is-dragging {
	cursor: grabbing;
}

.testimonial-track {
	display: flex;
	transition: transform 320ms ease;
	will-change: transform;
}

.testimonial-track .testimonial-card {
	min-width: 100%;
}

.testimonial-nav {
	width: 2.45rem;
	height: 2.45rem;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: rgba(255, 250, 248, 0.8);
	color: var(--text);
	font: inherit;
	font-size: 1.05rem;
	line-height: 1;
	box-shadow: 0 8px 20px rgba(130, 93, 108, 0.12);
	cursor: pointer;
	transition: transform 180ms ease, opacity 180ms ease;
}

.testimonial-nav:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.testimonial-counter {
	margin: 0.65rem 0 0;
	text-align: center;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 600;
}

.testimonial-card,
.feature-card,
.final-cta-card {
	background: linear-gradient(175deg, rgba(255, 252, 253, 0.26), rgba(255, 248, 251, 0.16));
	border: 1px solid var(--line);
	border-radius: 30px;
	box-shadow: 0 14px 36px rgba(130, 93, 108, 0.13);
	backdrop-filter: blur(3px);
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

.testimonial-card {
	padding: 1.1rem;
	min-height: 12.5rem;
}

.testimonial-card p {
	margin: 0;
	font-size: 0.93rem;
	color: #4c3f44;
	line-height: 1.7;
}

.testimonial-card footer {
	margin-top: 0.8rem;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text);
}

.inside-subtitle {
	margin: 0.55rem 0 0;
	text-align: center;
	font-size: 0.98rem;
	color: #6a565d;
	max-width: 28ch;
	margin-inline: auto;
}

.section-label {
	margin: 0 0 0.55rem;
	text-align: center;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 700;
}

.inside-section {
	position: relative;
	isolation: isolate;
	padding-top: 1.6rem;
	padding-bottom: 1.6rem;
	overflow: hidden;
}

.inside-section::before {
	content: "";
	position: absolute;
	inset: 0.35rem -0.2rem;
	background:
		radial-gradient(65% 46% at 12% 24%, rgba(255, 255, 255, 0.44) 0%, transparent 100%),
		radial-gradient(58% 44% at 86% 68%, rgba(238, 178, 199, 0.3) 0%, transparent 100%),
		linear-gradient(180deg, rgba(255, 242, 247, 0.75), rgba(248, 219, 229, 0.4));
	border: 1px solid rgba(236, 198, 214, 0.72);
	border-radius: 36px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 18px 36px rgba(156, 113, 130, 0.12);
	z-index: -1;
}

.inside-carousel {
	margin-top: 1.25rem;
	padding: 0.75rem 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 8%;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	position: relative;
	mask-image: none;
}

.inside-carousel::-webkit-scrollbar {
	display: none;
}

.inside-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 92%;
	gap: 1rem;
	padding-inline: 8%;
	align-items: start;
}

.inside-slide {
	scroll-snap-align: center;
	scroll-snap-stop: always;
	opacity: 0.88;
	transform: translateY(8px) scale(0.95);
	filter: saturate(0.94);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 340ms ease, filter 340ms ease;
	will-change: transform, opacity;
}

.inside-slide.is-active {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: saturate(1) blur(0);
}

.inside-media-wrap {
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid rgba(239, 209, 220, 0.95);
	aspect-ratio: 9 / 16;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 250, 0.56)) padding-box,
		linear-gradient(145deg, rgba(245, 216, 227, 0.92), rgba(255, 250, 253, 0.98), rgba(232, 191, 207, 0.88)) border-box;
	box-shadow:
		0 20px 44px rgba(130, 93, 108, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.62),
		inset 0 1px 0 rgba(255, 255, 255, 0.82),
		inset 0 -10px 22px rgba(255, 235, 244, 0.32);
	padding: 0.28rem;
	transform: translateY(var(--slide-shift, 0px));
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 340ms ease;
	position: relative;
}

.inside-media-wrap::before {
	content: "";
	position: absolute;
	inset: 0.35rem;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	pointer-events: none;
	mix-blend-mode: screen;
}

.inside-media {
	width: 100%;
	height: 100%;
	border-radius: 26px;
	display: block;
	object-fit: cover;
	object-position: center;
	transform: translateX(var(--parallax, 0px));
	transition: transform 340ms ease;
}

.inside-slide:nth-child(1) .inside-media,
.inside-slide:nth-child(4) .inside-media {
	object-position: center 18%;
}

.inside-caption {
	margin: 0.78rem auto 0;
	max-width: 90%;
	text-align: center;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.95rem;
	line-height: 0.92;
	font-weight: 600;
	color: #33292d;
	text-wrap: balance;
}

.inside-indicators {
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 0.82rem;
}

.inside-dot {
	width: 0.42rem;
	height: 0.4rem;
	border-radius: 50%;
	background: rgba(201, 142, 162, 0.32);
	transition: transform 260ms ease, background-color 260ms ease, width 260ms ease;
}

.inside-dot.is-active {
	background: rgba(190, 117, 145, 0.9);
	transform: scale(1.15);
	width: 1.15rem;
	border-radius: 999px;
}

.inside-progress {
	margin: 0.65rem auto 0;
	width: min(14.5rem, 84%);
	height: 0.3rem;
	border-radius: 999px;
	background: rgba(201, 142, 162, 0.2);
	overflow: hidden;
}

.inside-progress-fill {
	height: 100%;
	width: 25%;
	border-radius: inherit;
	background: linear-gradient(90deg, #d292ab, #bc7e95);
	transition: width 300ms ease;
}

.editorial-panel-section {
	margin-top: 1.9rem;
	padding: 1.45rem 1.05rem 1.5rem;
	border-radius: 34px;
	border: 1px solid rgba(233, 207, 216, 0.84);
	background: linear-gradient(178deg, rgba(255, 247, 250, 0.72), rgba(255, 238, 244, 0.5));
	box-shadow: 0 16px 32px rgba(130, 93, 108, 0.11);
	backdrop-filter: blur(6px);
}

.panel-bubbles {
	margin-top: 1rem;
	display: grid;
	gap: 0.65rem;
}

.panel-bubble,
.panel-chip {
	margin: 0;
	padding: 0.78rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(220, 183, 198, 0.72);
	background: linear-gradient(180deg, rgba(255, 252, 254, 0.86), rgba(255, 243, 248, 0.72));
	font-size: 0.95rem;
	line-height: 1.35;
	color: #3d3036;
	box-shadow: 0 10px 22px rgba(130, 93, 108, 0.09);
}

.panel-grid {
	margin-top: 1rem;
	display: grid;
	gap: 0.7rem;
}

.panel-quote {
	margin: 1.2rem 0 0;
	padding: 1rem 1rem 0;
	text-align: center;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 9vw, 2.65rem);
	line-height: 0.92;
	font-weight: 600;
	color: #2f252a;
	text-wrap: balance;
	border-top: 1px solid rgba(220, 183, 198, 0.56);
}

.feature-card {
	padding: 1.08rem;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card h3 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.9rem;
	line-height: 0.95;
	font-weight: 600;
}

.feature-card p {
	margin: 0.45rem 0 0;
	font-size: 0.92rem;
	color: #54474c;
}

.final-cta-card {
	padding: 1.3rem 1.1rem 1.2rem;
	text-align: center;
	border-radius: 36px;
}

.final-cta-card h2 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.05rem, 10.5vw, 3.2rem);
	line-height: 0.96;
	font-weight: 600;
}

.final-cta-card p {
	margin: 0.7rem auto 0;
	max-width: 32ch;
	font-size: 0.95rem;
	color: var(--muted);
}

.final-cta-card .primary-btn {
	max-width: 16rem;
	margin-inline: auto;
}

.faq-list {
	margin-top: 1rem;
	display: grid;
	gap: 0.8rem;
}

.faq-item {
	border-radius: 30px;
	border: 1px solid rgba(234, 215, 220, 0.95);
	background: linear-gradient(175deg, rgba(255, 250, 248, 0.96), rgba(255, 250, 248, 0.84));
	box-shadow: 0 14px 30px rgba(130, 93, 108, 0.12);
	overflow: hidden;
	backdrop-filter: blur(6px);
	transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.faq-item-premium {
	border-color: rgba(222, 184, 199, 0.95);
	background:
		radial-gradient(110% 90% at 8% 4%, rgba(255, 255, 255, 0.45), transparent 60%),
		linear-gradient(176deg, rgba(255, 248, 251, 0.98), rgba(255, 242, 248, 0.88));
	box-shadow:
		0 16px 34px rgba(146, 101, 119, 0.16),
		0 0 0 1px rgba(255, 255, 255, 0.42) inset;
}

.faq-item-premium .faq-trigger {
	font-size: 1.06rem;
	letter-spacing: 0.005em;
	color: #33272c;
}

.faq-item-premium.is-open {
	box-shadow:
		0 20px 38px rgba(151, 104, 124, 0.24),
		0 0 0 1px rgba(255, 255, 255, 0.55) inset,
		0 0 22px rgba(217, 162, 183, 0.3);
}

.faq-trigger {
	width: 100%;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.1rem;
	font: inherit;
	font-size: 1.02rem;
	font-weight: 600;
	color: #372f33;
	text-align: left;
	cursor: pointer;
	transition: background-color 220ms ease;
}

.faq-icon {
	width: 1.9rem;
	height: 1.9rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(218, 179, 193, 0.85);
	font-size: 1.1rem;
	font-weight: 500;
	color: #84656f;
	transition: transform 260ms ease;
	flex-shrink: 0;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 360ms cubic-bezier(0.22, 1, 0.36, 1), padding 360ms ease;
	padding: 0 1.1rem;
}

.faq-content p {
	margin: 0;
	font-size: 0.93rem;
	color: #5d4d54;
	line-height: 1.68;
}

.faq-content ul {
	margin: 0.6rem 0 0;
	padding-left: 1.1rem;
	color: #5d4d54;
	font-size: 0.92rem;
	line-height: 1.65;
}

.faq-item.is-open .faq-trigger {
	background: rgba(255, 245, 250, 0.48);
}

.faq-item-premium.is-open .faq-trigger {
	background: rgba(255, 241, 248, 0.62);
}

.faq-item.is-open .faq-icon {
	transform: rotate(45deg);
}

.faq-item.is-open .faq-content {
	padding: 0 1.1rem 1rem;
}

.site-footer {
	margin: 1.5rem auto 0;
	padding: 0 0.7rem;
	width: min(100% - 1rem, 62rem);
}

.site-footer-inner {
	text-align: center;
	padding: 1.35rem 1rem 1.05rem;
	border-radius: 28px;
	border: 1px solid rgba(233, 207, 216, 0.9);
	background: linear-gradient(180deg, rgba(255, 247, 250, 0.92), rgba(255, 243, 247, 0.78));
	box-shadow: 0 16px 34px rgba(130, 93, 108, 0.1);
	backdrop-filter: blur(6px);
}

.footer-copy {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	line-height: 1.1;
	font-weight: 600;
	color: #3b2f34;
}

.footer-divider {
	width: min(17rem, 82%);
	height: 1px;
	margin: 0 auto 1rem;
	background: linear-gradient(to right, transparent, rgba(191, 143, 161, 0.5), transparent);
}

.footer-brand {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.8rem, 8.8vw, 2.45rem);
	line-height: 0.95;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #30282b;
}

.footer-tagline {
	margin: 0.52rem 0 0;
	font-size: 0.93rem;
	color: #68535b;
}

.footer-nav {
	margin-top: 0.95rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem 0.9rem;
}

.footer-nav a {
	position: relative;
	font-size: 0.88rem;
	color: #5f4d54;
	text-decoration: none;
	padding-bottom: 0.12rem;
	transition: color 220ms ease, transform 220ms ease;
}

.footer-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: rgba(188, 129, 149, 0.65);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms ease;
}

.cookie-banner {
	position: fixed;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 5.2rem;
	border-radius: 20px;
	border: 1px solid rgba(231, 201, 212, 0.92);
	background: linear-gradient(180deg, rgba(255, 249, 251, 0.96), rgba(255, 244, 248, 0.93));
	box-shadow: 0 18px 30px rgba(104, 72, 83, 0.18);
	padding: 0.88rem;
	z-index: 45;
	opacity: 0;
	transform: translateY(14px);
	pointer-events: none;
	transition: opacity 240ms ease, transform 240ms ease;
}

.cookie-banner.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.cookie-banner.is-hidden {
	display: none;
}

.cookie-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #54444a;
}

.cookie-actions {
	margin-top: 0.7rem;
	display: flex;
	gap: 0.55rem;
}

.cookie-btn {
	flex: 1;
	height: 2.5rem;
	border-radius: 999px;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.cookie-btn-decline {
	border: 1px solid rgba(216, 184, 195, 0.95);
	background: rgba(255, 255, 255, 0.8);
	color: #5f4f55;
}

.cookie-btn-accept {
	border: 1px solid rgba(190, 129, 150, 0.88);
	background: linear-gradient(170deg, #cf93a8, #bb7f95);
	color: #fff;
	box-shadow: 0 10px 18px rgba(148, 97, 116, 0.28);
}

.sticky-entry {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.8rem 1rem 1rem;
	background: linear-gradient(to top, rgba(246, 227, 232, 0.98), rgba(246, 227, 232, 0.84) 68%, transparent);
	backdrop-filter: blur(8px);
	z-index: 35;
}

.floating-start-now {
	position: fixed;
	left: 50%;
	bottom: var(--floating-cta-bottom);
	transform: translate(-50%, 0);
	height: 3.45rem;
	min-width: min(22rem, calc(100vw - 1.6rem));
	padding: 0 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	text-decoration: none;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.015em;
	color: #3b2a31;
	background:
		linear-gradient(160deg, rgba(249, 233, 241, 0.92), rgba(242, 220, 231, 0.88)),
		rgba(255, 255, 255, 0.52);
	border: 1px solid rgba(233, 198, 213, 0.96);
	backdrop-filter: blur(14px) saturate(1.18);
	-webkit-backdrop-filter: blur(14px) saturate(1.18);
	box-shadow:
		0 18px 30px rgba(118, 82, 98, 0.28),
		0 0 0 1px rgba(255, 255, 255, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
	z-index: 120;
	opacity: 1;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, background 260ms ease, opacity 260ms ease;
}

.floating-start-now::before {
	content: "";
	position: absolute;
	inset: 0.16rem;
	border-radius: inherit;
	border: 1px solid rgba(255, 255, 255, 0.6);
	pointer-events: none;
}

.floating-start-now::after {
	content: "";
	position: absolute;
	left: 14%;
	right: 14%;
	bottom: -0.35rem;
	height: 0.7rem;
	border-radius: 999px;
	background: radial-gradient(ellipse at center, rgba(206, 149, 172, 0.28), rgba(206, 149, 172, 0));
	filter: blur(6px);
	pointer-events: none;
}

.floating-start-now.is-mounted {
	opacity: 1;
	transform: translate(-50%, 0);
}

.floating-start-now.is-scrolling {
	transform: translate(-50%, -2px);
	box-shadow:
		0 22px 36px rgba(118, 82, 98, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.58),
		inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.sticky-entry-line {
	margin: 0 0 0.46rem;
	text-align: center;
	font-size: 0.9rem;
	color: #6c5960;
	letter-spacing: 0.01em;
}

.sticky-enter-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 3.7rem;
	border-radius: 999px;
	text-decoration: none;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.28rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #2b2628;
	background: #c6e5f7;
	box-shadow: 0 18px 26px rgba(58, 52, 56, 0.32);
	border: 1px solid rgba(180, 214, 233, 0.9);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.sticky-enter-btn:active {
	transform: translateY(1px);
}

.sticky-cta {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	height: 3.65rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.28rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #2f2a2d;
	background: var(--sticky);
	border-radius: 999px;
	box-shadow: 0 16px 26px rgba(58, 52, 56, 0.33);
	z-index: 30;
}

@keyframes fadeSlide {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ambientFloatA {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}
	to {
		transform: translate3d(-2.5vw, 1.8vw, 0) scale(1.05);
	}
}

@keyframes ambientFloatB {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}
	to {
		transform: translate3d(2vw, -2vw, 0) scale(1.06);
	}
}

@media (min-width: 768px) {
	.first-screen {
		width: min(100% - 2rem, 64rem);
		padding-top: 1.5rem;
	}

	.hero {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 1.4rem;
		align-items: end;
	}

	.hero-image-wrap {
		min-height: 34rem;
		border-radius: 32px;
	}

	.hero-image {
		height: 34rem;
		object-position: center 24%;
	}

	.hero-card {
		margin: 0;
		align-self: center;
		padding: 2.1rem 1.95rem;
	}

	.hero-card h1 {
		font-size: clamp(3rem, 6vw, 4.9rem);
	}

	.subhead {
		font-size: 1.03rem;
		max-width: 36ch;
	}

	.quiz-card {
		max-width: 56rem;
		margin: 1.5rem auto 0;
		padding: 1.8rem;
		min-height: 0;
	}

	.quiz-question {
		min-height: 0;
	}

	.quiz-options {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
		min-height: auto;
	}

	.testimonials-section,
	.inside-section,
	.final-cta-section,
	.faq-section {
		margin-top: 2.2rem;
		padding-inline: 0.2rem;
	}

	.testimonials-section {
		padding: 1.8rem 1.2rem 1.6rem;
		border-radius: 38px;
	}

	.editorial-title {
		font-size: clamp(3rem, 5.4vw, 4.5rem);
		max-width: 14ch;
	}

	.testimonial-slider {
		max-width: 54rem;
		margin-inline: auto;
		gap: 0.9rem;
	}

	.testimonial-nav {
		width: 2.8rem;
		height: 2.8rem;
	}

	.testimonial-counter {
		font-size: 0.86rem;
	}

	.section-label {
		font-size: 0.78rem;
	}

	.inside-section {
		padding: 1.9rem 1.2rem 1.85rem;
	}

	.editorial-panel-section {
		padding: 1.85rem 1.45rem 1.9rem;
	}

	.panel-grid {
		grid-template-columns: 1fr 1fr;
	}

	.inside-carousel {
		scroll-padding-inline: 18%;
	}

	.inside-track {
		grid-auto-columns: 68%;
		padding-inline: 18%;
	}

	.inside-caption {
		font-size: 2.2rem;
	}

	.inside-progress {
		width: 16rem;
	}

	.faq-list {
		max-width: 54rem;
		margin: 1.2rem auto 0;
		gap: 0.95rem;
	}

	.site-footer {
		margin-top: 2.2rem;
		padding-inline: 1rem;
	}

	.site-footer-inner {
		padding: 1.7rem 1.4rem 1.35rem;
	}

	.footer-copy {
		font-size: 1.42rem;
	}

	.cookie-banner {
		left: max(1rem, calc((100vw - 64rem) / 2 + 1rem));
		right: max(1rem, calc((100vw - 64rem) / 2 + 1rem));
		max-width: 34rem;
		bottom: 5.4rem;
	}

	.floating-start-now {
		bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
		min-width: 18rem;
		max-width: 22rem;
	}

	@media (hover: hover) {
		.feature-card:hover {
			transform: translateY(-3px);
			box-shadow: 0 18px 32px rgba(130, 93, 108, 0.18);
			border-color: #ddc0cb;
		}

		.quiz-option:hover {
			background: rgba(255, 255, 255, 0.92);
			border-color: rgba(218, 183, 196, 0.95);
			transform: translateY(-1px);
			box-shadow: 0 10px 18px rgba(130, 93, 108, 0.12);
		}

		.hero-image-wrap:hover .hero-image {
			transform: scale(1.03);
			transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
		}

		.testimonial-card:hover,
		.faq-item:hover,
		.site-footer-inner:hover {
			transform: translateY(-3px);
			box-shadow: 0 22px 34px rgba(130, 93, 108, 0.17);
		}

		.faq-item:hover {
			box-shadow: 0 18px 32px rgba(130, 93, 108, 0.16);
		}

		.footer-nav a:hover {
			color: #44373d;
			transform: translateY(-1px);
		}

		.footer-nav a:hover::after {
			transform: scaleX(1);
		}

		.cookie-btn:hover {
			transform: translateY(-1px);
		}

		.cookie-btn-accept:hover {
			box-shadow: 0 12px 20px rgba(148, 97, 116, 0.32);
		}

		.cta-whatsapp:hover {
			transform: translateY(-2px);
			box-shadow: 0 20px 30px rgba(121, 79, 97, 0.28);
		}

		.cta-whatsapp:hover::after {
			left: 130%;
		}

		.floating-start-now:hover {
			transform: translate(-50%, -3px);
			box-shadow:
				0 24px 38px rgba(118, 82, 98, 0.34),
				0 0 0 1px rgba(255, 255, 255, 0.62),
				inset 0 1px 0 rgba(255, 255, 255, 0.78);
		}
	}
}

@media (min-width: 1024px) {
	body {
		padding-bottom: 10rem;
	}

	.first-screen {
		width: min(100% - 3.2rem, 74rem);
		padding-top: 2rem;
	}

	.hero {
		grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
		gap: 2rem;
	}

	.hero-image-wrap {
		min-height: 40rem;
		border-radius: 34px;
	}

	.hero-image {
		height: 40rem;
		object-position: center 22%;
	}

	.hero-card {
		max-width: 34rem;
		padding: 2.35rem 2.2rem 2.05rem;
		border-radius: 36px;
		margin: 0 0 0.7rem -1.5rem;
	}

	.hero-card h1 {
		font-size: clamp(3.7rem, 5.2vw, 5.2rem);
		line-height: 0.9;
	}

	.subhead {
		font-size: 1.08rem;
	}

	.quiz-card {
		max-width: 58rem;
		margin: 2rem auto 0;
		padding: 2rem 2rem 1.7rem;
	}

	.quiz-question {
		max-width: 22ch;
	}

	.testimonials-section,
	.inside-section,
	.faq-section {
		max-width: 72rem;
		margin: 2.8rem auto 0;
	}

	.testimonials-section {
		padding: 2.1rem 2rem 1.9rem;
		border-radius: 40px;
	}

	.testimonial-slider {
		max-width: none;
	}

	.inside-section {
		padding: 2.1rem 1.5rem 2rem;
	}

	.inside-track {
		grid-auto-columns: 52%;
		padding-inline: 26%;
	}

	.faq-section {
		padding-inline: 0.3rem;
	}

	.faq-list {
		max-width: none;
	}

	.testimonials-section .editorial-title,
	.inside-section .editorial-title,
	.faq-section .editorial-title {
		text-align: left;
		margin-inline: 0;
		max-width: none;
		padding-left: 0.35rem;
	}

	.inside-section .section-label,
	.inside-section .inside-subtitle {
		text-align: left;
		margin-inline: 0;
		padding-left: 0.35rem;
	}

	.site-footer {
		max-width: 72rem;
		padding-inline: 0.4rem;
	}

	.floating-start-now {
		height: 3.2rem;
		min-width: 15.5rem;
		max-width: 16.5rem;
		font-size: 1.1rem;
		bottom: 1.15rem;
	}
}


@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
	}

	html.js body,
	html.js body.page-ready,
	.reveal-ready,
	.reveal-ready.is-revealed {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}
}

.cta-whatsapp:focus-visible {
	outline: 2px solid rgba(190, 129, 150, 0.9);
	outline-offset: 2px;
}

.ru-site {
	background:
		radial-gradient(50rem 34rem at 92% -8%, rgba(217, 163, 180, 0.2), transparent 62%),
		radial-gradient(42rem 28rem at -8% 30%, rgba(217, 163, 180, 0.16), transparent 58%),
		#f6edee;
	color: #2b2227;
}

.ru-site .brand,
.ru-site .section-label {
	color: #d9a3b4;
}

.ru-site .subhead,
.ru-site .inside-subtitle,
.ru-site .faq-content p,
.ru-site .faq-content li,
.ru-site .footer-tagline,
.ru-site .cookie-text,
.ru-site .testimonial-counter,
.ru-site .transition-text {
	color: #7e6870;
}

.ru-site .hero-card h1,
.ru-site .editorial-title,
.ru-site .inside-caption,
.ru-site .footer-copy {
	font-family: "Cormorant Garamond", serif;
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: 0.005em;
	text-wrap: balance;
}

.ru-site .hero-card h1 {
	font-size: clamp(2.65rem, 12vw, 3.55rem);
}

.ru-site .editorial-title {
	font-size: clamp(2.3rem, 10.5vw, 3.7rem);
}

.ru-site .subhead {
	font-size: 1rem;
	line-height: 1.58;
}

.ru-site .quiz-question {
	line-height: 1.12;
	letter-spacing: 0;
}

.ru-site .quiz-option,
.ru-site .faq-trigger,
.ru-site .cookie-btn,
.ru-site .sticky-entry-line,
.ru-site .footer-nav a,
.ru-site .lang-switch a {
	font-family: "Manrope", sans-serif;
}

.ru-site .hero-card,
.ru-site .quiz-card,
.ru-site .testimonial-card,
.ru-site .faq-item,
.ru-site .site-footer-inner,
.ru-site .cookie-banner {
	background: rgba(255, 255, 255, 0.55);
	border-color: rgba(217, 163, 180, 0.25);
	backdrop-filter: blur(10px);
}

.ru-site .inside-slide {
	background: transparent;
	transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease, filter 420ms ease;
}

.ru-site .inside-media-wrap {
	border-color: rgba(217, 163, 180, 0.25);
	box-shadow:
		0 18px 34px rgba(130, 93, 108, 0.16),
		0 0 0 1px rgba(255, 255, 255, 0.58),
		inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.ru-site .inside-caption {
	position: relative;
	margin-top: 0.58rem;
	padding-top: 0.42rem;
}

.ru-site .inside-caption::before {
	content: "";
	position: absolute;
	left: -4%;
	right: -4%;
	top: -0.82rem;
	height: 1.5rem;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(246, 237, 238, 0), rgba(246, 237, 238, 0.92));
	pointer-events: none;
	z-index: -1;
}

.ru-site .inside-progress-fill {
	transition: width 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ru-site .primary-btn,
.ru-site .sticky-enter-btn,
.ru-site .floating-start-now {
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	letter-spacing: 0.035em;
	text-transform: uppercase;
	background:
		linear-gradient(180deg, rgba(255, 247, 251, 0.95), rgba(245, 227, 236, 0.92)),
		#f6edee;
	color: #32272c;
	border: 1px solid rgba(217, 163, 180, 0.4);
	box-shadow:
		0 14px 28px rgba(95, 74, 84, 0.14),
		0 0 0 1px rgba(255, 255, 255, 0.56) inset;
}

.ru-site .cookie-btn-accept,
.ru-site .testimonial-nav {
	font-family: "Manrope", sans-serif;
	font-weight: 500;
	letter-spacing: 0.02em;
	background: #ddecf7;
	color: #2b2227;
	border: 1px solid rgba(217, 163, 180, 0.25);
	box-shadow: 0 14px 26px rgba(95, 74, 84, 0.15);
}

.ru-site .testimonial-nav {
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.72);
}

.ru-site .floating-start-now {
	font-size: 1.02rem;
}

.ru-site .testimonial-card p {
	font-size: 0.95rem;
	line-height: 1.62;
	color: #2b2227;
}

.ru-site .faq-item {
	border-radius: 24px;
}

.ru-site .floating-start-now::before,
.ru-site .floating-start-now::after {
	display: none;
}

.ru-site .cookie-btn-decline {
	border: 1px solid rgba(217, 163, 180, 0.25);
	background: rgba(255, 255, 255, 0.72);
	color: #7e6870;
}

.ru-site .lang-switch {
	border: 1px solid rgba(217, 163, 180, 0.25);
	background: rgba(255, 255, 255, 0.68);
}

.ru-site .lang-switch a.is-active {
	background: #d9a3b4;
	box-shadow: none;
}
