@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: radial-gradient(circle at 0 0, #ffffff 0%, var(--stone-100) 60%, var(--stone-200) 100%);
	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: 999px;
	border: 1px solid transparent;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	padding: 0.75rem 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: var(--gold-soft);
	color: #1f1f1a;
}

.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;
	height: 100vh;
}

.hero__topbar {
	min-height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(247, 247, 246, 0.96);
	padding-inline: clamp(7rem, 4vw, 3rem);
	position: relative;
	z-index: 1200;
}

.brand img,
.partner img {
	height: 34px;
	width: auto;
	object-fit: contain;
}

.partner img {
	height: 42px;
}

.hero__main {
	display: grid;
	grid-template-columns: 1fr 0.93fr;
	gap: 0;
	border-top: 1px solid #e3e1d8;
	background: #f5f4f1;
	width: 100%;
	height: calc(100vh - 90px);
	overflow: hidden;
}

.hero__copy {
	padding: 3rem 7rem 4rem;
	align-self: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.hero .eyebrow {
	font-size: 0.8rem;
	letter-spacing: 1.5em;
	margin-bottom: 1.7rem;
	color: #1f211c;
}

.chip {
	display: inline-block;
	font-size: 1rem;
	text-transform: uppercase;
	background: #72775c;
	color: white;
	letter-spacing: 0.08em;
	padding: 0.75rem;
	border-radius: 8px 0px 8px 0px;
	font-weight: 600;
	line-height: 1;
}

.hero h1 {
	font-family: var(--font-body);
	font-size: 42px;
	line-height: 1.16;
	font-weight: 400;
	margin: 1.5rem 0 2rem;
	max-width: 500px;
	color: #2f312b;
}

.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;
}

.hero__carousel {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.hero__carousel-track {
	position: relative;
	height: 100%;
	width: 100%;
}

.hero__image {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	pointer-events: none;
}

.hero__image.is-active {
	opacity: 1;
	pointer-events: auto;
}

.hero__carousel-dots {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 0.5rem;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(8px);
	padding: 0.5rem 0.8rem;
	border-radius: 20px;
}

.hero__carousel-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__carousel-dot:hover {
	transform: scale(1.2);
}

.hero__carousel-dot.is-active {
	background: #ffffff;
}

.highlights {
	position: relative;
	overflow: hidden;
	background: linear-gradient(130deg, rgba(88, 94, 64, 0.9), rgba(70, 76, 53, 0.9));
	padding: 3.2rem 0;
}

.highlights::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(70, 76, 53, 0.82), rgba(70, 76, 53, 0.82)), url("img/FOTO-EDIFICIO.webp");
	background-size: cover;
	background-position: center;
	filter: grayscale(22%);
	opacity: 0.45;
}

.highlights__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 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: grid;
	place-content: center;
	gap: 1rem;
}

.highlight-card:nth-child(-n + 3) {
	border-bottom: 1px solid rgba(209, 210, 137, 0.48);
}

.highlight-card:not(:nth-child(3n)) {
	border-right: 1px solid rgba(209, 210, 137, 0.48);
}

.highlight-card img {
	width: 74px;
	height: 74px;
	margin: 0 auto;
	object-fit: contain;
}

.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: minmax(320px, 0.95fr) minmax(340px, 1fr);
	gap: 2.4rem;
	padding: 5.2rem 0 4.6rem;
	align-items: center;
	background: #ffffff;
}

.about.container {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	padding-inline: clamp(1.2rem, 7vw, 7rem);
}

.about__tree {
	position: absolute;
	bottom: 0;
	width: clamp(79px, 11.25vw, 146px);
	height: clamp(210px, 30vw, 390px);
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
	opacity: 1;
}

.about__tree video {
	width: 200%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about__tree--left {
	left: 0;
}

.about__tree--left video {
	transform: translateX(-50%);
}

.about__tree--right {
	right: 0px;
	width: clamp(114px, 15.4vw, 206px);
	height: clamp(292px, 38.5vw, 548px);
}

.about__media,
.about__copy {
	position: relative;
	z-index: 1;
}

.about__media {
	position: relative;
	width: 100%;
	border-radius: 0 46px 0 46px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	max-width: 100%;
	justify-self: center;
	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;
}

#about-video,
#about-youtube-iframe {
	position: absolute;
	inset: 0;
}

