@font-face {
	font-family: "Mont";
	src: url("Fuentes/Mont-Regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Mont";
	src: url("Fuentes/Mont-SemiBold.otf") format("opentype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Mont";
	src: url("Fuentes/Mont-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Mont";
	src: url("Fuentes/Mont-Heavy.otf") format("opentype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Mont";
	src: url("Fuentes/Mont-Black.otf") format("opentype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-display: "Mont", sans-serif;
	--font-body: "Mont", sans-serif;
	--olive-900: #3e4334;
	--olive-800: #515944;
	--olive-700: #6f7857;
	--stone-100: #f6f5f1;
	--stone-200: #ece9de;
	--ink: #2a2a28;
	--gold: #b2ab62;
	--gold-soft: #d8d096;
	--line: #d8d6cc;
	--radius-lg: 24px;
	--radius-md: 14px;
	--container: 1160px;
}

* {
	box-sizing: border-box;
  margin: 0px;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--ink);
	background: #ecebe7;
	line-height: 1.45;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(var(--container), 92%);
	margin-inline: auto;
}

#formulario-planos {
	scroll-margin-top: 110px;
}

#about {
	scroll-margin-top: 110px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-size: 0.66rem;
	margin: 0 0 0.8rem;
	color: var(--olive-700);
	font-weight: 700;
}

.eyebrow--small {
	letter-spacing: 0.18em;
	margin-bottom: 1rem;
}

button,
[type='button'],
[type='submit'],
[type='reset'] {
	cursor: pointer;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 1px;
	border: 1px solid transparent;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	padding: 0.55rem 1.35rem;
	transition: transform 0.25s ease, filter 0.25s ease;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.03);
}

.btn--primary {
	background: #3D3D3D;
	color: #e3e6da;
	font-weight: 100;
}

.quote-drawer__panel .btn--primary {
	background: #e3e6da;
	color: #3D3D3D;
	font-weight: 100;
}

.btn--ghost {
	border-color: var(--olive-700);
	color: var(--olive-900);
}

.btn--icon {
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--line);
	background: white;
}

.btn--icon img {
	width: 18px;
	height: 18px;
}

.hero {
	background: #ecebe7;
}

.hero__topbar {
	min-height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(247, 247, 246, 0.96);
	padding-inline: clamp(6.7rem, 4vw, 3rem);
	position: relative;
	z-index: 1200;
}

.brand img,
.partner img {
	height: 30px;
	width: auto;
	object-fit: contain;
}

.partner img {
	height: 42px;
}

.hero__main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-top: 1px solid #e3e1d8;
	background: #f5f4f1;
	width: 100%;
	height: calc(100vh - 90px);
	overflow: hidden;
}

.hero__copy {
	padding: 4rem 7rem 4.6rem;
	align-self: center;
	height: 100%;
}

.hero .eyebrow {
	font-size: 0.8rem;
	letter-spacing: 1.5em;
	margin-bottom: 2.8rem;
	color: #1f211c;
}

.chip {
	display: inline-block;
	font-size: 1.1rem;
	text-transform: uppercase;
	background: #7C8C7D;
	color: white;
	letter-spacing: 0.08em;
	padding: 10px 20px;
	border-radius: 8px 0px 8px 0px;
	font-weight: 600;
	line-height: 1;
}

.hero h1 {
	font-family: var(--font-body);
	font-size: 52px;
	line-height: 1.2;
	font-weight: 100;
	margin: 2rem 0 3.3rem;
	max-width: 580px;
	color: #2f312b;
}

.hero .btn--primary {
	padding: 15px 25px;
	font-size: 14px;
}

.hero h1 strong {
	font-weight: 800;
	color: #575d45;
}

.hero__image {
	position: relative;
	overflow: hidden;
	height: 100%;
}

.hero__image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center bottom;
}

.highlights {
	position: relative;
	overflow: hidden;
}

.highlights::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("img/FONDO-ICONOS.webp");
	background-size: cover;
	background-position: center;
}

.highlights__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	width: min(1280px, 95%);
	margin-inline: auto;
}

.highlight-card {
	min-height: 198px;
	padding: 2rem 1.8rem;
	color: #efefe8;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
}

.highlight-card:not(:nth-child(5n)) {
	border-right: 1px solid #CED6C1;
}

.highlight-card img {
	width: 74px;
	height: 74px;
	margin: 0 auto;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(86%) sepia(9%) saturate(322%) hue-rotate(50deg) brightness(96%) contrast(88%);
}

.highlight-card h2 {
	margin: 0;
	font-size: clamp(0.8rem, 0.76vw, 0.94rem);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1.35;
}

.about {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 3rem;
	padding: 5.2rem 0 3.6rem;
	align-items: start;
	background: #ecebe7;
}

.about.container {
	width: 100%;
	max-width: 1440px;
	margin-inline: 0;
	margin: 0 auto;
	
}

.about__media,
.about__copy {
	position: relative;
	z-index: 1;
}

.about__media {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 430px;
	justify-self: left;
	box-shadow: 0 20px 36px rgba(17, 21, 14, 0.22);
	align-self: start;
}

.about__media img,
.about__media video,
.about__media iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about__video--desktop {
	min-height: 430px;
	display: block;
}

.about__video--mobile {
	display: none !important;
}

.video-poster {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
	z-index: 10;
}

