:root {
  --teal: #6b1028;
  --teal-deep: #3f0014;
  --gold: #b9a17f;
  --gold-soft: #e4d3b8;
  --clay: #8a1838;
  --ink: #110e0c;
  --ink-soft: #5a514a;
  --paper: #f6f0e8;
  --sand: #ede3d4;
  --white: #ffffff;
  --available: #2f8f4e;
  --reserved: #d97706;
  --sold: #c2410c;
  --promo: #0e8a8a;
  --comercial: #7c3aed;
  --wine: #6b1028;
  --wine-deep: #3f0014;
  --magenta: #8a1838;
  --coral: #8a1838;
  --shadow: 0 18px 40px rgba(63, 0, 20, 0.1);
  --radius: 1.1rem;
  --font-display: "Archivo", "Arial", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --header-h: 6.6rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; }
.hero-slide, .hero-video { max-width: none; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.has-cursor,
body.has-cursor a,
body.has-cursor button { cursor: auto; }

.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.grain, .cursor, .cursor-dot { display: none !important; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 60;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--clay));
}

.boot {
  position: fixed; inset: 0; z-index: 80; display: grid; place-items: center;
  background: #f6f0e8; color: var(--ink); gap: .5rem;
  transition: opacity .6s ease, visibility .6s; cursor: pointer;
}
.boot.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
.boot-logo {
  width: min(320px, 78vw); height: auto; object-fit: contain;
  background: #fff; border-radius: 18px;
  box-shadow: 0 12px 32px rgba(17, 14, 12, .08);
}

.page-ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(185, 161, 127, .22), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(107, 16, 40, .12), transparent 50%),
    #f6f0e8;
}
.amb, .amb-grid { display: none; }

.bird-sky { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.flying-bird { display: none; }

.container { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }
.section { position: relative; z-index: 2; isolation: isolate; padding: clamp(4rem, 7vw, 6rem) 0; }
.section::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.section > * { position: relative; z-index: 1; }
.band-soft {
  background:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(185, 161, 127, .22), transparent 58%),
    radial-gradient(ellipse 55% 50% at 100% 90%, rgba(107, 16, 40, .07), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f7f1e8 100%);
}
.band-sand {
  background:
    radial-gradient(ellipse 65% 50% at 100% 0%, rgba(107, 16, 40, .10), transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(185, 161, 127, .30), transparent 50%),
    linear-gradient(165deg, #f6ecdc 0%, #ede3d4 50%, #e6d5c0 100%);
}

.section-wash {
  position: relative;
  z-index: 2;
  height: clamp(168px, 26vw, 340px);
  overflow: hidden;
  background-color: #000;
}
.wash-video-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.wash-video-clip iframe {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translateY(-50%);
  border: 0;
  pointer-events: none;
  max-width: none;
}

.eyebrow {
  margin: 0 0 .4rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; font-size: .75rem; color: var(--teal);
}
.section-title {
  margin: 0 0 .75rem; font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 3.2rem); line-height: 1.12; font-weight: 700; color: var(--ink);
  white-space: nowrap; font-style: normal;
}
.section-title .accent { color: var(--clay); font-style: normal; font-weight: 700; }
.section-lead { margin: 0 0 2rem; max-width: 48ch; color: var(--ink-soft); font-size: 1.05rem; }

.reveal { opacity: 1; transform: none; }

