:root {
	--lp-content-width: 1720px;
	--lp-footer-width: 1600px;
	--lp-ink: #484848;
	--lp-orange: #fab140;
	--lp-teal: #4ec5c1;
	--lp-soft: #e8e8e8;
	--lp-field: #faf8f5;
	--lp-stars: #f6ca14;
	--lp-white: #ffffff;
	--lp-gray: #e5e3e0;
	--lp-charcoal: #3b3b3b;
	--lp-muted: #6b6967;
	--lp-shadow: rgba(0, 0, 0, 0.18);
	--lp-open-sans: "Open Sans", sans-serif, Arial;
	--lp-nunito: "Nunito", sans-serif;
	--lp-cookie: "Cookie", cursive;
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	background: #efefef;
}
body {
	margin: 0;
	min-width: 320px;
	overflow-x: hidden;
	background: #efefef;
	color: var(--lp-ink);
	font-family: var(--lp-nunito);
}
img {
	display: block;
	max-width: 100%;
}
button,
input,
select,
textarea {
	font: inherit;
}
a {
	color: inherit;
}

.lp-page {
	background: var(--lp-white);
}
.lp-band {
	display: grid;
	grid-template-columns: 2fr 2fr 1fr;
	min-height: 30px;
}
.lp-band i:nth-child(1) {
	background: var(--lp-teal);
}
.lp-band i:nth-child(2) {
	background: var(--lp-orange);
}
.lp-band i:nth-child(3) {
	background: var(--lp-charcoal);
}
.lp-band--bottom i:nth-child(3) {
	background: #e5e3e0;
}

.lp-section {
	padding: clamp(54px, 6.5vw, 96px) 0;
}
.lp-wrap {
	width: min(var(--lp-content-width), calc(100% - 64px));
	margin: 0 auto;
}
.lp-center {
	text-align: center;
}

.lp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 28px;
	border: 0;
	border-radius: 999px;
	background: var(--lp-orange);
	color: #fff;
	text-decoration: none;
	font-family: var(--lp-open-sans);
	font-size: clamp(16px, 2vw, 25.75px);
	font-weight: 700;
	box-shadow: 0 6px 18px rgba(248, 162, 51, 0.3);
}

.lp-brand {
	width: 176px;
	margin-bottom: 0;
}
.lp-script {
	font-style: italic;
	font-weight: 700;
	font-family: var(--lp-open-sans);
}

.lp-hero {
	background: var(--lp-white);
}
.lp-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 65%) minmax(420px, 35%);
	gap: clamp(22px, 3vw, 42px) clamp(40px, 5vw, 78px);
	align-items: start;
}
.lp-hero-brand {
	grid-column: 1 / -1;
}
.lp-hero-copy {
	min-width: 0;
	display: grid;
	gap: 16px;
}
.lp-hero-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px;
	align-items: start;
	padding: 0 25px;
}
.lp-hero-title {
	margin: 0;
	color: var(--lp-ink);
	font-family: var(--lp-open-sans);
	letter-spacing: -0.06em;
	line-height: 0.92;
	font-weight: 700;
	font-size: clamp(30px, 3.6vw, 67.13px);
	/* text-align: right; */
	padding: 0 0 0 50px;

	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
	/* display: grid;
	grid-template-columns: clamp(210px, 14vw, 260px) minmax(0, 1fr);
	grid-template-areas:
		"question question"
		"sell house"
		"department department"
		"u office";
	column-gap: 24px;
	row-gap: 2px;
	justify-items: start; */
}
/* .lp-hero-title .hero-line {
	display: block;
	white-space: nowrap;
} */
.hero-line--question {
	/* font-size: clamp(24px, 3.2vw, 61.09px); */
	font-weight: 500;
	letter-spacing: 5px;
}
.hero-line--question-quieres {
	/* text-align: center; */
	width: 80%;
}