.play-btn {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.9);
	background: rgba(0, 0, 0, 0.5);
	color: #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
}

.play-btn:hover {
	transform: scale(1.1);
	background: rgba(0, 0, 0, 0.7);
	border-color: #ffffff;
}

.play-btn svg {
	width: 32px;
	height: 32px;
	margin-left: 4px;
}

.about__copy {
	padding-right: 1.2rem;
}

.about__copy .eyebrow {
	margin: 0;
}

.about__copy > .eyebrow:first-child {
	display: inline-block;
	background: #7C8C7D;
	color: #f6f5ee;
	font-size: 0.72rem;
	letter-spacing: 0.07em;
	padding: 0.34rem 0.8rem;
	border-radius: 6px 0px 6px 0px;
	margin-bottom: 1.2rem;
}

.about__copy .eyebrow--small {
	font-size: 0.78rem;
	letter-spacing: 0.5em;
	font-weight: 700;
	color: #13150f;
	margin-bottom: 1.45rem;
}

.about__copy h2,
.faq h2 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.2;
	margin-top: 0;
}

.about__copy h2 {
	font-size: clamp(2.1rem, 2.4vw, 2.9rem);
	line-height: 1.07;
	max-width: 20ch;
	margin-bottom: 1rem;
	color: #252720;
}

.about__copy p {
	margin: 0 0 0.78rem;
	max-width: 58ch;
	font-size: 0.92rem;
	line-height: 1.48;
	color: #272a23;
}

.about__copy p:nth-of-type(2) {
	font-weight: 700;
	font-size: 0.95rem;
}

.about__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	margin-top: 0.3rem;
	grid-column: 1 / -1;
}

.about__actions .btn--primary {
	padding: 0.86rem 1.6rem;
	font-size: 0.78rem;
}

.about__actions .btn--icon {
	width: 44px;
	height: 44px;
	border: none;
	background: #d3d07a;
}

.about__actions .btn--icon img {
	width: 17px;
	height: 17px;
	object-fit: contain;
}

/* ============================================ */
/* LOCATION INTRO                               */
/* ============================================ */

.location-intro {
	background: url("img/FONDO-ICONOS.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 1.65rem 0;
	color: #ece9df;
}

.location-intro h2 {
	margin: 0;
	text-align: center;
	font-size: clamp(1.2rem, 1.8vw, 1.85rem);
	line-height: 1.22;
	font-weight: 400;
}

.location-intro strong {
	color: #f2e8aa;
	font-weight: 700;
}

/* ============================================ */
/* MAPAS                                        */
/* ============================================ */

.mapas {
	position: relative;
	overflow: hidden;
	background-color: #ffffff;
	padding: 0;

	margin: 0 auto;
	display: flex;
	padding-top: 40px;
	padding-bottom: 40px;
}

.mapas__container {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-height: 100vh;
}

.mapas__left {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	flex: 1;
	min-width: 0;
	overflow-y: auto;
}

.mapas__buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 1.5rem 1.5rem 1rem;
	background-color: #ffffff;
	flex-shrink: 0;
}

.mapas__map {
	margin: 0;
	overflow: hidden;
	position: relative;
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	cursor: zoom-in;
}

.mapas__map img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	transition: opacity 0.15s ease, transform 0.1s ease;
	transform-origin: center center;
}

.mapas__icon-btn {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #ffffff;
	border: 2px solid #3a3a38;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mapas__icon-btn img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	transition: filter 0.3s ease;
}

.mapas__icon-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.mapas__icon-btn.active {
	border: 3px solid #7C8C7D;
	transform: scale(1.05);
}

.mapas__legend {
	background: #ffffff;
	padding: 1.5rem 2rem;
	border-top: 1px solid #e0ddd4;
	margin-top: 2rem;
	flex-shrink: 0;
	width: 100%;
	min-height: 320px;
	max-height: 360px;
	overflow-y: auto;
}

.mapas__legend-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.mapas__legend-icon {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.mapas__legend-header h3 {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #3a3a38;
}

.mapas__legend-list {
	margin: 0;
	padding-left: 1.5rem;
	list-style: decimal;
}

.mapas__legend-list li {
	font-size: 0.85rem;
	line-height: 1.6;
	color: #5a5a58;
	margin-bottom: 0.2rem;
}

.mapas__right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	overflow-y: auto;
	flex: 1;
	min-width: 0;
}

.mapas__address {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 450px;
}

.mapas__pin {
	width: 58px;
	height: 58px;
	object-fit: contain;
	margin-bottom: 0.6rem;
}

.mapas__location-name {
	font-size: 0.72rem;
	letter-spacing: 0.58em;
	margin-bottom: 1.1rem;
	color: #1f211b;
	text-transform: uppercase;
	font-weight: 600;
}

.mapas__location-address {
	font-size: 25px;
	line-height: 1.2;
	margin: 20px 0 1.4rem;
	font-weight: 700;
	color: #272a23;
}

.mapas__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	margin: 1rem 0 1.2rem;
	flex-shrink: 0;
}

.mapas__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	background: #3a3a38;
	transition: transform 0.2s ease, filter 0.2s ease;
	border-radius: 2px;
	padding: 1rem 1.4rem 1rem 2.4rem;
	overflow: visible;
	font-size: 0.72rem;
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1;
	color: #f6f6f3;
	text-decoration: none;
}