.about__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(24, 28, 20, 0.34), rgba(24, 28, 20, 0.52));
}

.about__media[data-video-type="youtube"]::after {
	display: none;
}

.play-btn {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	border: 4px solid #ccd176;
	background: rgba(26, 29, 22, 0.28);
	z-index: 2;
	cursor: pointer;
}

.play-btn span {
	display: block;
	width: 0;
	height: 0;
	margin-left: 35px;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #ccd176;
}

.about__video-controls {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	z-index: 3;
}

.about__video-control {
	position: relative;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(17, 21, 14, 0.72);
	color: #fff;
	border-radius: 50%;
	padding: 0;
	display: grid;
	place-items: center;
	cursor: pointer;
}

.about__video-control:hover {
	filter: brightness(1.08);
}

.about__video-control::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.about__video-control::after {
	content: "";
	position: absolute;
}

.about__video-control--mute {
	order: -1;
}

.about__video-control--pause[data-state="play"]::before {
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid #fff;
	transform: translate(-43%, -50%);
}

.about__video-control--pause[data-state="play"]::after {
	display: none;
}

.about__video-control--pause[data-state="pause"]::before,
.about__video-control--pause[data-state="pause"]::after {
	width: 3px;
	height: 14px;
	background: #fff;
	border-radius: 2px;
	top: 50%;
	transform: translateY(-50%);
}

.about__video-control--pause[data-state="pause"]::before {
	left: calc(50% - 4px);
}

.about__video-control--pause[data-state="pause"]::after {
	left: calc(50% + 4px);
}

.about__video-control--mute::before,
.about__video-control--mute::after {
	display: none;
}

.about__video-control--mute i {
	font-size: 0.9rem;
	line-height: 1;
	color: #fff;
}

.about__media.is-audio-on::after,
.about__media.is-audio-on .play-btn {
	display: none;
}

.about__media.is-audio-on .about__video-controls {
	display: flex;
}

.about__copy {
	padding-right: 1.2rem;
}

.about__copy .eyebrow {
	margin: 0;
}

.about__copy > .eyebrow:first-child {
	display: inline-block;
	background: #707557;
	color: #f6f5ee;
	font-size: 0.72rem;
	letter-spacing: 0.07em;
	padding: 0.34rem 0.8rem;
	border-radius: 4px;
	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,
.location-intro h2,
.location__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: 54ch;
	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 {
	background: url("img/FRANJA-VERDE.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 span {
	color: #f2e8aa;
	font-weight: 700;
}

.location {
	position: relative;
	overflow: hidden;
	background-color: #f7f7f4;
	padding: 0;
}

.location::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("img/FONDO-MAPA.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	z-index: 0;
}

.location__grid {
	display: block;
	aspect-ratio: 960 / 525;
	min-height: clamp(420px, 54vw, 620px);
	width: 100%;
	max-width: none;
	position: relative;
	z-index: 1;
}

.location .container {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

.location__map {
	overflow: hidden;
	min-height: 520px;
}

.location__map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.location__copy {
	position: absolute;
	right: clamp(1.2rem, 5vw, 5rem);
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: min(42%, 520px);
	min-height: auto;
	padding: 0 1rem;
}

.location__pin {
	width: 58px;
	height: 58px;
	object-fit: contain;
	margin-bottom: 0.6rem;
}

.location__copy .eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.58em;
	margin-bottom: 1.1rem;
	color: #1f211b;
}

.location__copy h2 {
	font-size: clamp(2rem, 2.45vw, 2.85rem);
	line-height: 1.2;
	max-width: 13ch;
	margin-bottom: 1.4rem;
}

.location__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin: 0.3rem 0 1.65rem;
}

.location__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.48rem;
	background: #c9cb6b;
	transition: transform 0.2s ease, filter 0.2s ease;
	border-radius: 999px;
	padding: 0.48rem 0.95rem 0.48rem 0.46rem;
	font-size: 0.71rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1;
	color: #22241d;
}

.location__btn img {
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.location__btn:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
	transition: transform 0.2s ease, filter 0.2s ease;
}