.hero-line--question-departamento {
	text-align: right;
	width: 100%;
}
/* .hero-line--sell {
	font-size: clamp(24px, 3.2vw, 61.09px);
	font-weight: 400;
	font-style: italic;
} */
.hero-line--question-bold {
	font-style: italic;
	/* font-size: clamp(30px, 3.6vw, 67.13px); */
	font-weight: 750;
	letter-spacing: 5px;
}
.lp-hero-icon {
	width: clamp(100px, 9vw, 132px);
	justify-self: end;
	margin-top: 60px;
}
.lp-hero-lead,
.lp-hero-sublead {
	margin: 8px 0 0;
	color: var(--lp-ink);
	font-size: clamp(18px, 2.1vw, 37.67px);
	line-height: 1.16;
	text-align: center;
}
.lp-hero-lead strong {
	font-weight: 700;
}
.lp-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin: 22px 0 10px;
	justify-content: center;
}
.lp-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 51px;
	padding: 0 16px;
	border-radius: 14px;
	background: var(--lp-orange);
	color: #fff;
	font-size: clamp(14px, 1.8vw, 30.69px);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.lp-form-card {
	padding: 39px 36px 25px;
	border-radius: 23px;
	background: #fff;
	box-shadow: 0 2px 12px rgba(72, 72, 72, 0.48);
	border: 1px solid rgba(0, 0, 0, 0.06);
	max-width: 583px;
	justify-self: end;
}
.lp-mobile-form-backdrop,
.lp-mobile-form-close {
	display: none;
}
.lp-form-card h2 {
	margin: 0;
	text-align: center;
	color: var(--lp-ink);
	font-family: var(--lp-open-sans);
	font-size: clamp(24px, 2.8vw, 31.59px);
	font-weight: 700;
}
.lp-form-card > p {
	margin: 11px 0 36px;
	text-align: center;
	color: var(--lp-muted);
	font-size: 14.31px;
	line-height: 1.2;
}
.lp-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 236px));
	gap: 14px 41px;
}
.lp-span-2 {
	grid-column: 1 / -1;
}
.lp-form-grid label {
	display: grid;
	gap: 7px;
	color: var(--lp-ink);
	font-family: var(--lp-open-sans);
	font-size: 17.25px;
	font-weight: 700;
}
.lp-field-error {
	min-height: 1.1em;
	color: #c0392b !important;
	font-size: 12px !important;
	font-weight: 600;
	line-height: 1.1;
	text-align: left !important;
	margin-top: 0 !important;
}
.lp-form-grid label.is-invalid input,
.lp-form-grid label.is-invalid select,
.lp-form-grid label.is-invalid textarea {
	border-color: #c0392b;
	box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.12);
}
.lp-form-grid input,
.lp-form-grid select,
.lp-form-grid textarea {
	width: 100%;
	border: 1px solid #e7dfd4;
	border-radius: 10px;
	background: var(--lp-field);
	color: var(--lp-ink);
	outline: 0;
}
.lp-form-grid input,
.lp-form-grid select {
	height: 40px;
	padding: 0 27px;
	font-size: 14.81px;
}
.lp-form-grid textarea {
	min-height: 59px;
	resize: none;
	padding: 9px 27px;
	font-size: 14.81px;
}
.lp-form-grid select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 17px,
		calc(100% - 13px) 17px;
	background-size: 5px 5px;
	background-repeat: no-repeat;
}
.lp-comment {
	margin-top: -3px;
}
.lp-form-submit {
	width: 280px;
	min-height: 32px;
	height: 32px;
	margin: 18px auto 0;
	padding: 0;
	font-size: 17.57px;
}
.lp-form-card small {
	display: block;
	margin-top: 10px;
	text-align: center;
	color: #777;
	font-size: 9.1px;
}

.lp-problems {
	color: #fff;
	background:
		linear-gradient(90deg, rgba(48, 47, 49, 0.96) 0%, rgba(48, 47, 49, 0.82) 46%, rgba(48, 47, 49, 0.08) 100%),
		url("assets/images/bg-problems.jpg") center/cover no-repeat;
	/* min-height: 770px; */
	position: relative;
	padding: 95px 0 0;
}

.lp-problems::after {
	content: "";
	position: absolute;
	background: url("assets/images/problem-bg-info.png");
	background-position: center;
	background-size: 300px 300px;
	background-repeat: no-repeat;
	width: 300px;
	height: 300px;
	bottom: 0;
	left: 0;
}

.lp-problems-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
	gap: clamp(28px, 4vw, 20px);
	align-items: center;
	position: relative;
	z-index: 1;
}
.lp-problems-copy {
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: start;
}
.lp-problems-copy h2 {
	margin: 0;
	max-width: 780px;
	color: #fff;
	font-family: var(--lp-open-sans);
	font-size: clamp(24px, 3.8vw, 48.48px);
	line-height: 1.09;
	font-weight: 700;
	letter-spacing: -0.04em;
}
.lp-problems-copy h2 span {
	color: var(--lp-orange);
}
.lp-problems-list {
	align-self: end;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 680px;
	margin: 4px 0 0 40px;
}
.lp-problem-row {
	display: flex;
	gap: 12px;
	align-items: center;
}
.lp-problem-row img {
	width: 44px;
	height: 44px;
}
.lp-problem-pill {
	display: inline-flex;
	align-items: center;
	min-height: 52px;
	border-radius: 999px;
	background: #fff;
	color: var(--lp-ink);
	padding: 10px 20px;
	font-size: clamp(14px, 1.8vw, 22.66px);
	line-height: 1.2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}