.mapas__btn img {
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 50%;
}

.mapas__btn:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
	transition: transform 0.2s ease, filter 0.2s ease;
}

/* Responsive para mapas */
@media (max-width: 768px) {
	.mapas {
		min-height: auto;
		max-height: none;
	}

	.mapas__container {
		flex-direction: column;
		height: auto;
		max-height: none;
	}

	.mapas__left,
	.mapas__right {
		display: contents;
	}

	.mapas__address {
		order: 1;
		padding: 2rem 1.5rem 1rem;
		width: 100%;
	}

	.mapas__buttons {
		order: 2;
		padding: 1rem 0.8rem 1.5rem;
		gap: 8px;
		width: 100%;
	}

	.mapas__map {
		order: 3;
		min-height: 300px;
		padding: 0;
		width: 100%;
	}

	.mapas__legend {
		order: 4;
		margin-top: 0;
		padding: 1.5rem 1.5rem;
		width: 100%;
		max-height: none;
	}

	.mapas__actions {
		order: 5;
		gap: 1.5rem;
		flex-direction: row;
		padding: 1rem 1.5rem 1.2rem;
		width: 100%;
	}

	.mapas__icon-btn {
		width: 50px;
		height: 50px;
	}

	.mapas__icon-btn img {
		width: 26px;
		height: 26px;
	}

	.mapas__legend-list li {
		font-size: 0.85rem;
	}

	.mapas__pin {
		width: 48px;
		height: 48px;
	}

	.mapas__location-name {
		font-size: 0.65rem;
	}

	.mapas__location-address {
		font-size: 1.35rem;
		margin: 0;
	}

	.mapas__btn {
		flex: 1;
		justify-content: center;
	}
}

.gallery {
	position: relative;
	z-index: 3;
	width: 100%;
	background: #e9e6dc;
	
}

.gallery__panel {
	position: sticky;
	top: 0;
	height: 100svh;
	overflow: hidden;
}

.gallery__panel:nth-child(1) {
	z-index: 1;
}

.gallery__panel:nth-child(2) {
	z-index: 2;
}

.gallery__panel:nth-child(3) {
	z-index: 3;
}

.gallery__panel:nth-child(4) {
	z-index: 4;
}

.gallery__panel:nth-child(5) {
	z-index: 5;
}

.gallery__panel:nth-child(6) {
	z-index: 6;
}

.gallery__panel:nth-child(7) {
	z-index: 7;
}

.gallery__media {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery__caption {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem clamp(1.5rem, 8vw, 6rem);
	background: linear-gradient(rgba(15, 18, 12, 0.18), rgba(15, 18, 12, 0.32));
	color: #f4f3ee;
	z-index: 4;
	pointer-events: none;
}

.gallery__caption-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.42em;
	font-size: 0.72rem;
	font-weight: 700;
	color: #cdd177;
	margin: 0 0 0.9rem;
}

.gallery__caption-title {
	font-size: clamp(1.6rem, 2.8vw, 2.6rem);
	font-weight: 400;
	line-height: 1.2;
	max-width: 20ch;
	margin: 0 0 1.4rem;
	color: #ffffff;
}

.gallery__caption-title strong {
	font-weight: 800;
	color: #e2e67e;
}

.gallery__caption-cta {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.72rem;
	font-weight: 700;
	color: #cdd177;
	border-top: 1px solid rgba(205, 209, 119, 0.45);
	padding-top: 0.9rem;
	margin: 0;
}

.gallery--mobile {
	display: none;
}

.leads {
	position: relative;
	z-index: 1;
	background: url("img/FONDO-ICONOS.webp") center center / cover no-repeat;
	padding: 4.8rem 0 4.2rem;
}

.leads::before {
	display: none;
}

.leads__stage {
	position: relative;
	display: grid;
	grid-template-columns: auto max-content auto;
	justify-content: center;
	align-items: center;
	gap: clamp(0.8rem, 2vw, 1.6rem);
}

.lead-form {
	color: #2a2d25;
}

.lead-form .eyebrow {
	color: #d0d6bf;
	letter-spacing: 0.5em;
	font-size: 0.7rem;
	margin-bottom: 1rem;
}

.lead-form form {
	display: grid;
	gap: 0.55rem;
	width: 82%;
	margin-inline: auto;
}

.lead-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.55rem;
}

.lead-form label {
	display: block;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(248, 248, 245, 0.96);
	border-radius: 6px;
	color: #2d2e29;
	padding: 0.56rem 0.68rem;
	font: inherit;
	font-size: 0.75rem;
}

.lead-form textarea {
	min-height: 88px;
	resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
	color: #575b50;
}

.checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 0;
}

.lead-form form > label.checkbox:first-of-type {
	margin-top: 0.42rem;
}

.lead-form form > label.checkbox + label.checkbox {
	margin-top: -10px;
}

.checkbox input {
	width: 15px;
	height: 15px;
	min-width: 15px;
	margin-top: 0.05rem;
	cursor: pointer;
}

.checkbox span {
	font-size: 0.63rem;
	color: #d6e0c8;
	text-transform: none;
	letter-spacing: 0;
	margin-left: 10px;
}

.lead-form .btn--full {
	margin-top: 0.65rem;
	padding: 0.82rem 1rem;
	font-size: 0.95rem;
}