.location__tagline {
	margin: 0;
	color: #11130f;
	font-weight: 800;
	font-size: 0.88rem;
}

.location__tagline span {
	color: #9ca34c;
}

/* ============================================ */
/* 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-width: 1400px;
	margin: 0 auto;
	min-height: 600px;
	overflow: hidden;
}

.mapas__left {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #ffffff;
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.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-wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
}

.mapas__map {
	margin: 0;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	cursor: zoom-in;
	height: 100%;
}

.mapas__map img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	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 {
	background-color: #5e5e43;
	border: 2px solid transparent;
	transform: scale(1.05);
}

.mapas__icon-btn.active img {
	filter: brightness(0) invert(1);
}

.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;
	padding: 2rem;
}

.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-direction: row;
	justify-content: flex-end;
	gap: 0.6rem;
	flex-shrink: 0;
}

.mapas__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #c4ca72;
	transition: transform 0.2s ease, background-color 0.2s ease;
	border-radius: 0 0 25px 25px;
	padding: 0.6rem 1.5rem 0.6rem 0.7rem;
	overflow: visible;
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1;
	color: #000000;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.mapas__btn img {
	position: relative;
	left: 0;
	top: 0;
	transform: none;
	width: 28px;
	height: 28px;
	object-fit: contain;
	border-radius: 0;
	flex-shrink: 0;
}

.mapas__btn:hover {
	background-color: #e0dc9e;
	transform: translateY(-2px);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Responsive para mapas */
@media (max-width: 768px) {
	.mapas {
		min-height: auto;
		max-height: none;
		padding: 0;
	}

	.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-wrapper {
		order: 3;
		width: 100%;
	}

	.mapas__map {
		height: 400px;
		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: 0 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;
		font-size: 0.75rem;
		white-space: nowrap;
	}
}

.gallery {
	position: relative;
	z-index: 3;
	width: 100%;
	background: #e9e6dc;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), 0 3px 10px rgba(0, 0, 0, 0.26);
}

.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__media {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery__image--mobile {
	display: none;
}

.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.28), rgba(15, 18, 12, 0.52));
	color: #f4f3ee;
	z-index: 4;
}

.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;
}

.leads {
	position: relative;
	z-index: 1;
	background: linear-gradient(180deg, #a3a579, #909260);
	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: #6f7857;
	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: #555b4c;
	text-transform: none;
	letter-spacing: 0;
	margin-left: 10px;
}

.checkbox span a,
.checkbox span button.terms-link {
	color: #3d5a1e;
	text-decoration: underline;
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
}

.checkbox span a:hover,
.checkbox span button.terms-link:hover {
	color: #2a4014;
}

/* ── Terms Modal ───────────────────────────────────────────────────── */
.terms-modal {
	position: fixed;
	inset: 0;
	z-index: 2100;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease;
	padding: 1rem;
}

.terms-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.terms-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 18, 14, 0.7);
	border: none;
	cursor: pointer;
}

.terms-modal__dialog {
	position: relative;
	width: min(800px, 100%);
	max-height: 85vh;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.terms-modal__header {
	padding: 1.2rem 1.5rem;
	border-bottom: 1px solid #e8e6de;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f7f3;
}

.terms-modal__header h3 {
	margin: 0;
	font-size: 1.15rem;
	color: #2f312b;
}

.terms-modal__close {
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 999px;
	background: #e8e6de;
	color: #3e4334;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.terms-modal__close:hover {
	background: #d8d6ce;
}

.terms-modal__content {
	padding: 1.5rem;
	overflow-y: auto;
	font-size: 0.88rem;
	line-height: 1.65;
	color: #3e4334;
}

.terms-modal__content h4 {
	margin: 1.5rem 0 0.6rem;
	font-size: 1rem;
	color: #2f312b;
}

.terms-modal__content h4:first-child {
	margin-top: 0;
}

.terms-modal__content p {
	margin: 0 0 1rem;
}

.terms-modal__content ul {
	margin: 0 0 1rem;
	padding-left: 1.2rem;
}

.terms-modal__content li {
	margin-bottom: 0.4rem;
}

.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;
	border-radius: 50px 0 50px 0;
	box-shadow: 0 20px 42px rgba(41, 45, 33, 0.12);
	border-radius: 50px 0px 50px 0px;
	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;
}