.btn {
  appearance: none; border: 0; display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .9rem 1.35rem; border-radius: 999px; font: inherit; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sun { background: var(--teal); color: #fff; box-shadow: 0 10px 22px rgba(107, 16, 40, .28); }
.btn-sun:hover { background: var(--teal-deep); }
.btn-whatsapp { background: #1f9d4c; color: #fff; }
.btn-ghost, .btn-ghost-light {
  background: transparent; border: 1px solid rgba(42, 36, 28, .18); color: var(--ink);
}
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-sm { padding: .45rem .9rem; font-size: .86rem; }
.btn-block { width: 100%; }
.btn-ghost.is-on { background: var(--teal); color: #fff; border-color: var(--teal); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: max(.55rem, env(safe-area-inset-top)) max(1.2rem, env(safe-area-inset-right)) .55rem max(1.2rem, env(safe-area-inset-left));
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled {
  background: rgba(247, 244, 238, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(42, 36, 28, .08);
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: #f0e0c2; }
.site-header.scrolled .brand { color: #8d7349; }
.brand-logo {
  width: 96px; height: 96px; object-fit: contain; object-position: center;
  border-radius: 12px; background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: .02em;
  color: #f3e6c8;
  text-shadow: 0 1px 8px rgba(8, 6, 4, .45);
}
.site-header.scrolled .brand-text { color: #8d7349; text-shadow: none; }
.nav { display: flex; align-items: center; gap: .2rem 1.15rem; }
.nav a {
  color: #f0e0c2; text-decoration: none; font-weight: 600; font-size: .92rem;
  text-shadow: 0 1px 8px rgba(8, 6, 4, .4);
}
.nav a:hover { color: #fff6e4; }
.site-header.scrolled .nav a { color: #8d7349; text-shadow: none; }
.nav-cta {
  background: linear-gradient(180deg, #f3e6c8, #b9a17f);
  color: #3f0014 !important;
  padding: .5rem 1rem; border-radius: 999px;
  text-shadow: none !important;
  box-shadow: 0 0 16px rgba(185, 161, 127, .35);
}
.site-header.scrolled .nav-cta { color: #3f0014 !important; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.nav-toggle span { display: block; height: 2px; margin: 6px 8px; background: #f0e0c2; border-radius: 99px; }
.site-header.scrolled .nav-toggle span { background: #8d7349; }

.hero { position: relative; z-index: 2; min-height: 100svh; display: grid; overflow: hidden; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-slide, .hero-video {
  position: absolute; inset: -1%; width: 102%; height: 102%;
  object-fit: cover; object-position: center;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-slide.is-on { opacity: 1; }
.hero-rays { display: none; }
.hero-wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 45% at 50% 100%, rgba(107, 16, 40, .38), transparent 55%),
    linear-gradient(180deg, rgba(18, 22, 20, .42) 0%, rgba(18, 22, 20, .24) 42%, rgba(18, 22, 20, .76) 100%);
}
.hero-orbs { display: none; }
.hero-stage {
  position: relative; z-index: 4; display: flex; flex-direction: column;
  justify-content: flex-end; align-items: stretch; min-height: 100svh;
  padding: calc(var(--header-h) + 1rem) 0 1.5rem;
}
.hero-content { text-align: center; color: #fff; max-width: min(92vw, 72rem); margin: 0 auto; padding: 0 1rem; }
.hero-kicker {
  position: relative;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: .75rem .95rem; margin: 0 auto .35rem;
  width: fit-content; max-width: 100%;
  padding: .62rem 1.35rem;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-display);
  font-size: clamp(.88rem, 1.8vw, 1.14rem);
  font-weight: 800;
  letter-spacing: clamp(.14em, 1.8vw, .3em);
  text-transform: uppercase;
  color: #3f0014;
  border-radius: 999px;
  border: 1px solid #fff6e4;
  background: linear-gradient(110deg, #9d8158 0%, #e8d4b0 22%, #fff6e4 38%, #c9ae86 58%, #b9a17f 78%, #e4d3b8 100%);
  background-size: 240% 100%;
  animation: goldSweep 5.5s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(185, 161, 127, .45),
    0 0 28px rgba(185, 161, 127, .42),
    0 10px 24px rgba(8, 6, 4, .28),
    inset 0 1px 0 rgba(255, 246, 228, .75);
  text-shadow: 0 1px 0 rgba(255, 246, 228, .45);
}
.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: clamp(1.4rem, 5vw, 2.8rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, #3f0014 40%, #6b1028 50%, #3f0014 60%, transparent);
  opacity: .35;
}
.hero-kicker i {
  width: .48rem; height: .48rem; flex: none;
  transform: rotate(45deg);
  background: linear-gradient(145deg, #fff8ea, #6b1028);
  box-shadow: 0 0 10px rgba(63, 0, 20, .35);
}
@keyframes goldSweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-content h1 {
  margin: .35rem 0 .8rem; font-family: var(--font-display);
  font-size: clamp(1.45rem, 5.4vw, 4.2rem); line-height: 1; font-weight: 700;
  white-space: nowrap; font-style: normal;
}
.hero-content h1 em { font-style: normal; font-weight: 700; color: var(--gold-soft); }
.hero-content h1,
.hero-content h1 em,
.hero-tagline {
  text-shadow:
    0 1px 2px rgba(8, 6, 4, .55),
    0 6px 22px rgba(8, 6, 4, .42);
}
.hero-tagline { margin: 0 auto 1.3rem; max-width: 40ch; font-size: 1.08rem; font-weight: 400; color: rgba(255,255,255,.95); }
.hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-bottom: 1.5rem; }
.hero-pills span {
  padding: .7rem 1.25rem; border-radius: 999px;
  background: rgba(12, 10, 8, .38); border: 1px solid rgba(255,255,255,.28);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem); font-weight: 700; backdrop-filter: blur(8px);
  text-shadow: 0 1px 8px rgba(8, 6, 4, .45);
}
.hero-actions {
  display: flex; justify-content: space-between; align-items: stretch;
  gap: 1rem; width: 100%; padding: 1.45rem 1.25rem 0; box-sizing: border-box;
}
.hero-actions .btn {
  flex: 1 1 0;
  padding: 1.15rem 1.4rem;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}
.scroll-hint {
  display: block; width: 22px; height: 36px; margin: 1.1rem auto 0;
  border: 1.5px solid rgba(255,255,255,.65); border-radius: 999px;
}
.scroll-hint span {
  display: block; width: 5px; height: 5px; margin: 7px auto; border-radius: 50%;
  background: var(--gold-soft); animation: scrollDot 1.4s ease-in-out infinite;
}
@keyframes scrollDot { to { transform: translateY(14px); opacity: 0; } }

.ticker {
  position: relative; z-index: 3; overflow: hidden;
  background:
    linear-gradient(90deg, #2a000e 0%, #3f0014 38%, #6b1028 68%, #2a000e 100%);
  color: #f3ead8;
}
.ticker-track {
  display: flex; gap: 2.8rem; width: max-content; padding: 1.05rem 0;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  animation: ticker 32s linear infinite;
}
.ticker-track span::before { content: "· "; color: var(--gold); }
@keyframes ticker { to { transform: translateX(-50%); } }

.trust-bar {
  position: relative; z-index: 2;
  background:
    radial-gradient(ellipse 50% 90% at 0% 50%, rgba(185, 161, 127, .20), transparent 55%),
    radial-gradient(ellipse 50% 90% at 100% 50%, rgba(107, 16, 40, .07), transparent 55%),
    linear-gradient(180deg, #ffffff, #f6efe4);
  border-bottom: 1px solid rgba(42,36,28,.08);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 1.4rem 0; text-align: center;
}
.trust-grid strong {
  display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--teal-deep);
}
.trust-grid span { font-size: .82rem; font-weight: 500; color: var(--ink-soft); }

.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.service {
  background: #fff; border-radius: 1.1rem; padding: 1.25rem 1.05rem 1.3rem;
  box-shadow: var(--shadow); border: 1px solid rgba(42,36,28,.06);
}
.service:hover { transform: translateY(-4px); }
.service h3 { margin: .7rem 0 .25rem; font-family: var(--font-display); font-size: 1.25rem; }
.service p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.service-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon.c1 { background: #b9a17f; }
.service-icon.c2 { background: #6b1028; }
.service-icon.c3 { background: #3f0014; }
.service-icon.c4 { background: #8a1838; }
.service-icon.c5 { background: #110e0c; }
.lot-panel-detail.is-punch { animation: ticketPunch .4s ease; }
@keyframes ticketPunch { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin: 0 0 1.2rem; }
.stat {
  background: #fff; border-radius: .9rem; padding: .9rem 1rem; text-align: center;
  box-shadow: 0 8px 22px rgba(42,36,28,.06); border: 1px solid rgba(42,36,28,.06);
}
.stat strong { display: block; font-family: var(--font-display); font-size: 1.85rem; line-height: 1; }
.stat span { font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.stat.total { background: #efe4d2; border-color: #d4c0a0; }
.stat.total strong { color: #6b1028; }
.stat.total span { color: #6b1028; }
.stat.ok { background: #d9f0e1; border-color: #8fd1a3; border-bottom: 3px solid var(--available); }
.stat.ok strong, .stat.ok span { color: #1e6b38; }
.stat.warn { background: #fde9cc; border-color: #f0c48a; border-bottom: 3px solid var(--reserved); }
.stat.warn strong, .stat.warn span { color: #9a5400; }
.stat.bad { background: #f8d5cc; border-color: #e8a090; border-bottom: 3px solid var(--sold); }
.stat.bad strong, .stat.bad span { color: #9a2b12; }

.lot-legend { display: flex; flex-wrap: wrap; gap: .65rem 1.1rem; font-weight: 600; margin-bottom: 1rem; font-size: .92rem; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: .35rem; vertical-align: 0; }
.dot.available { background: var(--available); }
.dot.reserved { background: var(--reserved); }
.dot.sold { background: var(--sold); }
.dot.promo { background: var(--promo); }
.dot.comercial { background: var(--comercial); }

.plan-toolbar { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-bottom: .9rem; }
.filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  border: 1px solid rgba(42,36,28,.14); background: #fff; border-radius: 999px;
  padding: .4rem .85rem; font: inherit; font-weight: 600; cursor: pointer;
}
.chip.is-on { background: var(--teal); color: #fff; border-color: var(--teal); }
.mz-search select {
  padding: .42rem .7rem; border-radius: 999px; border: 1px solid rgba(42,36,28,.14);
  font: inherit; font-weight: 600; background: #fff;
}

.lots { overflow-x: clip; }
.lot-workspace {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 1.1rem; width: 100%; max-width: 100%; min-width: 0;
}
.plan-stage { position: relative; padding: 0; min-width: 0; max-width: 100%; }
.plan-frame {
  position: relative;
  width: 100%; max-width: 100%; min-width: 0;
  height: min(68vh, 720px);
  overflow: hidden;
  border-radius: 1rem;
  background: #f3efe6;
  box-shadow: var(--shadow);
  border: 1px solid rgba(42,36,28,.08);
}
.zoom-controls {
  position: absolute; left: .9rem; bottom: .9rem; z-index: 8;
  display: flex; flex-direction: column; gap: .55rem;
}
.zoom-btn {
  width: 64px; height: 64px; border: 0; border-radius: 16px;
  background: #fff; color: var(--ink);
  font-size: 2.25rem; font-weight: 700; line-height: 1;
  cursor: pointer; box-shadow: 0 10px 24px rgba(42,36,28,.22);
}
.zoom-btn:hover, .zoom-btn:focus-visible {
  background: var(--teal); color: #fff; outline: none;
}
.plan-full {
  width: 100%; height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-x pan-y;
  cursor: grab;
  background: #f3efe6;
}
.plan-full.is-drag { cursor: grabbing; }
.plan-native { position: relative; width: 100%; min-width: 0; }
.plan-image { width: 100%; height: auto; display: block; vertical-align: top; }
.plan-color {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(107,16,40,.12), rgba(185,161,127,.14));
  mix-blend-mode: multiply;
}
.plan-native.is-official .plan-color { display: none; }
.plan-hotspots { position: absolute; inset: 0; }
.hotspot {
  position: absolute; border: 0; padding: 0; border-radius: 4px; cursor: pointer;
  background: rgba(47, 143, 78, .5); box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  transition: transform .15s, box-shadow .15s;
}
.hotspot.comercial { background: rgba(124, 58, 237, .5); }
.hotspot.reserved { background: rgba(217, 119, 6, .55); }
.hotspot.sold { background: rgba(194, 65, 12, .5); cursor: not-allowed; }
.hotspot.promo { background: rgba(14, 138, 138, .5); }
.hotspot.is-dim { opacity: .14; filter: grayscale(.5); }
.hotspot:hover, .hotspot:focus-visible, .hotspot.active {
  outline: none; z-index: 4; transform: scale(1.3);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--teal);
}
.hotspot-n {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: .55rem; font-weight: 700; pointer-events: none; text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

.lot-panel {
  position: sticky; top: calc(var(--header-h) + .8rem);
  min-width: 0;
  background: #fff; border-radius: 1.15rem; padding: 1.3rem;
  box-shadow: var(--shadow); border: 1px solid rgba(42,36,28,.08);
  display: flex; flex-direction: column; gap: .75rem;
  max-height: calc(100vh - var(--header-h) - 1.6rem); overflow: auto;
}
.lot-panel.ticket { background: #fff; }
.lot-panel-empty { text-align: center; font-weight: 600; color: var(--ink-soft); }
.logo-badge { width: 110px; height: 110px; object-fit: contain; border-radius: 12px; background: #fff; }
.lot-manzana { margin: 0; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); font-size: .74rem; }
.lot-panel h3 { margin: 0; font-family: var(--font-display); font-size: 2rem; }
.lot-meta, .lot-dims { margin: 0; font-weight: 500; color: var(--ink-soft); }
.lot-status { margin: 0; font-weight: 700; }
.lot-status.available { color: var(--available); }
.lot-status.reserved { color: var(--reserved); }
.lot-status.sold { color: var(--sold); }
.lot-status.promo { color: var(--promo); }
.lot-price { margin: 0; font-size: 1.5rem; font-weight: 700; color: var(--teal-deep); }
.ticket-break { display: grid; gap: .4rem; padding: .75rem 0; border-top: 1px dashed rgba(42,36,28,.16); }
.ticket-break div { display: flex; justify-content: space-between; font-weight: 600; }
.lot-funnel-hint { margin: 0; font-size: .82rem; color: var(--ink-soft); }

.pricing-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.6rem; align-items: start; }
.price-table { display: grid; gap: .5rem; }
.price-row {
  display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 1rem;
  background: #fff; border-radius: .8rem; font-weight: 600; box-shadow: 0 6px 16px rgba(42,36,28,.05);
}
.price-row.highlight { background: #f6eef1; }
.price-row.highlight.alt { background: #f4eee4; }
.calculator {
  background: var(--teal-deep); color: #fff; border-radius: 1.2rem; padding: 1.45rem;
  box-shadow: var(--shadow);
}
.calculator h3 { margin: 0 0 .35rem; font-family: var(--font-display); font-size: 1.7rem; }
.calc-rate { margin: 0 0 1rem; color: var(--gold-soft); font-weight: 600; }
.calc-types { display: flex; gap: 1rem; margin-bottom: 1rem; font-weight: 600; }
.calculator label { display: block; margin-bottom: .85rem; font-weight: 600; }
.calculator input[type="range"] { width: 100%; accent-color: var(--gold); }
.calc-results { display: grid; gap: .45rem; margin: 1rem 0; }
.calc-results div { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.check-corner { display: flex; align-items: center; gap: .5rem; }

.map-frame {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  min-height: 360px;
  margin-bottom: 1.4rem;
  background: #d8d2c6;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.location-intro {
  display: flex; align-items: center; gap: 1rem 1.4rem; flex-wrap: wrap;
  margin: 0 0 2rem;
}
.location-intro .section-lead { margin: 0; max-width: none; flex: 1 1 280px; }
.location-intro .btn { flex: 0 0 auto; white-space: nowrap; }
.location-gallery, .photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.location-shot { border: 0; padding: 0; border-radius: .9rem; overflow: hidden; cursor: pointer; box-shadow: var(--shadow); }
.location-shot img { width: 100%; height: 190px; object-fit: cover; display: block; transition: transform .35s; }
.location-shot:hover img { transform: scale(1.04); }
.photo-gallery .featured { grid-column: span 2; }
.photo-gallery .featured img { height: 320px; }

.pano-frame {
  position: relative;
  width: 100%;
  height: min(62vh, 560px);
  margin: 0 0 1.4rem;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #1a120c;
}
.pano-frame #pano360 { width: 100%; height: 100%; min-height: 280px; }
.pano-frame .pnlm-container { background: #1a120c; }
.pano-fallback {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pano-hint {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  margin: 0; color: #fff; font-weight: 700; font-size: .92rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
  pointer-events: none;
}

.amenities::after {
  background:
    radial-gradient(circle at 10% 82%, rgba(138, 24, 56, .11), transparent 32%),
    linear-gradient(200deg, rgba(255,248,236,.45), transparent 48%);
}
.gallery-section {
  background:
    radial-gradient(ellipse 60% 45% at 0% 18%, rgba(107, 16, 40, .08), transparent 50%),
    radial-gradient(ellipse 50% 40% at 100% 82%, rgba(185, 161, 127, .24), transparent 55%),
    linear-gradient(180deg, #f3eadc 0%, #f8f2e9 48%, #efe4d4 100%);
}
.gallery-section::after {
  background:
    radial-gradient(circle at 78% 10%, rgba(185, 161, 127, .34), transparent 26%),
    linear-gradient(90deg, transparent, rgba(107, 16, 40, .05), transparent);
}
.lots::after {
  background:
    radial-gradient(circle at 0% 38%, rgba(185, 161, 127, .24), transparent 34%),
    radial-gradient(circle at 100% 6%, rgba(107, 16, 40, .08), transparent 30%);
}
.pricing::after {
  background:
    radial-gradient(circle at 86% 72%, rgba(185, 161, 127, .36), transparent 36%),
    linear-gradient(180deg, rgba(63, 0, 20, .05), transparent 42%, rgba(185, 161, 127, .14));
}
.location::after {
  background:
    radial-gradient(circle at 18% 0%, rgba(14, 138, 138, .08), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(185, 161, 127, .26), transparent 40%),
    linear-gradient(160deg, rgba(255,255,255,.55), transparent 38%);
}
.funnel {
  background-color: #8ed85a;
  background-image:
    linear-gradient(180deg, rgba(4, 40, 18, .28) 0%, rgba(4, 40, 18, .08) 42%, rgba(4, 40, 18, .30) 100%),
    url("../img/whatsapp-fondo.webp");
  background-repeat: no-repeat, repeat;
  background-size: auto, 280px;
  color: #fff;
}
.funnel::after {
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(255,255,255,.16), transparent 55%);
}
.funnel .section-title,
.funnel .section-lead,
.funnel-neon-title {
  color: #fff;
  text-shadow:
    0 1px 0 #052816,
    1px 1px 0 #052816,
    -1px 1px 0 #052816,
    1px -1px 0 #052816,
    -1px -1px 0 #052816,
    0 4px 14px rgba(0, 0, 0, .55);
}
.funnel .section-title .accent { color: #fff4b8; }
.funnel-neon-title {
  margin: 0 0 .35rem; font-weight: 700; letter-spacing: .18em;
  font-size: .78rem;
}
.funnel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.75rem 2.25rem;
  align-items: center;
  margin-top: 1.5rem;
  max-width: 980px;
}
.funnel-box {
  background: #fff; color: var(--ink);
  border-radius: 1.15rem; padding: 1.4rem; width: 100%;
  max-width: 620px;
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
}
.funnel-wa-aside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
}
.funnel-wa-art {
  display: block;
  width: clamp(190px, 22vw, 310px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(20, 83, 45, .22));
  animation: funnelWaFloat 4.5s ease-in-out infinite;
}
@keyframes funnelWaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.funnel-steps { display: flex; gap: .45rem; margin-bottom: 1rem; }
.funnel-dot { width: .65rem; height: .65rem; border-radius: 50%; background: #ddd6c8; }
.funnel-dot.is-active { background: var(--teal); }
.funnel-panel { display: none; }
.funnel-panel.is-active { display: block; }
.funnel-panel h3 { margin: 0 0 1rem; font-family: var(--font-display); font-size: 1.6rem; }
.funnel-field { display: block; margin-bottom: .8rem; font-weight: 600; }
.funnel-field input {
  display: block; width: 100%; margin-top: .4rem; padding: .85rem 1rem;
  border: 1px solid rgba(42,36,28,.14); border-radius: .7rem; font: inherit; font-weight: 500;
}
.funnel-field input:focus { outline: none; border-color: var(--teal); }
.funnel-err { color: #b42318; font-weight: 600; }
.funnel-options { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.funnel-opt {
  border: 1px solid rgba(42,36,28,.12); background: var(--paper); border-radius: .75rem;
  padding: .85rem; font: inherit; font-weight: 600; cursor: pointer; text-align: left;
}
.funnel-opt:hover, .funnel-opt.is-selected { border-color: var(--teal); background: #f6eef1; }
.funnel-back { margin-top: .8rem; border: 0; background: none; font: inherit; font-weight: 600; cursor: pointer; color: var(--ink-soft); }
.funnel-preview { background: var(--paper); border-radius: .75rem; padding: .9rem; font-weight: 500; white-space: pre-wrap; }
.funnel-pick {
  display: flex; justify-content: space-between; gap: .8rem; margin-bottom: 1rem;
  padding: .8rem 1rem; border-radius: .75rem; background: #f6eef1; border: 1px solid rgba(107,16,40,.18);
}
.funnel-pick.hidden, .funnel-skip-note.hidden { display: none; }
.funnel-pick-text { display: flex; flex-direction: column; gap: .12rem; }
.funnel-pick-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); }
.funnel-pick-clear { border: 0; background: none; font-weight: 700; cursor: pointer; color: var(--clay); }
.funnel-pulse { animation: funnelPulse 1s ease; }
@keyframes funnelPulse {
  0% { box-shadow: 0 0 0 0 rgba(107,16,40,.35); }
  100% { box-shadow: 0 0 0 14px rgba(107,16,40,0); }
}

.wa-orb {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 45;
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 12px 26px rgba(37,211,102,.45);
  transition: transform .18s, box-shadow .18s;
}
.wa-orb:hover { transform: scale(1.08); box-shadow: 0 16px 30px rgba(37,211,102,.55); }

.site-footer {
  position: relative; z-index: 2;
  background:
    radial-gradient(ellipse 55% 70% at 0% 100%, rgba(185, 161, 127, .18), transparent 52%),
    linear-gradient(180deg, #241018 0%, #1a0a10 55%, #12060c 100%);
  color: #ece4d6; padding: 2.2rem 0 1.3rem;
}
.footer-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-logo { width: 96px; height: 96px; object-fit: contain; border-radius: 12px; background: #fff; }
.footer-copy { margin-left: auto; }
.footer-credit { opacity: .75; font-size: .9rem; }
.footer-credit a { color: var(--gold); }

.gallery-lightbox { border: 0; padding: 0; max-width: min(92vw, 1100px); background: transparent; }
.gallery-lightbox::backdrop { background: rgba(20, 18, 16, .86); }
.gallery-lightbox img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 10px; }
.gallery-close, .gallery-nav {
  position: absolute; border: 0; background: rgba(255,255,255,.14); color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.5rem; cursor: pointer;
}
.gallery-close { top: .4rem; right: .4rem; }
.gallery-prev { left: .4rem; top: 50%; }
.gallery-next { right: .4rem; top: 50%; }
.gallery-caption { color: #fff; text-align: center; font-weight: 600; }

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .section-title, .hero-content h1 { white-space: normal; }
  .hero-pills span { font-size: clamp(.92rem, 2vw, 1.15rem); }
}

@media (max-width: 980px) {
  :root { --header-h: 5.2rem; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .4rem 1.2rem 1.2rem; background: #fff; box-shadow: var(--shadow);
    max-height: calc(100svh - var(--header-h)); overflow: auto;
  }
  .nav.open { display: flex; }
  .nav a {
    color: #8d7349; padding: .85rem 0; font-size: 1.05rem;
    border-bottom: 1px solid rgba(185,161,127,.22);
    text-shadow: none;
  }
  .nav .nav-cta { text-align: center; margin-top: .55rem; border-bottom: 0; color: #3f0014 !important; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { background: rgba(247, 244, 238, .96); }
  body.nav-open .brand { color: #8d7349; }
  body.nav-open .brand-text { color: #8d7349; text-shadow: none; }
  body.nav-open .nav-toggle span { background: #8d7349; }
  .brand-logo { width: 72px; height: 72px; }
  .brand-text { font-size: 1.15rem; }
  .hero-actions { flex-direction: column; align-items: stretch; padding: 1.2rem 1rem 0; }
  .hero-actions .btn { flex: none; width: 100%; }
}

@media (max-width: 900px) {
  .container { width: min(1100px, calc(100% - 1.4rem)); }
  .section { padding: clamp(3rem, 8vw, 4.5rem) 0; }
  .section-wash { height: clamp(120px, 28vw, 220px); }
  .service-grid, .stat-row, .trust-grid { grid-template-columns: 1fr 1fr; }
  .lot-workspace, .pricing-grid { grid-template-columns: minmax(0, 1fr); }
  .lot-workspace { width: 100%; }
  .plan-frame { height: min(62vh, 560px); }
  .lot-panel { position: relative; top: auto; max-height: none; }
  .location-gallery, .photo-gallery { grid-template-columns: 1fr 1fr; }
  .photo-gallery .featured { grid-column: span 2; }
  .location-shot img { height: 170px; }
  .photo-gallery .featured img { height: 220px; }
  .pano-frame { height: min(52vh, 420px); }
  .zoom-btn { width: 56px; height: 56px; font-size: 2rem; }
  .zoom-controls { left: .6rem; bottom: .6rem; }
  .plan-toolbar { align-items: stretch; }
  .mz-search, .mz-search select { width: 100%; max-width: 100%; }
  .funnel-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .funnel-wa-aside { display: none; }
  .funnel-box { padding: 1.15rem; }
  .footer-copy { margin-left: 0; }
}

@media (max-width: 760px) {
  .section-title, .hero-content h1 { font-size: clamp(1.2rem, 6.4vw, 1.9rem); line-height: 1.15; }
  .hero-kicker { letter-spacing: .14em; gap: .45rem .55rem; }
  .section-lead, .hero-tagline { font-size: .98rem; }
  .hero-pills { gap: .45rem; }
  .hero-pills span { padding: .5rem .8rem; font-size: .88rem; }
  .trust-grid strong { font-size: 1.55rem; }
  .stat strong { font-size: 1.45rem; }
  .plan-frame { height: min(58vh, 480px); }
  .location-gallery, .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery .featured { grid-column: auto; }
  .photo-gallery .featured img { height: 210px; }
  .pano-frame { height: min(46vh, 340px); }
  .price-row, .calc-results div, .ticket-break div { flex-wrap: wrap; }
  .chip, .btn-sm { min-height: 44px; }
  .gallery-prev, .gallery-next { top: auto; bottom: 3.4rem; }
}

@media (max-width: 480px) {
  :root { --header-h: 4.6rem; }
  .container { width: calc(100% - 1.1rem); }
  .brand-logo { width: 58px; height: 58px; }
  .brand-text { font-size: 1.05rem; }
  .service-grid, .funnel-options { grid-template-columns: 1fr; }
  .stat-row { gap: .5rem; }
  .stat { padding: .7rem .45rem; }
  .stat span { letter-spacing: 0; font-size: .68rem; }
  .ticker-track { font-size: 1.05rem; gap: 1.6rem; padding: .85rem 0; }
  .plan-frame { height: min(52vh, 420px); }
  .zoom-btn { width: 48px; height: 48px; font-size: 1.7rem; }
  .wa-orb { width: 56px; height: 56px; }
  .funnel-panel h3 { font-size: 1.3rem; }
  .calculator { padding: 1.15rem; }
  .calculator h3 { font-size: 1.4rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-logo { width: 80px; height: 80px; }
  .location-intro .btn { width: 100%; white-space: normal; text-align: center; }
  .price-table, .calculator, .funnel-box { max-width: 100%; }
}

@media (max-height: 700px) {
  .hero-stage { min-height: auto; padding-bottom: 1rem; }
  .hero-pills { margin-bottom: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .boot { display: none; }
}