.unit-card {
	padding: 0;
	color: #f7f6f0;
}

.unit-card--carousel {
	width: fit-content;
	max-width: 100%;
}

.unit-card__visual {
	position: relative;
	width: fit-content;
	max-width: min(100%, 1120px);
	background: #ffffff;
	box-shadow: 0 20px 42px rgba(41, 45, 33, 0.62);
	overflow: hidden;
}

.unit-card__visual img {
	display: block;
	width: auto;
	max-width: min(100%, 1080px);
	height: auto;
	max-height: min(80vh, 860px);
	object-position: center;
	background: #ffffff;
	cursor: zoom-in;
	transition: opacity 0.2s ease-in-out;
}

.unit-card__cta {
	position: absolute;
	right: clamp(0.9rem, 2vw, 1.4rem);
	bottom: clamp(0.9rem, 2vw, 1.4rem);
	border: none;
	background: #383833;
	color: #eff0ea;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 0.86rem 1.34rem;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(41, 45, 33, 0.22);
	transition: transform 0.2s ease, filter 0.2s ease;
}

.unit-card__cta:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
}

.leads__nav {
	width: 58px;
	height: 58px;
	border: none;
	border-radius: 999px;
	background: rgba(151, 155, 144, 0.92);
	color: #f9f8f3;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 22px rgba(41, 45, 33, 0.22);
	transition: transform 0.2s ease, filter 0.2s ease;
}

.leads__nav:hover {
	transform: translateY(-2px);
	filter: brightness(1.06);
}

.quote-drawer {
	position: fixed;
	inset: 0;
	display: grid;
	grid-template-columns: 1fr;
	pointer-events: none;
	z-index: 1300;
}

.quote-drawer__backdrop {
	position: absolute;
	inset: 0;
	border: none;
	background: rgba(22, 24, 18, 0.36);
	opacity: 0;
	transition: opacity 0.28s ease;
	cursor: pointer;
	pointer-events: none;
}

.quote-drawer__panel {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: min(460px, 92vw);
	background: #3a3a38;
	padding: 5.8rem 2rem 2rem;
	box-shadow: -18px 0 40px rgba(20, 22, 17, 0.16);
	transform: translateX(100%);
	transition: transform 0.32s ease;
	overflow: visible;
	max-height: 100dvh;
	pointer-events: auto;
}

.quote-drawer.is-open .quote-drawer__backdrop {
	opacity: 1;
	pointer-events: auto;
}

.quote-drawer.is-open .quote-drawer__panel {
	transform: translateX(0);
}

.quote-drawer__tab {
	position: absolute;
	left: -58px;
	top: 50%;
	transform: translateY(-50%);
	padding: 1rem 0.7rem;
	width: 58px;
	height: 220px;
	border: none;
	border-radius: 2px 0 0 2px;
	background: #3a3a38;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.88rem;
	font-weight: 200;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	cursor: pointer;
	box-shadow: -4px 0 18px rgba(0, 0, 0, 0.39);
	transition: filter 0.2s ease, box-shadow 0.2s ease;
	z-index: 2;
}

.quote-drawer__tab:hover {
	filter: brightness(1.06);
	box-shadow: 0 14px 26px rgba(41, 45, 33, 0.26);
}

.quote-drawer__close {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 999px;
	background: #797876;
	color: #ffffff;
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
	text-transform: none;
}

.quote-drawer__form h2 {
	font-size: clamp(1.7rem, 2.1vw, 2.3rem);
	line-height: 1.12;
	font-weight: 400;
	margin: 0 0 1.6rem;
	color: #ffffff;
}

.quote-drawer__form form {
	width: 100%;
	margin-inline: 0;
}

.quote-drawer__form {
	max-height: calc(100dvh - 7rem);
	overflow-y: auto;
	padding-right: 0.3rem;
}


.plan-modal {
	position: fixed;
	inset: 0;
	z-index: 1500;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease;
}

.plan-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.plan-modal__backdrop {
	position: absolute;
	inset: 0;
	border: none;
	background: rgba(16, 18, 14, 0.86);
	cursor: zoom-out;
}

.plan-modal__dialog {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.plan-modal__dialog img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 0;
	background: #ffffff;
	padding: 0;
}

.plan-modal__close {
	position: absolute;
	top: 0.4rem;
	right: 0.4rem;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 999px;
	background: #adadaa;
	color: #ffffff;
	font-size: 1.9rem;
	line-height: 1;
	cursor: pointer;
}

/* ── Zoom Button ───────────────────────────────────────────────── */

.unit-card__zoom {
	position: absolute;
	top: 0.2rem;
	right: 0.2rem;
	z-index: 2;
}

.unit-card__zoom button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.85);
	cursor: pointer;
	transition: background 0.2s;
}

.unit-card__zoom button:hover {
	background: #fff;
}

.unit-card__zoom button svg {
	width: 18px;
	height: 18px;
	stroke: #2f322c;
}

/* ── Terms Modal ───────────────────────────────────────────────── */

.terms-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s;
}

.terms-modal.is-visible {
	opacity: 1;
	visibility: visible;
}

.terms-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
	cursor: pointer;
}

.terms-modal__dialog {
	position: relative;
	width: 90%;
	max-width: 700px;
	max-height: 80vh;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.terms-modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid #e0e0e0;
}