.unit-card__cta {
	position: absolute;
	right: clamp(0.9rem, 2vw, 1.4rem);
	bottom: clamp(0.9rem, 2vw, 1.4rem);
	border: none;
	border-radius: 999px;
	background: #c5ca73;
	color: #25261f;
	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);
}

.unit-card__zoom {
	position: absolute;
	left: clamp(0.9rem, 2vw, 1.4rem);
	bottom: clamp(0.9rem, 2vw, 1.4rem);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 999px;
	background: rgba(37, 38, 31, 0.85);
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 18px rgba(41, 45, 33, 0.28);
	transition: transform 0.2s ease, background 0.2s ease;
}

.unit-card__zoom:hover {
	transform: scale(1.08);
	background: rgba(37, 38, 31, 0.95);
}

.unit-card__zoom svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.leads__nav {
	width: 58px;
	height: 58px;
	border: none;
	border-radius: 999px;
	background: rgba(62, 67, 52, 0.92);
	color: #f9f8f3;
	font-size: 1.4rem;
	line-height: 0;
	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;
	padding: 0;
}

.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: #c5ca73;
	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: 18px 0 0 18px;
	background: #c5ca73;
	color: #24261f;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.9rem;
	font-weight: 700;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(41, 45, 33, 0.24);
	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: #d6d18a;
	color: #23251e;
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
}

.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: #262922;
}

.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;
	padding: 1rem;
}

.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: #c5ca73;
	color: #23251e;
	font-size: 1.9rem;
	line-height: 1;
	cursor: pointer;
}

