:root {
	--cream: #f4eee5;
	--paper: #fffaf4;
	--ink: #063d35;
	--muted: #42605a;
	--green: #00463b;
	--green-deep: #00372f;
	--rust: #bf4c38;
	--line: rgba(6, 61, 53, 0.12);
	--shadow: 0 12px 30px rgba(59, 48, 37, 0.11);
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--ink);
	background: var(--cream);
	font-family: Inter, system-ui, sans-serif;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
	width: 100%;
}
button,
summary,
a {
	-webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--rust);
	outline-offset: 3px;
}

.landing-shell {
	width: min(100%, 1240px);
	margin: auto;
	padding: 10px;
}
.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 66px;
	padding: 14px 12px;
	border-radius: 0 0 20px 20px;
	background: rgba(244, 238, 229, 0.94);
	backdrop-filter: blur(12px);
}
.countdown {
	display: flex;
	gap: 8px;
	align-items: baseline;
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 700;
	white-space: nowrap;
}
.countdown-label {
	color: var(--rust);
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.countdown-unit strong {
	font-family: Fraunces, Georgia, serif;
	font-size: 1.05rem;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}
.countdown.is-live .countdown-unit {
	display: none;
}

.card {
	margin: 10px 0;
	padding: clamp(22px, 4vw, 44px);
	border-radius: 22px;
	box-shadow: var(--shadow);
}
.light-card {
	background: var(--paper);
}
.green-card {
	color: #fff;
	background:
		radial-gradient(
			circle at 90% 90%,
			rgba(197, 220, 181, 0.18),
			transparent 15rem
		),
		linear-gradient(145deg, var(--green), var(--green-deep));
}
.pill,
.section-kicker {
	display: inline-flex;
	margin: 0 0 14px;
	color: var(--rust);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.pill {
	gap: 8px;
	align-items: center;
	padding: 8px 12px;
	border: 1px solid rgba(191, 76, 56, 0.36);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.66);
}
.live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rust);
	box-shadow: 0 0 0 0 rgba(191, 76, 56, 0.5);
	animation: live-pulse 1.6s ease-out infinite;
}
@keyframes live-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(191, 76, 56, 0.55);
	}
	70% {
		box-shadow: 0 0 0 7px rgba(191, 76, 56, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(191, 76, 56, 0);
	}
}
@media (prefers-reduced-motion: reduce) {
	.live-dot {
		animation: none;
	}
}
h1,
h2 {
	margin: 0;
	font-family: Fraunces, Georgia, serif;
	line-height: 0.98;
	letter-spacing: -0.035em;
}
h1 {
	max-width: 550px;
	font-size: clamp(3.4rem, 8vw, 6.4rem);
}
h2 {
	font-size: clamp(2rem, 4.2vw, 4rem);
}
h3 {
	margin: 8px 0 4px;
	font-size: 1rem;
}
p {
	line-height: 1.55;
}

.hero-card {
	position: relative;
	min-height: 690px;
	display: flex;
	overflow: hidden;
	background:
		linear-gradient(
			180deg,
			rgba(255, 250, 244, 0.96) 0 29%,
			rgba(255, 250, 244, 0.76) 48%,
			rgba(255, 250, 244, 0.08) 70%
		),
		url("Fondo Carolina.webp") center top / auto 125% no-repeat;
}
.hero-content {
	position: relative;
	z-index: 1;
	max-width: 520px;
}
.hero-text {
	max-width: 350px;
	margin: 18px 0 22px;
	color: #38524d;
	font-size: 1rem;
}
.button {
	display: inline-flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 19px;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 800;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}