.terms-modal__header h3 {
	margin: 0;
	font-size: 1.1rem;
	color: #2f322c;
}

.terms-modal__close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #666;
	line-height: 1;
}

.terms-modal__body {
	padding: 1.25rem;
	overflow-y: auto;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #444;
}

.terms-modal__body h4 {
	margin: 1rem 0 0.5rem;
	font-size: 1rem;
	color: #2f322c;
}

.terms-modal__body p,
.terms-modal__body ul {
	margin: 0 0 0.75rem;
}

.terms-modal__body ul {
	padding-left: 1.25rem;
}

/* ── Success Modal ───────────────────────────────────────────────── */
.success-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease;
}

.success-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.success-modal__backdrop {
	position: absolute;
	inset: 0;
	border: none;
	background: rgba(16, 18, 14, 0.72);
	cursor: pointer;
}

.success-modal__dialog {
	position: relative;
	width: min(360px, calc(100vw - 2rem));
	background: #f7f7f0;
	border-radius: 20px;
	padding: 2.2rem 2rem 1.8rem;
	text-align: center;
	box-shadow: 0 24px 60px rgba(20, 22, 16, 0.28);
	transform: scale(0.92) translateY(12px);
	transition: transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal.is-open .success-modal__dialog {
	transform: scale(1) translateY(0);
}

.success-modal__close {
	position: absolute;
	top: 0.6rem;
	right: 0.6rem;
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.06);
	color: #4a4f40;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.success-modal__close:hover {
	background: rgba(0, 0, 0, 0.12);
}

.success-modal__icon {
	width: 62px;
	height: 62px;
	margin: 0 auto 1.1rem;
	background: #e8ecc5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.success-modal__icon svg {
	width: 34px;
	height: 34px;
	color: #5a6828;
}

.success-modal__dialog .eyebrow {
	margin-bottom: 0.25rem;
}

.success-modal__dialog h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #262922;
	margin: 0 0 0.45rem;
	line-height: 1.2;
}

.success-modal__message {
	font-size: 0.88rem;
	color: #4a4f40;
	margin: 0 0 1.5rem;
	line-height: 1.5;
}

.success-modal__btn {
	width: 100%;
}

.unit-card__info {
	margin-top: 2.5rem;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.05fr;
	gap: 0.9rem;
	align-items: start;
}

.unit-card__col {
	display: grid;
	align-content: start;
	gap: 0.38rem;
	position: relative;
	padding-left: 30px;
}

.unit-card__col--mid::before,
.unit-card__col--right::before {
	content: "";
	position: absolute;
	left: -0.6rem;
	top: 0;
	height: 100%;
	width: 1px;
	background: rgba(216, 214, 200, 0.48);
}

.unit-card__info h3 {
	margin: 0;
	font-size: clamp(1.25rem, 2.1vw, 2.05rem);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.05;
}

.unit-card__info p {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.25;
}

.unit-card__info p strong {
	font-size: 0.88rem;
	font-weight: 700;
}

.unit-card__info small {
	margin: 0;
	display: block;
	font-size: 0.72rem;
	line-height: 1.35;
	color: #d8d7cf;
}

.faq {
	padding: 4.4rem 0 4.8rem;
	width: min(1180px, 86%);
}

.faq > .eyebrow {
	text-align: center;
	font-size: 0.62rem;
	letter-spacing: 0.52em;
	color: #2e302a;
	margin-bottom: 0.55rem;
}

.faq h2 {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(2rem, 2.7vw, 3.05rem);
	text-align: center;
	margin: 0 0 2.15rem;
	color: #2f312c;
}

.faq details {
	border-bottom: 1px solid var(--line);
	padding: 0.88rem 1.35rem;
	background-color: transparent;
	overflow: hidden;
	transition: background-color 0.28s ease, padding 0.28s ease, border-radius 0.28s ease,
		margin-bottom 0.28s ease;
}

.faq details:first-of-type {
	border-top: 1px solid var(--line);
}

.faq details:first-of-type[open],
.faq details:first-of-type.is-collapsing {
	border-top: 1px solid var(--line);
}

.faq summary {
	list-style: none;
	cursor: pointer;
	font-weight: 500;
	font-size: 0.95rem;
	color: #3d3e38;
	position: relative;
	padding-right: 1.4rem;
	transition: color 0.28s ease;
}

.faq summary::after {
	content: "▾";
	position: absolute;
	right: 0;
	top: -0.02rem;
	color: #83837d;
	font-size: 1.26rem;
	transition: transform 0.2s ease, color 0.28s ease;
}

.faq details[open] summary::after {
	transform: rotate(180deg);
	color: #eaece6;
}

.faq details[open] {
	background: #7E8B81;
	border-bottom: none;
	padding: 0.95rem 1.35rem 1rem;
	margin-bottom: 0.5rem;
}

.faq details[open] summary {
	font-weight: 700;
	color: #eaece6;
}

.faq details.is-collapsing summary {
	font-weight: 500;
	color: #3d3e38;
}

.faq details.is-collapsing {
	background: transparent;
	border-radius: 0;
	border-bottom: 1px solid var(--line);
	padding: 0.88rem 1.35rem;
	margin-bottom: 0;
}