/* ── 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: #64684f;
}

.faq details[open] {
	background: #c9cb6b;
	border-radius: 0 0 22px 0;
	border-bottom: none;
	padding: 0.95rem 1.35rem 1rem;
	margin-bottom: 0.5rem;
}

.faq details[open] summary {
	font-weight: 700;
	color: #20221c;
}

.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: #2f3129;
	transition: color 0.28s ease;
}

.faq details[open] p {
	color: #22241d;
}

.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;
}

.whatsapp-fab:hover {
	transform: translateY(-3px) scale(1.06);
	filter: brightness(1.08);
}

.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;
}

.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,
.location,
.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 {
		height: auto;
	}

	.hero__main {
		height: auto;
	}

	.hero__main,
	.about,
	.location__grid,
	.leads__grid {
		grid-template-columns: 1fr;
	}

	.about {
		padding: 4.2rem 0 3.8rem;
		gap: 2rem;
	}

	.about__tree {
		height: 220px;
		width: 83px;
		opacity: 0.65;
	}

	.about__media {
		border-radius: 0 32px 0 32px;
	}

	.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;
	}

	.location-intro h2 {
		font-size: clamp(1.1rem, 3.5vw, 1.45rem);
	}

	.location {
		min-height: 420px;
	}

	.location::before {
		inset: 0;
		background-size: cover;
		background-position: center;
	}

	.location__grid {
		aspect-ratio: auto;
		min-height: 420px;
	}

	.location__copy {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		min-height: 420px;
		padding: 2.3rem 1.2rem 2.6rem;
		background: linear-gradient(rgba(247, 247, 244, 0.84), rgba(247, 247, 244, 0.84));
	}

	.location__copy h2 {
		font-size: clamp(1.8rem, 4vw, 2.2rem);
		max-width: 100%;
	}

	.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;
		height: auto;
	}

	.hero__carousel {
		order: 2;
		height: 60vh;
		min-height: 400px;
	}

	.hero__image {
		height: 100%;
	}

	.hero__image img {
		object-fit: cover;
		object-position: center;
	}

	.hero__carousel-dots {
		bottom: 1rem;
		padding: 0.4rem 0.7rem;
	}

	.hero__carousel-dot {
		width: 10px;
		height: 10px;
	}

	.hero .eyebrow {
		margin-bottom: 1.2rem;
		letter-spacing: 0.28em;
		font-size: 0.7rem;
	}

	.chip {
		font-size: 0.8rem;
	}

	.hero h1 {
		font-size: clamp(2rem, 8vw, 3rem);
		max-width: 100%;
	}

	.quote-drawer__tab {
		left: -52px;
		width: 52px;
		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);
	}

	.highlight-card {
		min-height: 170px;
		padding: 1.5rem 1rem;
		border-bottom: 1px solid rgba(209, 210, 137, 0.48);
	}

	.highlight-card:nth-child(-n + 3) {
		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:nth-child(even) {
		border-right: none;
	}

	.highlight-card:nth-last-child(-n + 2) {
		border-bottom: none;
	}

	.gallery {
		width: 100%;
	}

	.gallery__panel {
		height: 100svh;
	}

	.footer__top {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 1rem;
		padding: 0.5rem 1rem 0.9rem;
	}

	.footer__cell {
		justify-content: center;
		min-height: auto;
	}

	.footer__cell--versia {
		display: none;
	}

	.footer__cell--address p {
		text-align: right;
		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 {
		min-height: auto;
	}

	.hero__main {
		min-height: auto;
	}

	.hero__topbar {
		min-height: 64px;
		padding-inline: 1.2rem;
	}

	.brand img,
	.partner img {
		height: 20px;
	}

	.hero h1 {
		max-width: 100%;
		font-size: 32px;
		margin: 1.2rem 0 1.5rem;
	}

	.hero__copy {
		padding: 2rem 1.2rem;
	}

	.hero__carousel {
		height: 50vh;
		min-height: 350px;
		max-height: 500px;
	}

	.highlights {
		padding: 0;
	}

	.highlights__grid {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
	}

	.about {
		padding: 3rem 0;
	}

	.about__tree {
		display: none;
	}

	.about__media {
		width: 100%;
		border-radius: 0 28px 0 28px;
	}

	.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:nth-last-child(-n + 2) {
		border-bottom: none;
	}

	.highlight-card:last-child {
		border-bottom: none;
	}

	.highlight-card img {
		width: 58px;
		height: 58px;
	}

	.highlight-card h2 {
		font-size: 0.74rem;
	}

	.location-intro {
		padding: 1rem 0;
	}

	.location-intro h2 {
		font-size: 1.05rem;
		line-height: 1.2;
	}

	.location {
		min-height: 300px;
	}

	.location::before {
		inset: 0;
		background-size: cover;
		background-position: center;
	}

	.location__grid {
		min-height: 300px;
	}

	.location__copy {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		min-height: 300px;
		padding: 1.8rem 1rem 2rem;
		background: linear-gradient(rgba(247, 247, 244, 0.88), rgba(247, 247, 244, 0.88));
	}

	.location__pin {
		width: 46px;
		height: 46px;
	}

	.location__copy .eyebrow {
		font-size: 0.63rem;
		letter-spacing: 0.42em;
	}

	.location__copy h2 {
		font-size: 1.15rem;
	}

	.location__actions {
		gap: 0.55rem;
		margin-bottom: 1.1rem;
	}

	.location__btn {
		font-size: 0.62rem;
		padding: 0.42rem 0.7rem 0.42rem 0.4rem;
	}

	.location__btn img {
		width: 22px;
		height: 22px;
	}

	.gallery {
		width: 100%;
	}

	.gallery__panel {
		height: 100svh;
	}

	.gallery__image--desktop {
		display: none;
	}

	.gallery__image--mobile {
		display: block;
	}

	.about,
	.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 {
		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.2rem;
	}

	.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.75rem;
		bottom: 0.75rem;
		font-size: 0.64rem;
		padding: 0.58rem 0.88rem;
	}

	.plan-modal__dialog {
		inset: 0.7rem;
	}

	.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: logos side-by-side */
	.footer__top {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 0.5rem;
		padding: 0.5rem 1rem;
	}

	.footer__cell--brand,
	.footer__cell--versia {
		min-height: auto;
		padding: 0;
	}

	.footer__cell--versia {
		display: none;
	}

	.footer__cell--address {
		justify-content: flex-end;
	}

	.footer__cell--brand img {
		height: 22px;
	}

	.footer__cell--versia img {
		display: none;
	}

	.footer__cell--address p {
		text-align: right;
		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;
	}
}