.icon {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.button-arrow {
	width: 18px;
	height: 18px;
}
.button:hover {
	transform: translateY(-2px);
}
.button-dark {
	color: white;
	background: var(--green);
}
.button-outline {
	border: 1px solid rgba(255, 255, 255, 0.85);
	color: white;
}

.photo-card {
	min-height: 640px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	color: white;
}
.sunset-card {
	background:
		linear-gradient(
			180deg,
			rgba(0, 31, 27, 0.08) 0%,
			rgba(0, 31, 27, 0.3) 45%,
			rgba(0, 31, 27, 0.9) 100%
		),
		url("segunda_seccion.webp") center 78% / cover no-repeat;
}
.image-statement-content {
	position: relative;
	z-index: 1;
}
.image-statement h2 {
	max-width: 650px;
	font-size: clamp(2.3rem, 5vw, 4.3rem);
}
.image-statement h2 span,
.image-statement p > span {
	display: block;
}
.image-statement p {
	max-width: 530px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.94);
}
.mini-warning {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	max-width: 450px;
	margin-top: 18px;
	padding: 14px;
	border-radius: 14px;
	color: var(--ink);
	background: rgba(255, 250, 244, 0.95);
	font-weight: 800;
}
.mini-warning p {
	margin: 0;
	color: inherit;
	line-height: 1.35;
}
.brain-icon {
	flex: 0 0 31px;
	width: 31px;
	height: 31px;
	margin-top: 1px;
	color: var(--rust);
}
.reason-list > article > span {
	display: grid;
	place-items: center;
	color: var(--rust);
}
.reason-list .icon {
	width: 28px;
	height: 28px;
}
.steps .how-icon {
	width: 38px;
	height: 38px;
	color: var(--rust);
}
.map-card {
	min-height: 810px;
	overflow: hidden;
	background-color: var(--green-deep);
	background-image: url("seccion_3v1.webp");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
}
.map-card-content {
	position: relative;
	z-index: 1;
	max-width: 520px;
}
.map-card-content p,
.process-card li,
.small-copy {
	color: rgba(255, 255, 255, 0.84);
}

.reason-list,
.steps,
.badge-list {
	display: grid;
	gap: 10px;
}
.reason-list article,
.steps article,
.badge-list span {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 10px;
	align-items: center;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.72);
}
.reason-list p,
.steps p {
	margin: 0;
}
.discovery-card {
	padding: clamp(24px, 5vw, 52px);
}
.discovery-header {
	margin-bottom: 24px;
	text-align: center;
}
.discovery-header h2 {
	font-size: clamp(2.35rem, 10vw, 4rem);
}
.discovery-header p {
	max-width: 390px;
	margin: 10px auto 0;
	color: var(--muted);
	font-size: clamp(0.95rem, 4.2vw, 1.12rem);
	font-weight: 500;
	line-height: 1.45;
}
.discovery-card .feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.discovery-card .feature-grid article {
	min-width: 0;
	min-height: 190px;
	padding: 16px 12px;
	border: 1px solid rgba(6, 61, 53, 0.07);
	border-radius: 18px;
	box-shadow: 0 7px 18px rgba(59, 48, 37, 0.08);
	background: #fffdf9;
}
.discovery-card .feature-icon {
	width: 43px;
	height: 43px;
	margin-bottom: 10px;
	color: var(--rust);
}
.discovery-card .feature-grid h3 {
	margin: 0 0 10px;
	font-family: Fraunces, Georgia, serif;
	font-size: clamp(1rem, 4.4vw, 1.35rem);
	line-height: 1.02;
	letter-spacing: -0.025em;
}
.discovery-card .feature-grid p {
	margin: 0;
	color: var(--muted);
	font-size: clamp(0.76rem, 3.5vw, 0.94rem);
	line-height: 1.5;
	overflow-wrap: anywhere;
}
.process-card {
	background:
		var(--green-deep) url("seccion_6.webp") left bottom / cover no-repeat;
	padding-bottom: clamp(130px, 22vw, 200px);
}
.process-card ul {
	display: grid;
	gap: 13px;
	max-width: 580px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}