.faq__content {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: height 0.34s ease, opacity 0.3s ease;
}

.faq p {
	margin: 0.62rem 0 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #ffffff;
	font-weight: 300;
	transition: color 0.28s ease;
}

.faq ul {
	margin: 0.62rem 0 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #ffffff;
	font-weight: 300;
	transition: color 0.28s ease;
}

.faq__content div,
.faq__content span,
.faq__content li {
	color: #ffffff !important;
	font-weight: 300;
}

.faq details[open] p {
	color: #ffffff;
}

.whatsapp-fab {
	position: fixed;
	right: 1.2rem;
	bottom: 1.8rem;
	width: 52px;
	height: 52px;
	display: block;
	z-index: 999;
	transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
	border-radius: 999px;
}

.whatsapp-fab:hover {
	transform: translateY(-3px) scale(1.06);
	filter: brightness(1.08);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.45);
}

.whatsapp-fab img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.wa-gate {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 1400;
}

.wa-gate__backdrop {
	position: absolute;
	inset: 0;
	border: none;
	background: rgba(22, 24, 18, 0.16);
	opacity: 0;
	transition: opacity 0.28s ease;
	cursor: pointer;
	pointer-events: none;
}

.wa-gate__panel {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: min(340px, calc(100vw - 2rem));
	background: #c5ca73;
	border-radius: 16px 16px 16px 0;
	padding: 1rem 1rem 0.95rem;
	box-shadow: 0 14px 34px rgba(41, 45, 33, 0.26);
	transform: translateY(24px);
	opacity: 0;
	transition: transform 0.28s ease, opacity 0.28s ease;
	pointer-events: none;
}

.wa-gate__close {
	position: absolute;
	top: 0.52rem;
	right: 0.52rem;
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 999px;
	background: #d6d18a;
	color: #23251e;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(41, 45, 33, 0.22);
}

.wa-gate__panel .eyebrow {
	margin-bottom: 0.5rem;
	letter-spacing: 0.2em;
	font-size: 0.62rem;
	color: #3d4330;
}

.wa-gate__panel h3 {
	margin: 0 0 0.8rem;
	font-size: 1.22rem;
	font-weight: 600;
	color: #262922;
	line-height: 1.2;
	max-width: 13ch;
}

.wa-gate__form {
	display: grid;
	gap: 0.5rem;
}

.wa-gate__form label {
	display: block;
}

.wa-gate__form input {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(248, 248, 245, 0.96);
	border-radius: 6px;
	color: #2d2e29;
	padding: 0.56rem 0.68rem;
	font: inherit;
	font-size: 0.78rem;
}

.wa-gate__form input::placeholder {
	color: #575b50;
}

.wa-gate__form .btn--full {
	width: 100%;
	margin-top: 0.2rem;
	padding: 0.76rem 1rem;
	font-size: 0.78rem;
}

.wa-gate.is-open {
	pointer-events: auto;
}

.wa-gate.is-open .wa-gate__backdrop {
	opacity: 1;
	pointer-events: auto;
}

.wa-gate.is-open .wa-gate__panel {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.footer {
	background: #d6d5d1;
	border-top: 1px solid var(--line);
	padding: 1.25rem 0 0.8rem;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.25rem;
	padding: 0.45rem 0.5rem 1rem;
}

.footer__cell {
	min-height: 46px;
	display: flex;
	align-items: center;
}

.footer__cell--brand,
.footer__cell--versia {
	justify-content: center;
}

.footer__cell--versia {
	display: none;
}

.footer__cell--address {
	justify-content: flex-end;
}

.footer__cell--brand img {
	height: 30px;
	width: auto;
}

.footer__cell--versia img {
	height: 35px;
	width: auto;
}

.footer__cell--address p {
	text-align: right;
	padding-right: 40px;
	font-size: 1rem;
	line-height: 1.15;
	color: #2f322c;
	margin: 0;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding-top: 1.5rem;
	padding-bottom: 1.2rem;
}

/* ── Footer Cantabria ───────────────────────────────────────────────────── */
.footer-cantabria {
	background: #0e0e0e;
	padding: 2.5rem 0;
}

.footer-cantabria__inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: start;
	gap: 2rem;
}

.footer-cantabria__logo {
	display: flex;
	align-items: center;
	height: 100%;
}

.footer-cantabria__logo img {
	height: 52px;
	width: auto;
}

.footer-cantabria__nav {
	display: contents;
}