.lp-problems-figure {
	display: grid;
	grid-template-areas: "stack";
	place-items: end center;
	align-self: stretch;
	min-height: 770px;
	overflow: hidden;
}
.lp-problems-figure-circle,
.lp-problems-figure img {
	grid-area: stack;
}
.lp-problems-figure-circle {
	width: min(74%, 545px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #67d5d0 0%, var(--lp-teal) 62%, #3fb4b0 100%);
	justify-self: center;
	align-self: end;
	transform: translateY(4%);
	z-index: 0;
}
.lp-problems-figure img {
	/* width: min(100%, 640px); */
	/* height: 100%; */
	object-fit: cover;
	width: 100%;
	object-position: right bottom;
	justify-self: end;
	align-self: end;
	z-index: 1;
}

.lp-support {
	display: grid;
	grid-template-areas: "stack";
	/* min-height: 770px; */
	padding: 0;
	overflow: hidden;
	background: #fff;
}
.lp-support-bg,
.lp-support-grid {
	grid-area: stack;
}
.lp-support-bg {
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.98) 0%,
			rgba(255, 255, 255, 0.84) 35%,
			rgba(255, 255, 255, 0.56) 58%,
			rgba(255, 255, 255, 0.34) 100%
		),
		url("assets/images/bg-support.jpg") center/cover no-repeat;
}
.lp-support-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(30px, 4vw, 66px);
	align-items: center;
	width: min(var(--lp-content-width), calc(100% - 64px));
	margin: 0 auto;
	padding: 50px 0 0;
}
.lp-support-visual {
	display: grid;
	grid-template-areas: "stack";
	align-items: end;
	/* min-height: 770px; */
}
.lp-support-metrics,
.lp-support-column,
.lp-support-figure {
	grid-area: stack;
}
.lp-support-column {
	width: min(100%, 310px);
	height: min(100%, 447px);
	justify-self: start;
	align-self: end;
	background: var(--lp-teal);
	transform: translateY(10%);
	z-index: 0;
}
.lp-support-metrics {
	display: grid;
	gap: 14px;
	align-self: start;
	justify-self: start;
	width: min(100%, 741px);
	padding-top: clamp(0px, 6vw, 126px);
	z-index: 2;
}
.lp-metric {
	/* display: grid;
	grid-template-columns: auto 1fr; */
	align-items: center;
	display: flex;
	justify-content: flex-end;
	gap: 18px;
	min-height: 88px;
	padding: 12px 30px 12px 24px;
	border-radius: 44px 0 44px 44px;
	background: var(--lp-orange);
	color: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.lp-metric:nth-child(1) {
	width: min(100%, 684px);
}
.lp-metric:nth-child(2) {
	width: min(100%, 741px);
}
.lp-metric:nth-child(3) {
	width: min(100%, 722px);
}
.lp-metric strong {
	font-family: var(--lp-open-sans);
	font-size: clamp(42px, 5vw, 93.42px);
	line-height: 0.9;
	font-style: italic;
	font-weight: 800;
}
.lp-metric span {
	font-family: var(--lp-open-sans);
	font-size: clamp(16px, 1.6vw, 28.09px);
	line-height: 1.02;
	font-weight: 700;
}
.lp-support-figure {
	width: 40%;
	align-self: end;
	justify-self: start;
	object-fit: cover;
	object-position: right bottom;
	z-index: 3;
}
.lp-support-copy h2 {
	margin: 0;
	color: var(--lp-ink);
	font-family: var(--lp-open-sans);
	font-size: clamp(30px, 4.4vw, 67.13px);
	line-height: 0.92;
	font-weight: 700;
	letter-spacing: -0.05em;
}
.lp-support-copy {
	align-self: start;
	padding-top: clamp(84px, 7vw, 143px);
}

.lp-support-title-main {
	font-size: clamp(30px, 4.4vw, 67.13px);
	line-height: 0.9;
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
}

.lp-support-title-margen {
	margin-left: 50px;
}

.lp-support-title-con {
	font-style: italic;
	font-weight: 700;
	font-size: 83px;
	font-family: var(--lp-cookie);
}

.lp-support-title-sub {
	grid-column: 1 / -1;
	grid-row: 3;
	display: block;
	margin: 10px 0 0 122px;
	font-style: italic;
	font-weight: 300;
	font-size: clamp(30px, 4.4vw, 67.13px);
}
.lp-support-copy p {
	margin: 22px 0 0 122px;
	max-width: 700px;
	color: #4d4d4d;
	font-size: clamp(18px, 2.1vw, 37.67px);
	line-height: 1.2;
}
.lp-support-copy .lp-button {
	display: block;
	text-align: center;
	margin: 30px auto;
	max-width: 435px;
}

.lp-benefits-section {
	background: #fff;
	padding-bottom: 0;
}
.lp-benefits {
	padding-bottom: clamp(40px, 4vw, 60px);
}
.lp-benefits-heading {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 0;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.lp-benefits-kicker {
	/* display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 12px 18px;
	border-radius: 16px;
	background: var(--lp-orange);
	*/
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.lp-benefits-kicker span {
	font-size: clamp(16px, 2.2vw, 43.66px);
	line-height: 1;
	font-weight: 400;
	background: var(--lp-orange);
	border-radius: 0 0 0 38px;
	display: block;
	padding: 12px 48px 12px 18px;
	text-align: right;
}
.lp-benefits-kicker strong {
	font-size: clamp(18px, 2.4vw, 43.66px);
	line-height: 1;
	font-style: italic;
	font-weight: 700;
	background: var(--lp-orange);
	border-radius: 0 0 0 38px;
	display: block;
	padding: 12px 48px 12px 18px;
	text-align: right;
}
.lp-benefits-icon {
	width: clamp(120px, 10vw, 190px);
	height: clamp(120px, 10vw, 190px);
	object-fit: contain;
	border-radius: 50%;
	margin-left: -35px;
}
.lp-benefits-heading h2 {
	margin: 0 0 0 20px;
	color: var(--lp-ink);
	font-family: var(--lp-open-sans);
	font-size: clamp(24px, 3.4vw, 43.66px);
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.05em;
	text-align: left;
}
.lp-benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 21px 43px;
	margin-top: 30px;
}
.lp-benefit-card {
	padding: 31px 39px;
	border-radius: 18px;
	background: var(--lp-gray);
	min-height: 159px;
}
.lp-benefit-check {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: -40px 0 12px -50px;
	border-radius: 50%;
	background: var(--lp-orange);
	color: #fff;
	font-family: var(--lp-open-sans);
	font-size: 35px;
	font-weight: 700;
}
.lp-benefit-card h3 {
	margin: 0 0 13px;
	color: var(--lp-ink);
	font-family: var(--lp-open-sans);
	font-size: clamp(16px, 1.8vw, 21.92px);
	line-height: 1.05;
	font-weight: 700;
}
.lp-benefit-card p {
	margin: 0;
	color: #4b4b4b;
	font-size: clamp(14px, 1.6vw, 23.61px);
	line-height: 1.2;
}
.lp-benefits-cta {
	margin-top: 28px;
}


.lp-process-section {
	background: #fff url("assets/images/fondo-onda.png") center/cover no-repeat;
	padding-top: 0;
	padding-bottom: 0;
	isolation: isolate;
}
.lp-process {
	min-height: 800px;
	margin-top: clamp(28px, 4vw, 50px);
	padding: 0;
	overflow: hidden;
	background: transparent;
}
.lp-process-grid {
	display: grid;
	grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	width: min(var(--lp-content-width), calc(100% - 64px));
	margin: 0 auto;
	padding-top: clamp(24px, 3vw, 42px);
	height: 100%;
}
.lp-process-visual {
	display: grid;
	gap: 24px;
	align-content: center;
	justify-items: start;
	min-height: 0;
	background: url("assets/images/person-process.png") center/contain no-repeat;
	height: 100%;
	min-height: 800px;
}
/* .lp-process-figure {
	width: min(100%, 616px);
	height: auto;
	max-height: 770px;
	align-self: start;
	justify-self: start;
	object-fit: contain;
	object-position: left top;
} */
.lp-process-badge {
	display: grid;
	grid-template-columns: 149px minmax(0, 1fr);
	grid-template-rows: 150px auto;
	width: 100%;
	align-self: start;
	justify-self: start;
	align-items: center;
}
.lp-process-money {
	grid-column: 1;
	display: grid;
	place-items: center;
	width: 149px;
	height: 149px;
	border-radius: 50%;
	background: var(--lp-orange);
	color: #fff;
	font-family: var(--lp-open-sans);
	font-size: 114.97px;
	font-style: italic;
	font-weight: 800;
	line-height: 1;
	z-index: 3;
}
.lp-process-line {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	color: #fff;
}
.lp-process-line--top {
	grid-column: 2;
	grid-row: 1;
	padding: 7px 24px 0 90px;
	background: var(--lp-teal);
	font-family: var(--lp-open-sans);
	font-size: 34px;
	font-weight: 400;
	border-radius: 0 24px 0 0;
	margin-left: -75px;
	white-space: nowrap;
	z-index: 2;
}
.lp-process-line--mid {
	grid-column: 2;
	grid-row: 2;
	padding: 0 24px 9px 90px;
	background: var(--lp-teal);
	border-radius: 0 24px 24px 0;
	font-family: var(--lp-open-sans);
	font-size: 35px;
	font-style: italic;
	font-weight: 800;
	margin-left: -75px;
	white-space: nowrap;
	z-index: 2;
}
.lp-process-line--bottom {
	grid-column: 1 / 3;
	grid-row: 3;
	padding: 46px 56px 48px;
	border-radius: 239px / 108px;

	background: rgba(59, 59, 59, 0.92);
	font-family: var(--lp-open-sans);
	font-size: 65px;
	font-style: italic;
	font-weight: 800;
	line-height: 0.88;
	text-align: center;
	max-width: 500px;
	margin: -52px auto 0;
	z-index: -1;
	position: relative;
}
.lp-process-steps {
	display: grid;
	grid-auto-flow: column;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(3, auto);
	gap: 22px 32px;
	align-content: start;
}
.lp-step {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	/* gap: 14px; */
	align-items: center;
}
.lp-step img {
	position: relative;
	z-index: 1;
}
.lp-step h3 {
	display: inline-block;
	min-height: 46px;
	margin: 0 0 0 -20px;
	padding: 8px 18px 8px 30px;
	border-radius: 0 24px 24px 0;
	background: var(--lp-ink);
	color: #fff;
	font-family: var(--lp-open-sans);
	font-size: clamp(16px, 1.7vw, 29.17px);
	line-height: 1.05;
	font-weight: 700;
	white-space: normal;
}
.lp-step p {
	margin: 10px 0 0 18px;
	color: #4d4d4d;
	font-size: clamp(14px, 1.7vw, 29.94px);
	line-height: 1.25;
}

.lp-testimonials {
	color: #fff;
	background:
		linear-gradient(rgba(50, 49, 51, 0.9), rgba(50, 49, 51, 0.9)),
		url("assets/images/bg-testimonials.jpg") center/cover no-repeat;
}
.lp-testimonials-title {
	margin: 0 0 28px;
	text-align: center;
	color: #fff;
	font-family: var(--lp-open-sans);
	font-size: clamp(24px, 3.4vw, 48px);
	line-height: 1.05;
	font-weight: 400;
}
.lp-testimonials-title span {
	font-family: var(--lp-open-sans);
	font-style: italic;
	font-weight: 700;
}
.lp-testimonials-stage {
	overflow: hidden;
	margin-top: 6px;
}
.lp-testimonial-track {
	display: flex;
	gap: 18px;
	transform: translateX(0);
	transition: transform 0.55s ease;
	will-change: transform;
}
.lp-testimonial-card {
	flex: 0 0 auto;
	min-height: 370px;
	padding: 44px 60px 34px;
	border-radius: 31px;
	background: #fff;
	color: var(--lp-ink);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
.lp-stars {
	display: block;
	margin-bottom: 37px;
	color: var(--lp-orange);
	font-size: 31px;
	letter-spacing: 2px;
}
.lp-testimonial-card p {
	margin: 0 0 24px;
	font-size: 22.53px;
	line-height: 1.2;
}
.lp-testimonial-card strong,
.lp-testimonial-card small {
	display: block;
	font-size: 22.53px;
	line-height: 1.2;
}
.lp-testimonial-card strong {
	font-weight: 700;
}
.lp-testimonials-cta {
	margin-top: 26px;
}

.lp-faq {
	min-height: 770px;
	background: var(--lp-gray);
}
.lp-faq-inner {
	max-width: 940px;
}
.lp-faq-inner h2 {
	display: grid;
	grid-template-areas: "stack";
	margin: 0 0 67px;
	padding-left: 0;
	color: var(--lp-ink);
	font-family: var(--lp-open-sans);
	font-size: clamp(22px, 3.5vw, 45.07px);
	line-height: 1;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	white-space: nowrap;
}

.lp-faq-title-mark,
.lp-faq-title-text {
	grid-area: stack;
}
.lp-faq-title-mark {
	justify-self: start;
	align-self: start;
	color: #d1cfcc;
	font-size: 120px;
	line-height: 1;
	transform: translate(-110px, -42px) rotate(-7deg);
	pointer-events: none;
}
.lp-faq-title-text {
	z-index: 1;
}
.lp-faq-list {
	display: grid;
	gap: 27px;
	width: 100%;
	max-width: 963px;
	margin-left: -10px;
}
.lp-faq-item {
	overflow: hidden;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 2px 7px rgba(72, 72, 72, 0.55);
}
.lp-faq-btn {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	width: 100%;
	min-height: 62px;
	padding: 0 17px 0 20px;
	border: 0;
	background: #fff;
	color: var(--lp-ink);
	text-align: left;
	cursor: pointer;
	font-family: var(--lp-open-sans);
	font-size: clamp(16px, 2.2vw, 33.4px);
	line-height: 1;
	font-weight: 500;
	gap: 12px;
}
.lp-faq-btn i {
	justify-self: end;
	color: var(--lp-ink);
	font-size: 30px;
	font-style: normal;
	transition: transform 0.2s ease;
}
.lp-faq-item.is-open .lp-faq-btn i {
	transform: rotate(180deg);
}
.lp-faq-panel {
	overflow: hidden;
	max-height: 0;
	padding: 0 22px;
	color: #555;
	font-family: var(--lp-nunito);
	font-size: 17px;
	line-height: 1.45;
	opacity: 0;
	transform: translateY(-8px);
	transition:
		max-height 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
		opacity 0.25s ease,
		transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
		padding 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.lp-faq-item.is-open .lp-faq-panel {
	padding: 0 22px 20px;
	opacity: 1;
	transform: translateY(0);
}
.lp-faq-panel p {
	margin: 0 0 14px;
}
.lp-faq-panel p:last-child {
	margin-bottom: 0;
}
.lp-faq-panel ul,
.lp-faq-panel ol {
	margin: 0 0 14px 20px;
	padding: 0;
}
.lp-faq-panel li {
	margin: 0 0 6px;
}
.lp-faq-panel a {
	color: var(--lp-orange);
	text-decoration: underline;
}

.lp-closing {
	min-height: 724px;
	padding: 0;
	background: #fff;
}
.lp-closing .lp-wrap {
	display: grid;
	justify-items: center;
	gap: 24px;
	padding: 67px 0 0;
}
.lp-closing-title {
	margin: 40px 0;
	max-width: 1100px;
	color: var(--lp-ink);
	font-family: var(--lp-open-sans);
	font-size: clamp(24px, 3.6vw, 51.08px);
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.05em;
	text-align: center;
}

.lp-closing-copy {
	margin: 0;
	max-width: 900px;
	color: #4d4d4d;
	font-size: clamp(18px, 2.2vw, 37.67px);
	line-height: 1.2;
	text-align: center;
}
.lp-closing-logo {
	width: 310px;
	margin-top: 28px;
}
.lp-closing-cta {
	width: min(100%, 510px);
	min-height: 47px;
	font-size: clamp(16px, 2vw, 25.75px);
}
.lp-closing-title br,
.lp-closing-copy br {
	display: inline;
}

@media (max-width: 768px) {
	.lp-closing {
		min-height: 0;
	}
	.lp-closing .lp-wrap {
		gap: 18px;
		padding-top: 42px;
	}
	.lp-closing-title {
		font-size: 24px;
		line-height: 1.12;
	}
	.lp-closing-copy {
		font-size: 18px;
	}
	.lp-closing-logo {
		width: 286px;
		margin-top: 12px;
	}
	.lp-closing-title br,
	.lp-closing-copy br {
		display: none;
	}
}

.lp-footer-wrap {
	clear: both;
	background: #44464f;
	margin: 0 auto;
	width: 100%;
	padding: 0;
	overflow: hidden;
	color: #f1f1f1;
	border: 0;
	font-family: Roboto, sans-serif;
}
.lp-footer-wrap .footer {
	clear: both;
	width: 100%;
	overflow: hidden;
	background: #44464f;
	color: #f1f1f1;
}
.lp-footer-wrap .footer > iframe {
	display: block;
	width: 100%;
	height: 300px;
	border: 0;
}
.lp-footer-wrap .footer .f-content {
	width: 88%;
	max-width: 1180px;
	margin: 0 auto;
	overflow: hidden;
	padding: 80px 0 60px 0;
}
.lp-footer-wrap .footer .f-content .data {
	float: left;
	overflow: hidden;
	width: 47%;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 36px;
	font-weight: 300;
	color: #777;
	text-align: left;
}
.lp-footer-wrap .footer .f-content .data .cr {
	display: block;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 18px;
}
.lp-footer-wrap .footer .f-content .data ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.lp-footer-wrap .footer .f-content .data ul li {
	display: block;
	color: #eee;
}
.lp-footer-wrap .footer .f-content .data .logo-footer {
	margin: 30px 0 50px 0;
}
.lp-footer-wrap .footer .f-content .data img {
	display: inline;
}
.lp-footer-wrap .footer .f-content .data ul li i {
	color: rgba(255, 255, 255, 0.5);
	font-size: 18px;
	width: 20px;
	text-align: center;
	margin-right: 4px;
}
.lp-footer-wrap .footer .f-content .data ul li a {
	font-size: 14px;
	font-weight: 400;
	color: #eee;
	text-decoration: none;
	line-height: 24px;
}
.lp-footer-wrap .footer .f-content .accesos {
	width: 26%;
	padding: 0 0 0 60px;
	margin: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.lp-footer-wrap .footer .f-content .accesos:last-child {
	border: 0;
	padding: 0 0 0 30px;
}
.lp-footer-wrap .footer .f-content .accesos .social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.lp-footer-wrap .footer .f-content .accesos .social a i {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	transition: 0.2s;
}
.lp-footer-wrap .footer .f-content .accesos .social a i:hover {
	background: var(--lp-orange);
	color: #44464f;
}
.lp-footer-wrap .f-bottom {
	background: #44464f;
	color: rgba(255, 255, 255, 0.75);
	clear: both;
	margin: 0 auto;
	width: 100%;
	padding: 0;
	overflow: hidden;
}
.lp-footer-wrap .f-bottom .b-content {
	width: 88%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 15px 0;
	overflow: hidden;
	font-weight: 400;
	text-align: center;
}
.lp-footer-wrap .f-bottom .copy {
	display: inline-block;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	line-height: 18px;
}
.lp-footer-wrap .open-whatsapp {
	position: fixed;
	right: 1.5em;
	bottom: 1.3em;
	width: 64px;
	height: 64px;
	z-index: 999;
}

@media (max-width: 1029px) {
	.lp-footer-wrap .footer {
		width: 100%;
		padding: 40px 0;
		text-align: left;
	}

	.lp-footer-wrap .footer .f-content {
		width: 90%;
		padding: 0;
		margin: 0 auto;
		overflow: hidden;
		text-align: left;
	}

	.lp-footer-wrap .footer .f-content .data {
		float: none;
		width: 100%;
		margin: 0;
		padding: 0 0 15px 0;
		text-align: left;
	}

	.lp-footer-wrap .footer .f-content .data .logo-footer {
		width: auto;
		height: auto;
		max-width: 300px;
	}

	.lp-footer-wrap .footer .f-content .data img {
		width: auto;
		height: auto;
	}

	.lp-footer-wrap .footer .f-content .accesos {
		width: 45%;
		margin: 20px auto 0 auto;
		float: left;
		border: 0;
		padding: 0 0 15px 0;
	}

	.lp-footer-wrap .footer .f-content .accesos:last-child {
		padding: 0 0 0 30px;
	}

	.lp-footer-wrap .f-bottom {
		width: 100%;
		padding: 15px 4%;
		margin: 0 auto;
		overflow: hidden;
		text-align: left;
	}

	.lp-footer-wrap .f-bottom .b-content {
		width: 98%;
	}

	.lp-footer-wrap .f-bottom .b-content .indicadores {
		margin: 0 auto 10px auto;
		width: 100%;
		float: none;
		padding: 0;
	}
}

@media (max-width: 767px) {
	.lp-footer-wrap .footer .f-content {
		width: 90%;
		padding: 40px 0;
	}

	.lp-footer-wrap .footer .f-content .data {
		float: none;
		width: 100%;
		text-align: left;
	}

	.lp-footer-wrap .footer .f-content .data .logo-footer {
		margin: 0 0 50px 0;
	}

	.lp-footer-wrap .footer .f-content .data img {
		clear: both;
		display: block;
		margin: 0;
		text-align: left;
		width: auto;
		height: auto;
	}

	.lp-footer-wrap .footer .f-content .accesos {
		width: 100%;
		padding: 0;
		margin: 30px 0;
		border: 0;
		float: none;
	}

	.lp-footer-wrap .footer .f-content .accesos:last-child {
		padding: 0;
	}

	.lp-footer-wrap .f-bottom .b-content {
		width: 90%;
		text-align: left;
	}

	.lp-footer-wrap .f-bottom .b-content .indicadores {
		margin: 0 auto 10px auto;
		width: 100%;
		float: none;
		padding: 0;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
		transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-left {
	transform: translateX(-30px);
}
.reveal-right {
	transform: translateX(30px);
}
.reveal.is-visible {
	opacity: 1;
	transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.lp-testimonial-track {
		transition: none;
	}
	.lp-button {
		transition: none;
	}
}

@media (max-width: 1300px) {
	.lp-process-grid {
		grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
	}
	.lp-process-money {
		font-size: 90px;
		height: 100px;
		width: 100px;
	}
	.lp-process-line--top,
	.lp-process-line--mid {
		padding-left: 40px;
	}
}

@media (max-width: 1100px) {
	.lp-hero-heading {
		padding-right: 0;
	}
	.lp-hero-title {
		padding-left: 0;
	}

	.lp-support-grid {
		align-items: end;
	}

	.lp-process-grid {
		grid-template-columns: 1fr;
	}
	.lp-process-visual {
		background: none;
		width: 580px;
		margin: 0 auto;
		min-height: 0;
	}

	.lp-process-money {
		font-size: 90px;
		height: 149px;
		width: 149px;
	}
	.lp-process-line--top,
	.lp-process-line--mid {
		padding-left: 90px;
	}

	.lp-process-steps {
		margin-bottom: 60px;
	}

	/*
	.lp-wrap {
		width: min(var(--lp-content-width), calc(100% - 28px));
	}
	.lp-hero-grid,
	.lp-problems-grid,
	.lp-support-grid,
	.lp-process-grid {
		grid-template-columns: 1fr;
	}
	.lp-hero-brand {
		grid-column: auto;
	}
	.lp-hero-heading {
		grid-template-columns: 1fr;
		justify-items: start;
	}
	.lp-hero-icon {
		justify-self: start;
	}
	.lp-form-card {
		max-width: 768px;
		justify-self: stretch;
	}
	.lp-process {
		min-height: 0;
	}
	.lp-process-grid {
		grid-template-columns: 1fr;
		width: min(var(--lp-content-width), calc(100% - 28px));
	}
	.lp-process-visual {
		gap: 18px;
	}
	.lp-process-figure {
		width: min(100%, 560px);
		height: auto;
	}
	.lp-process-badge {
		width: min(100%, 520px);
		margin-left: 0;
		grid-template-columns: 120px minmax(0, 1fr);
	}
	.lp-process-money {
		width: 120px;
		height: 120px;
		font-size: 90px;
	}
	.lp-process-line--top {
		font-size: 26px;
	}
	.lp-process-line--mid {
		font-size: 32px;
	}
	.lp-process-line--bottom {
		font-size: 46px;
		padding: 12px 20px 14px;
	}
	.lp-problems-figure {
		min-height: 560px;
		place-items: center;
	}
	.lp-problems-figure-circle {
		width: min(68vw, 420px);
	}
	.lp-problems-figure img {
		width: min(100%, 560px);
		height: auto;
		object-fit: contain;
		object-position: center bottom;
	}
	.lp-support {
		min-height: 0;
	}
	.lp-support-grid {
		grid-template-columns: 1fr;
		width: min(var(--lp-content-width), calc(100% - 28px));
		padding: 48px 0 56px;
	}
	.lp-support-copy {
		padding-top: 0;
	}
	.lp-support-visual {
		min-height: 520px;
	}
	.lp-support-column {
		width: min(100%, 260px);
		height: min(100%, 360px);
	}
	.lp-support-metrics {
		width: min(100%, 720px);
		padding-top: 0;
	}
	.lp-support-figure {
		width: min(100%, 520px);
	}
	.lp-support-copy h2 {
		grid-template-columns: 1fr;
	}
	.lp-support-title-sub,
	.lp-support-copy p,
	.lp-support-copy .lp-button {
		margin-left: 0;
	}
	.lp-support-figure {
		justify-self: start;
	}
	.lp-faq-inner {
		max-width: 100%;
	}
	.lp-faq-list {
		width: 100%;
		margin-left: 0;
	}
	.lp-benefit-grid,
	.lp-process-steps {
		grid-template-columns: 1fr 1fr;
	}
	.lp-testimonial-card {
		min-height: 0;
	}
	.lp-footer-wrap .footer .f-content {
		grid-template-columns: 1fr;
	}
	.lp-footer-wrap .footer .f-content .accesos {
		padding-left: 0;
		border-left: 0;
	}
		 */
}

@media (max-width: 1000px) {
	.lp-hero-title {
		justify-content: center;
		text-align: center;
	}

	.hero-line--question-departamento {
		text-align: center;
	}

	.lp-step h3 {
		display: flex;
		align-items: center;
	}

	.lp-step p {
		margin: 0 0 18px;
	}

	.lp-problems {
		padding-top: 40px;
	}

	.lp-support-copy {
		padding-top: 0;
	}

	.lp-hero-icon {
		display: none;
	}

	.lp-faq-inner h2 {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {
	.lp-band {
		min-height: 22px;
	}
	.lp-wrap {
		width: min(var(--lp-content-width), calc(100% - 20px));
	}

	.lp-hero-grid {
		grid-template-columns: 1fr;
	}

	.lp-hero-title {
		font-size: 32px;
		line-height: 0.96;
		display: block;
		grid-template-areas: "question" "sell" "house" "department" "u" "office";
	}
	.hero-line--question,
	.hero-line--sell,
	.hero-line--u {
		font-size: 28px;
	}
	.hero-line--house,
	.hero-line--department,
	.hero-line--office {
		font-size: 32px;
	}
	.lp-pills {
		gap: 12px;
		flex-direction: row;
		align-items: center;
	}

	.lp-problems {
		padding: 40px 15px;
	}
	.lp-problems-grid {
		display: block;
	}

	.lp-problems-figure {
		display: none;
	}

	.lp-benefits-section {
		padding: 40px 15px 0;
	}
	.lp-process-section {
		padding: 0 15px 40px;
		background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(234, 234, 234, 1));
	}

	.lp-support-copy h2 {
		font-size: 30px;
	}
	.lp-support-copy h2 strong {
		font-size: 30px;
	}
	.lp-support-title-con {
		font-size: 24px;
	}
	.lp-support-title-sub {
		font-size: 30px;
		margin-top: 8px;
	}
	.lp-support-copy p {
		font-size: 18px;
	}
	.lp-support-copy .lp-button {
		margin-top: 18px;
	}
	.lp-process-grid {
		width: min(var(--lp-content-width), calc(100% - 20px));
	}
	.lp-process-visual {
		gap: 16px;
		width: 100%;
	}
	.lp-process-figure {
		width: min(100%, 420px);
	}
	.lp-process-badge {
		/* width: min(100%, 420px); */
		/* grid-template-columns: 92px minmax(0, 1fr); */
	}
	/* .lp-process-money {
		width: 92px;
		height: 92px;
		font-size: 66px;
	}
	.lp-process-line--top {
		font-size: 18px;
		padding: 6px 14px;
	}
	.lp-process-line--mid {
		font-size: 22px;
		padding: 5px 14px 8px;
	}
	.lp-process-line--bottom {
		font-size: 30px;
		padding: 10px 16px 12px;
	} */
	.lp-process-steps {
		grid-auto-flow: row;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
	}

	.lp-testimonials {
		padding: 60px 15px;
	}

	.lp-faq {
		min-height: 0;
	}

	.lp-problems-copy h2 {
		font-size: 30px;
	}
	.lp-problems-list {
		max-width: none;
	}
	.lp-problem-pill {
		font-size: 16px;
	}
	.lp-pill {
		font-size: 14px;
	}
	.lp-form-grid,
	.lp-benefit-grid {
		grid-template-columns: 1fr;
	}
	.lp-form-card {
		padding: 24px 18px;
	}
	.lp-form-card h2 {
		font-size: 24px;
	}
	.lp-form-grid label {
		font-size: 14px;
	}
	.lp-form-submit {
		width: 100%;
	}
	.lp-support-visual,
	.lp-process-visual {
		justify-items: start;
	}
	.lp-support-metrics {
		width: 100%;
	}
	.lp-benefits-icon {
		width: 120px;
		height: 120px;
	}
	.lp-process-badge {
		margin-left: 0;
		max-width: 100%;
	}
	.lp-testimonials-stage {
		margin: 0 -10px;
	}
	.lp-faq-list {
		margin-left: 0;
	}
	.lp-faq-inner h2 {
		margin-bottom: 34px;
		white-space: normal;
	}
	.lp-faq-title-mark {
		font-size: 72px;
		transform: translate(-48px, -24px) rotate(-7deg);
	}
	.lp-faq-btn {
		min-height: 62px;
		padding: 10px 16px 10px 18px;
		font-size: 16px;
	}
	.lp-faq-btn i {
		font-size: 24px;
	}
	.lp-faq-panel {
		font-size: 15px;
	}
	.lp-footer-wrap .footer .f-content,
	.lp-footer-wrap .f-bottom .b-content {
		width: min(var(--lp-footer-width), calc(100% - 20px));
	}
}

@media (max-width: 768px) {
	body.lp-mobile-form-open {
		overflow: hidden;
	}

	.lp-form-card {
		display: none;
	}

	.lp-mobile-form-backdrop:not([hidden]) {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1000;
		background: rgba(35, 35, 35, 0.72);
	}

	body.lp-mobile-form-open .lp-form-card {
		display: block;
		position: fixed;
		top: 50%;
		left: 50%;
		z-index: 1001;
		width: calc(100vw - 28px);
		max-width: 583px;
		max-height: calc(100dvh - 28px);
		margin: 0;
		overflow-y: auto;
		opacity: 1;
		transform: translate(-50%, -50%);
		justify-self: auto;
	}

	body.lp-mobile-form-open .lp-form-card.reveal,
	body.lp-mobile-form-open .lp-form-card.reveal-left,
	body.lp-mobile-form-open .lp-form-card.reveal-right {
		opacity: 1;
		transform: translate(-50%, -50%);
	}

	body.lp-mobile-form-open .lp-mobile-form-close {
		display: grid;
		place-items: center;
		width: 36px;
		height: 36px;
		margin: 0 0 8px auto;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: var(--lp-ink);
		color: #fff;
		font-size: 28px;
		line-height: 1;
		cursor: pointer;
	}
}

@media (max-width: 530px) {
	.lp-wrap {
		width: 100%;
	}

	.lp-problems-list {
		margin-left: 0;
	}

	.lp-support-grid {
		grid-template-columns: 1fr;
		padding: 30px 15px 0px;
	}

	.lp-support-visual {
		grid-row: 1 \2;
	}

	.lp-support-copy {
		grid-row: 0 \1;
	}

	.lp-support-copy h2 br {
		display: none;
	}

	.lp-support-title-margen {
		margin-left: 0;
	}
	.lp-support-copy p {
		margin-left: 0;
	}
	.lp-support-title-sub {
		margin-left: 0;
	}

	.lp-benefits-section .lp-wrap,
	.lp-process-section .lp-wrap {
		margin: 0;
		width: 100%;
	}

	.lp-benefits-heading {
		gap: 0 0;
		justify-content: space-around;
		align-items: center;
		display: grid;
		grid-template-columns: auto 70px;
	}

	.lp-benefits-kicker {
		grid-column: 0 / -1;

		/* margin: 0 auto 12px; */
	}

	.lp-benefits-icon {
		grid-column: 2 / -1;
		margin-left: -20px;
	}

	.lp-benefits-kicker span {
		padding: 12px 25px 12px 16px;
	}

	.lp-benefits-heading h2 {
		grid-column: 1 / -1;
		text-align: center;
	}

	.lp-benefits-heading br {
		display: none;
	}

	.lp-benefits-section {
		padding: 0 15px;
	}
	.lp-process-section {
		padding: 0 15px;
	}

	.lp-process-grid {
		margin: 0;
		width: 100%;
	}

	.lp-process-badge {
		grid-template-columns: 80px auto;
		grid-template-rows: 100px auto;
	}

	.lp-process-line--top,
	.lp-process-line--mid {
		padding-left: 22px;
		font-size: 20px;
		display: block;
		margin-left: -20px;
	}

	.lp-process-money {
		font-size: 50px;
		width: 80px;
		height: 80px;
	}

	.lp-process-line--bottom {
		font-size: 30px;
		grid-column: 0 \-1;
		margin: -38px auto 0;
	}

	.lp-process-steps {
		grid-template-columns: 1fr;
	}

	.lp-step {
		grid-template-columns: 80px auto;
	}
	.lp-faq-inner{
		padding: 0 15px;
	}

	.lp-faq-inner h2{
		display: flex;
	}
	.lp-faq-title-mark{
		font-size: 48px;
		transform: none;
	}

	.lp-faq-list{
		width: 100%;
	}

	.lp-closing .lp-wrap{
		padding: 42px 15px 0;
	}
}