.process-card li {
	display: flex;
	align-items: center;
}
.check-icon {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	margin-right: 10px;
	padding: 5px;
	border-radius: 50%;
	color: var(--green);
	background: #fff;
	stroke-width: 2.4;
}
.price-card {
	background: url("seccion_7.webp") center bottom / cover no-repeat;
}
.price-card h2 {
	color: #fff;
	font-size: clamp(3.4rem, 8vw, 5.8rem);
}
.price-intro {
	max-width: 410px;
	margin: 22px 0 0;
	color: #fff;
	font-size: clamp(1rem, 2vw, 1.35rem);
	line-height: 1.35;
}
.price-intro strong {
	display: block;
	font-size: 1.55em;
	line-height: 1.18;
}
.price-old {
	text-decoration: line-through;
	text-decoration-color: var(--rust);
	text-decoration-thickness: 3px;
}
.whatsapp-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.price-box {
	display: grid;
	gap: 5px;
	max-width: 420px;
	margin: 18px 0;
	padding: 18px;
	border-radius: 16px;
	color: var(--ink);
	background: var(--paper);
}
.price-box span,
.price-box strong {
	color: var(--rust);
	font-weight: 800;
}
.price-box strong {
	font-size: 2.65rem;
	line-height: 1;
}
.price-box em {
	color: var(--green);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 900;
}
.plan-box {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-top: 14px;
	padding: 18px;
	border-radius: 16px;
	color: white;
	background: var(--green);
}
.plan-icon {
	flex: 0 0 clamp(38px, 11vw, 52px);
	width: clamp(38px, 11vw, 52px);
	height: clamp(38px, 11vw, 52px);
	color: rgba(255, 255, 255, 0.9);
}
.plan-box span {
	min-width: 0;
}
.about-photo {
	aspect-ratio: 1 / 0.75;
	margin: 8px 0 14px;
	border-radius: 18px;
	object-fit: cover;
	object-position: center 36%;
}
.badge-list span {
	grid-template-columns: 24px 1fr;
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 700;
}
.badge-list .icon {
	width: 20px;
	height: 20px;
	color: var(--rust);
}
.testimonials-card h2 {
	max-width: 660px;
	margin-bottom: 20px;
}
.carousel {
	position: relative;
	max-width: 540px;
	overflow: hidden;
	border-radius: 18px;
	background: #fff;
}
.carousel-track {
	display: flex;
	transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-slide {
	flex: 0 0 100%;
	margin: 0;
}
.testimonial-slide img {
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.carousel-btn {
	position: absolute;
	top: 50%;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	color: var(--green);
	background: rgba(255, 250, 244, 0.9);
	cursor: pointer;
	transform: translateY(-50%);
}
.carousel-btn .icon {
	width: 20px;
	height: 20px;
	stroke-width: 2;
}
.carousel-btn.prev {
	left: 10px;
}
.carousel-btn.next {
	right: 10px;
}
.carousel-dots {
	position: absolute;
	right: 0;
	bottom: 12px;
	left: 0;
	display: flex;
	justify-content: center;
	gap: 7px;
}
.carousel-dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid rgba(0, 70, 59, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	cursor: pointer;
	transition: width 0.2s ease;
}
.carousel-dots .active {
	width: 24px;
	background: var(--green);
}
.faq-card {
	max-width: 820px;
}
.faq-card h2 {
	margin-bottom: 20px;
}
.faq-card details {
	border-bottom: 1px solid var(--line);
	padding: 15px 0;
}
.faq-card summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}
.faq-card summary::-webkit-details-marker {
	display: none;
}
.faq-card summary::after {
	content: "";
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-left: 14px;
	background:
		linear-gradient(var(--rust), var(--rust)) center / 100% 1.8px no-repeat,
		linear-gradient(var(--rust), var(--rust)) center / 1.8px 100% no-repeat;
}
.faq-card details[open] summary::after {
	background-size:
		100% 1.8px,
		0 0;
}
.faq-link {
	color: var(--rust);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.faq-card details p {
	max-width: 580px;
	margin: 12px 0 0;
	color: var(--muted);
}
.final-card {
	max-width: 680px;
	margin-inline: auto;
	padding: 0;
	overflow: hidden;
	color: var(--ink);
	background: var(--paper);
}
.final-photo {
	position: relative;
	isolation: isolate;
	aspect-ratio: 927 / 1152;
	padding: clamp(24px, 6vw, 42px);
	background: url("ultima_seccion.webp") center center / cover no-repeat;
}
.final-copy {
	position: relative;
	z-index: 1;
	max-width: 500px;
}
.final-copy p {
	margin: 0 0 8px;
	font-family: Fraunces, Georgia, serif;
	font-size: clamp(1.55rem, 6.6vw, 2.25rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.02;
}
.final-copy h2 {
	max-width: 540px;
	font-size: clamp(2rem, 8.3vw, 3.25rem);
	font-weight: 800;
}
.final-cta {
	position: absolute;
	right: clamp(18px, 5vw, 34px);
	bottom: clamp(18px, 5vw, 34px);
	left: clamp(18px, 5vw, 34px);
	z-index: 1;
	display: grid;
	grid-template-columns: 24px 1fr 24px;
	gap: 12px;
	min-height: 64px;
	padding: 0 24px;
	border: 2px solid rgba(255, 255, 255, 0.85);
	background: rgba(0, 70, 59, 0.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	font-size: clamp(0.95rem, 3.8vw, 1.15rem);
}
.final-cta:hover {
	background: rgba(0, 70, 59, 0.75);
}
.final-cta span {
	text-align: center;
}
.final-cta .icon {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

@media (min-width: 720px) {
	.final-card {
		margin-block: 16px;
	}
	.final-photo {
		padding: 42px;
	}
	.final-cta {
		right: 34px;
		bottom: 34px;
		left: 34px;
	}
}

@media (min-width: 720px) {
	.landing-shell {
		padding: 16px;
	}
	.topbar {
		padding-inline: 22px;
	}
	.hero-card {
		min-height: 680px;
		align-items: center;
		background:
			linear-gradient(
				90deg,
				#f0e7d9 0 57%,
				rgba(240, 231, 217, 0.75) 63%,
				rgba(240, 231, 217, 0) 76%
			),
			#f0e7d9 url("Fondo Carolina.webp") right 28% / auto 140% no-repeat;
	}
	.hero-content {
		max-width: 52%;
	}
	.image-statement {
		min-height: 620px;
	}
	.sunset-card {
		background-position: center 18%;
	}
	.image-statement h2 span,
	.image-statement p > span {
		display: inline;
	}
	.image-statement h2 span + span::before,
	.image-statement p > span + span::before {
		content: " ";
	}
	.map-card {
		min-height: 620px;
		background-image:
			linear-gradient(
				90deg,
				rgba(0, 55, 47, 0.98) 0 45%,
				rgba(0, 55, 47, 0.88) 55%,
				rgba(0, 55, 47, 0.2) 70%,
				transparent 84%
			),
			url("seccion_3v1.webp");
		background-position:
			center,
			right center;
		background-size:
			100% 100%,
			auto 100%;
	}
	.map-card-content {
		max-width: 37%;
	}
	.process-card,
	.price-card {
		min-height: 470px;
	}
	.reason-list,
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.discovery-card .feature-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.discovery-card .feature-grid article {
		min-height: 230px;
		padding: 20px;
	}
	.about-card {
		display: grid;
		grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
		column-gap: 36px;
		align-items: start;
	}
	.about-card > h2,
	.about-card .about-photo {
		grid-column: 1;
	}
	.about-card > p {
		grid-column: 2;
		grid-row: 1;
		margin-top: 32px;
	}
	.about-card .badge-list {
		grid-column: 2;
		grid-row: 2;
	}
	.about-photo {
		margin: 0;
		aspect-ratio: 0.86;
	}
	.testimonials-card {
		display: grid;
		grid-template-columns: 1fr minmax(310px, 500px);
		gap: 30px;
		align-items: center;
	}
	.testimonials-card .section-kicker,
	.testimonials-card h2 {
		grid-column: 1;
	}
	.testimonials-card .carousel {
		grid-column: 2;
		grid-row: 1 / span 2;
		width: 100%;
	}
}

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