.footer-cantabria__nav-col {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.footer-cantabria__nav a {
	color: #ccccc0;
	font-size: 0.86rem;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: rgba(204,204,192,0.45);
	transition: color 0.18s ease;
}

.footer-cantabria__nav a:hover {
	color: #fff;
	text-decoration-color: rgba(255,255,255,0.6);
}

.footer__legal {
	display: flex;
	align-items: center;
	gap: 2.2rem;
	flex-wrap: wrap;
}

.footer__bottom p,
.footer__bottom a {
	margin: 0;
	font-size: 0.72rem;
	color: #2f322d;
}

.footer__social {
	display: flex;
	gap: 1.7rem;
}

.footer__social img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.about,
.leads,
.faq,
.footer {
	animation: reveal 0.7s ease both;
}

@keyframes reveal {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1080px) {
	.hero__main,
	.about,
	.leads__grid {
		grid-template-columns: 1fr;
		height: auto;
	}

	.about {
		padding: 4.2rem 0 3.8rem;
		gap: 2rem;
	}

	.about__tree {
		height: 220px;
		width: 83px;
		opacity: 0.65;
	}

	.about__media {
		aspect-ratio: 16/9;
	}

	.about__video--desktop {
		display: none !important;
	}

	.about__video--mobile {
		display: block !important;
		aspect-ratio: 1/1;
		min-height: unset;
	}

	.play-btn {
		width: 70px;
		height: 70px;
		border-width: 2px;
	}

	.play-btn svg {
		width: 24px;
		height: 24px;
		margin-left: 3px;
	}

	.about__copy {
		padding-right: 0;
	}

	.about__copy .eyebrow--small {
		letter-spacing: 0.34em;
	}

	.about__copy h2 {
		font-size: clamp(2rem, 5.4vw, 2.8rem);
		max-width: 100%;
	}

	.about__copy p {
		font-size: 1.02rem;
	}

	.section-divider {
		margin: 2rem auto;
	}

	.leads {
		padding: 3rem 0 3.2rem;
	}

	.leads__stage {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.leads__nav {
		width: 54px;
		height: 54px;
		font-size: 1.8rem;
		justify-self: center;
	}

	.lead-form__grid {
		grid-template-columns: 1fr 1fr;
	}

	.unit-card__visual img {
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: min(68vh, 620px);
	}

	.unit-card__cta {
		right: 0.86rem;
		bottom: 0.86rem;
		font-size: 0.72rem;
		padding: 0.72rem 1.12rem;
	}

	.quote-drawer__panel {
		width: min(440px, 100vw);
	}

	.faq {
		width: min(980px, 90%);
	}

	.faq h2 {
		font-size: clamp(1.75rem, 4.8vw, 2.3rem);
		margin-bottom: 1.4rem;
	}

	.faq details {
		padding-inline: 1rem;
	}

	.hero__copy {
		order: 1;
		padding: 2.6rem 1.2rem;
		padding-right: 3rem;
	}

	.hero__image {
		order: 2;
		min-height: 460px;
	}

	.hero .eyebrow {
		margin-bottom: 1.2rem;
		letter-spacing: 0.28em;
		font-size: 0.7rem;
	}

	.chip {
		font-size: 0.8rem;
	}

	.hero h1 {
		font-size: clamp(1.75rem, 7vw, 2.6rem);
		max-width: 100%;
	}

	.quote-drawer__tab {
		left: -40px;
		width: 40px;
		height: 190px;
		font-size: 0.78rem;
		padding: 0.9rem 0.6rem;
	}

	.quote-drawer__panel {
		transform: translateX(100%);
	}

	.highlights__grid {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
	}

	.highlight-card {
		min-height: 160px;
		padding: 1.2rem 0.8rem;
		gap: 0.8rem;
	}

	.highlight-card:nth-child(odd) {
		border-right: 1px solid rgba(209, 210, 137, 0.48);
	}

	.highlight-card:nth-child(-n+4) {
		border-bottom: 1px solid rgba(209, 210, 137, 0.48);
	}

	.highlight-card:nth-child(5) {
		grid-column: 1 / -1;
		border-right: none;
	}

	.gallery--desktop {
		display: none;
	}

	.gallery--mobile {
		display: block;
	}

	.gallery {
		width: 100%;
	}

	.gallery__panel {
		height: 100svh;
	}

	.gallery__media {
		height: 100%;
	}

	.gallery__image {
		object-fit: cover;
		height: 100%;
	}

	.footer__top {
		grid-template-columns: 1fr;
		gap: 0.7rem;
		padding-bottom: 0.9rem;
	}

	.footer__cell {
		justify-content: center;
		min-height: auto;
	}

	.footer__cell--versia {
		display: none;
	}

	.footer__cell--address p {
		text-align: center;
		font-size: 0.85rem;
	}

	.footer__bottom {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		padding-top: 0.75rem;
	}

	.footer__legal {
		justify-content: center;
		gap: 0.9rem 1.2rem;
	}

	.footer__social {
		justify-content: center;
		gap: 1.1rem;
	}
}

@media (max-width: 640px) {
	.hero__topbar {
		min-height: 64px;
		padding-inline: 1.2rem;
	}

	.brand img {
		height: auto;
		width: 150px;
		object-fit: contain;
	}

	.partner img {
		height: auto;
		width: 120px;
		object-fit: contain;
	}

	.hero h1 {
		max-width: 100%;
	}

	.highlights__grid {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
	}

	.about {
		padding: 3rem 0;
	}

	.about__tree {
		display: none;
	}

	.about__media {
		width: 100%;
		aspect-ratio: 16/9;
		border-radius: 0 28px 0 28px;
	}

	.about__video--desktop {
		display: none;
	}

	.about__video--mobile {
		display: block;
		aspect-ratio: 1/1;
		min-height: unset;
	}

	.play-btn {
		width: 88px;
		height: 88px;
		border-width: 3px;
	}

	.play-btn span {
		margin-left: 33px;
		border-top-width: 10px;
		border-bottom-width: 10px;
		border-left-width: 17px;
	}

	.about__video-controls {
		left: 0.75rem;
		bottom: 0.75rem;
		gap: 0.4rem;
	}

	.about__video-control {
		width: 38px;
		height: 38px;
	}

	.about__copy > .eyebrow:first-child {
		font-size: 0.78rem;
	}

	.about__copy .eyebrow--small {
		font-size: 0.72rem;
		margin-bottom: 1.2rem;
	}

	.about__copy h2 {
		font-size: 2rem;
	}

	.about__copy p {
		font-size: 0.95rem;
	}

	.about__actions {
		flex-wrap: wrap;
		gap: 0.8rem;
	}

	.about__actions .btn--primary {
		font-size: 0.78rem;
		padding: 0.86rem 1.2rem;
	}

	.about__actions .btn--icon {
		width: 46px;
		height: 46px;
	}

	.highlight-card {
		min-height: 128px;
		padding: 1.2rem 0.8rem;
		border-right: none;
		border-bottom: 1px solid rgba(209, 210, 137, 0.48);
	}

	.highlight-card:nth-child(odd) {
		border-right: 1px solid rgba(209, 210, 137, 0.48);
	}

	.highlight-card:last-child {
		border-bottom: none;
	}

	.highlight-card img {
		width: 52px;
		height: 52px;
	}

	.highlight-card h2 {
		font-size: 0.72rem;
		letter-spacing: 0.1em;
		line-height: 1.3;
	}

	.gallery--desktop {
		display: none;
	}

	.gallery--mobile {
		display: block;
	}

	.gallery {
		width: 100%;
	}

	.gallery__panel {
		height: 100svh;
	}

	.gallery__media {
		height: 100%;
	}

	.gallery__image {
		object-fit: cover;
		height: 100%;
	}

	.about{
		padding: 2rem 1rem;
	}

	.section-divider {
		margin: 1.5rem auto;
	}

	.faq {
		padding: 3rem 0;
	}

	.faq {
		width: 92%;
	}

	.faq > .eyebrow {
		font-size: 0.56rem;
		letter-spacing: 0.34em;
	}

	.faq h2 {
		font-size: 1.7rem;
		margin-bottom: 1rem;
	}

	.faq details {
		padding: 0.76rem 0.7rem;
	}

	.faq summary {
		font-size: 0.83rem;
		padding-right: 1.1rem;
	}

	.faq p {
		font-size: 0.79rem;
	}

	.leads {
		background: url("img/FONDO-ICONOS.webp") center center / cover no-repeat;
		padding: 2.6rem 0;
	}

	.leads__stage {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		justify-items: center;
	}

	.unit-card--carousel {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.leads__nav--prev {
		grid-column: 1;
		grid-row: 2;
		justify-self: end;
	}

	.leads__nav--next {
		grid-column: 2;
		grid-row: 2;
		justify-self: start;
	}

	.leads__nav {
		width: 50px;
		height: 50px;
		font-size: 1.6rem;
	}

	.lead-form .eyebrow {
		margin-bottom: 0.7rem;
	}

	.lead-form__grid {
		grid-template-columns: 1fr;
	}

	.lead-form input,
	.lead-form select {
		font-size: 0.72rem;
	}

	.lead-form .btn--full {
		font-size: 0.84rem;
	}

	.unit-card__visual {
		padding: 0;
	}

	.unit-card__visual img {
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: min(60vh, 420px);
	}

	.unit-card__cta {
		right: 0;
		bottom: 0;
		font-size: 0.64rem;
		padding: 0.58rem 0.88rem;
	}

	.plan-modal__dialog {
		inset: 0;
	}

	.plan-modal__close {
		width: 42px;
		height: 42px;
	}

	.quote-drawer__panel {
		width: 100vw;
		padding: 4.8rem 1rem 1.4rem;
	}

	.whatsapp-fab {
		width: 48px;
		height: 48px;
	}

	.wa-gate__panel {
		right: 0.75rem;
		bottom: 0.75rem;
		width: min(320px, calc(100vw - 1.5rem));
		padding: 0.9rem 0.85rem 0.85rem;
	}

	.wa-gate__panel h3 {
		font-size: 1.1rem;
	}

	.footer {
		padding-top: 40px;
	}

	/* Footer top: logo and address side-by-side */
	.footer__top {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 1rem 2rem;
		padding: 0 1rem;
		border-bottom: none;
	}

	.footer__cell--brand {
		min-height: auto;
		padding: 0;
	}

	.footer__cell--versia {
		display: none;
	}

	.footer__cell--address {
		justify-content: center;
	}

	.footer__cell--brand img {
		height: 22px;
	}

	.footer__cell--address p {
		text-align: center;
		font-size: 0.72rem;
		line-height: 1.4;
		padding: 0;
	}

	/* Footer bottom: social icons first, legal text below */
	.footer__bottom {
		flex-direction: column;
		align-items: center;
		gap: 0;
		padding: 0;
	}

	.footer__social {
		order: -1;
		width: 100%;
		justify-content: center;
		gap: 1.6rem;
		padding: 1.1rem 1rem;
	}

	.footer__legal {
		order: 1;
		width: 100%;
		justify-content: center;
		gap: 0.4rem 1.1rem;
		padding: 0.75rem 1rem;
		flex-wrap: wrap;
	}

	.footer__bottom p,
	.footer__bottom a {
		font-size: 0.68rem;
	}

	.footer__social img {
		width: 20px;
		height: 20px;
	}
}
