@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,500;1,500&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
  /* === BRAND PALETTE (restricted: navy + orange + neutrals) === */
  --brand-deep:        #062e44;
  --brand-primary:     #064060;
  --brand-mid:         #0d5c8a;
  --brand-accent:      #f6802c;
  --brand-accent-dark: #aa3706;
  --brand-accent-soft: #fdebd9;

  /* === NEUTRALS === */
  --neutral-0:   #ffffff;
  --neutral-50:  #fafbfc;
  --neutral-100: #f2f5f7;
  --neutral-200: #e5ebef;
  --neutral-300: #c8d1d8;
  --neutral-500: #6b7785;
  --neutral-700: #2d3540;
  --neutral-900: #0f1620;

  /* === LEGACY ALIASES === */
  --color-1:           var(--brand-primary);
  --color-one-dark:    var(--brand-deep);
  --color-one-light:   var(--neutral-50);
  --color-two:         var(--brand-accent);
  --color-two-light:   var(--brand-accent-soft);
  --color-two-dark:    var(--brand-accent-dark);
  --dodger-blue:       var(--brand-mid);
  --disponible:        var(--brand-accent);
  --white:             var(--neutral-0);
  --body-font:         var(--neutral-700);
  --body-font-light:   var(--neutral-500);
  --body-font-dark:    var(--neutral-900);

  /* === FLUID TYPOGRAPHY (clamp scale) — softened scale, less brutalist === */
  --fs-h1:        clamp(2rem, 2.2vw + 0.9rem, 4.25rem);
  --fs-h2:        clamp(1.5rem, 1.4vw + 0.7rem, 2.5rem);
  --fs-h3:        clamp(1.25rem, 0.8vw + 0.7rem, 1.75rem);
  --fs-h4:        clamp(1rem, 0.4vw + 0.85rem, 1.25rem);
  --fs-body-lg:   clamp(1rem, 0.3vw + 0.9rem, 1.15rem);
  --fs-body:      clamp(0.92rem, 0.18vw + 0.85rem, 1rem);
  --fs-eyebrow:   clamp(0.7rem, 0.15vw + 0.65rem, 0.78rem);

  /* === FLUID SPACING TOKENS === */
  --space-section-xl: clamp(5rem, 8vw, 10rem);
  --space-section-lg: clamp(3.5rem, 6vw, 7rem);
  --space-element-md: clamp(1.75rem, 3vw, 3.5rem);
  --space-element-sm: clamp(1rem, 1.5vw, 1.75rem);

  /* === LAYOUT TOKENS === */
  --container-xl: 96rem;   /* 1536px — premium width for content */
  --container-lg: 80rem;   /* 1280px — comfortable reading */
  --container-md: 64rem;   /* 1024px — focal content */
  --page-gutter:  clamp(1.25rem, 2.5vw, 3rem);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: var(--brand-primary); }

.sm-body {
  color: var(--neutral-700);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-one-dark);
}
html, body { background-color: var(--color-one-dark); }

/* === TIPOGRAFÍA DE MARCA (Montserrat) === */

.sm-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}

.sm-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.sm-h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
}

.sm-h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.012em;
  margin: 0;
}

.sm-p { margin-bottom: 0; line-height: 1.7; }

.icon-font {
  font-family: 'Material Icons';
  font-size: 1.125em;
  line-height: 1;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* ========== PAGE WRAPPER ========== */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-wrapper { flex: 1; }

/* ========== PAGE PADDING ========== */
.page-padding { padding-left: var(--page-gutter); padding-right: var(--page-gutter); position: relative; z-index: 5; }
.container-large { width: 100%; max-width: var(--container-xl); margin-left: auto; margin-right: auto; }
.container-medium { width: 100%; max-width: var(--container-md); margin-left: auto; margin-right: auto; }
.container-small { width: 100%; max-width: 48rem; margin-left: auto; margin-right: auto; }

/* ========== NAVBAR ========== */
.main-nav-component {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.primary-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
}
.brand { width: 11rem; display: block; flex: none; }
.brand img { width: 100%; }
.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.btn-nav {
  height: 2.6rem;
  color: var(--color-1);
  background: transparent;
  border: none;
  padding: 0.6rem 0.45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  transition: color 0.16s ease;
}
.btn-nav .btn-nav-label {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.btn-nav .btn-nav-label::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  border-radius: 0.5px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
}
.btn-nav:hover .btn-nav-label::after,
.btn-nav.active .btn-nav-label::after {
  transform: scaleX(1);
  transition-delay: 90ms;   /* color hits first, then the underline draws */
}
.btn-nav:hover { color: var(--brand-accent, #f6802c); }
.btn-nav.active { color: var(--brand-accent, #f6802c); font-weight: 600; }
.nav-cta { flex: none; }

/* ========== MOBILE BURGER ========== */
.brgr-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.brgr-pleca {
  background-color: var(--color-1);
  height: 2px;
  width: 22px;
  border-radius: 2px;
  transition: background-color 0.28s ease;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(35,38,50,0.8);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: flex-end;
}
.mobile-nav-panel {
  background-color: var(--color-1);
  width: 80%;
  max-width: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 1.8rem;
}
.mobile-close-btn {
  border: 1px solid var(--white);
  width: 2.75rem;
  height: 2.75rem;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  background: none;
  cursor: pointer;
}
.mobile-nav-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem;
}
.btn-modal-nav {
  color: var(--white);
  background: transparent;
  border: none;
  padding: 0.5rem 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  text-decoration: none;
  display: block;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.btn-modal-nav.cta {
  background-color: var(--color-two);
  border: 2px solid var(--color-two);
  color: #fff;
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: filter 0.2s ease-in-out;
}
.btn-modal-nav.cta:hover { filter: brightness(85%); }
.mobile-nav-footer {
  color: #4185ab;
  text-align: center;
  height: 40px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== BUTTONS ========== */
.btn {
  border: 2px solid var(--color-1);
  background-color: var(--color-1);
  color: var(--color-one-light);
  text-align: center;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: filter 0.2s ease-in-out;
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}
.btn:hover { filter: brightness(80%); }
.btn.big { padding: 1.25rem 2rem; font-size: 1.2rem; }
.btn.small { font-size: 0.8rem; }
.btn.white { background-color: var(--white); color: var(--color-1); border: none; }
.btn.whatsapp {
  color: #075e54;
  background-color: #25d366;
  border-color: #25d366;
}
.btn.go-back { border-color: var(--white); }

.btn.cta-special {
  color: var(--color-1);
  background-color: transparent;
  overflow: hidden;
}
.btn.cta-special:hover { filter: none; color: var(--white); }
.btn.cta-special:hover .btn-cta-bg { transform: translateY(0); }
.btn.cta-special.white-variant {
  border-color: var(--white);
  color: var(--white);
}
.btn.cta-special.white-variant:hover { color: var(--color-1); }
.btn.cta-special.white-variant:hover .btn-cta-bg { background: #fff; }
.btn.cta-special.contrast-variant {
  background-color: var(--color-two);
  color: var(--white);
  border-color: var(--color-two);
}
.btn.cta-special.contrast-variant:hover { border-color: var(--color-1); color: var(--white); }
.btn.cta-special.contrast-variant:hover .btn-cta-bg { background-color: var(--color-1); }

.btn-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-1);
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.icon-btn-container {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1;
  position: relative;
}
.icon-btn-text { display: flex; align-items: center; }
.icon-btn-icon { display: flex; align-items: center; justify-content: center; width: 1.25rem; font-size: 1.125rem; }
.icon-btn-icon .icon-font {
  display: inline-flex;
  transition: transform 0.26s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}
.btn.cta-special:hover .icon-btn-icon .icon-font {
  transform: translateY(2px);
  transition-delay: 70ms;   /* bg slides up first, then arrow nudges down */
}

/* ========== ICON BUTTON (social) ========== */
.icon-social-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-decoration: none;
  border: none;
  background: transparent;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.icon-social-btn:hover { opacity: 1; transform: translateY(-2px); }
.icon-social-btn img { filter: invert(1); width: 1.4rem; height: 1.4rem; object-fit: contain; }
.icon-social-btn.youtube { width: 3rem; height: 3rem; }
.icon-social-btn.youtube img { filter: none; width: 2.6rem; height: 2.6rem; }

/* ========== HERO ========== */
.hero {
  color: var(--color-1);
  position: relative;
  overflow: visible;
  min-height: 80vh;
}
.hero-video-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80vh;
  z-index: 0;
  overflow: hidden;
  clip-path: inset(0); /* contiene el video aunque hero ya no recorte */
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80vh;
  z-index: 2;
  background-image:
    linear-gradient(180deg, rgba(6,32,48,0.55) 0%, rgba(6,32,48,0.35) 35%, rgba(6,32,48,0.55) 75%, rgba(6,32,48,0.85) 100%),
    radial-gradient(ellipse at 50% 38%, rgba(6,32,48,0.25), transparent 60%);
  pointer-events: none;
}
.hero-content-wrap {
  position: relative;
  z-index: 10;
  padding-top: 11rem;
  padding-bottom: 5rem;
}
.hero-content { display: block; }
.h1-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
}
.hero-to-project {
  display: none;
}

/* ========== HORIZONTAL SCROLL GALLERIES ========== */
.horizontal-scroll-galleries {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  transform: translateY(50%);  /* flota sobre la división hero / proyecto */
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  overflow: hidden;  /* clip horizontal del cintillo, no del hero */
  pointer-events: none;
}
.hsg-strip {
  display: flex;
  gap: 0.7rem;
  height: 9.5rem;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}
.hsg-two { width: max-content; }
.hsg-one { width: max-content; }
.hsg-frame {
  flex: none;
  width: 15rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.hsg-two { animation: scrollHsgTwo 30s linear infinite; }
.hsg-one { animation: scrollHsgOne 35s linear infinite; }
@keyframes scrollHsgTwo {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollHsgOne {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ========== ELEMENT CONTENT ========== */
.element-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.element-content.align-center { text-align: center; align-items: center; }
.text-content { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
.text-label { opacity: 0.5; text-transform: uppercase; font-size: 0.9rem; font-weight: 600; }
/* — Etiqueta de sección (ej. "CASAS NUEVAS EN PACHUCA") — */
.text-label {
  opacity: 0.55;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  font-family: 'Montserrat', sans-serif;
}

/* — Eyebrow del hero — */
.h1-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.75rem;
}

/* Utilidades de texto */
.text-size-medium { font-size: var(--fs-body-lg); line-height: 1.65; }
.text-size-large  { font-size: 1.45rem; line-height: 1.6; }
.text-size-small  { font-size: 0.875rem; line-height: 1.65; }
.font-color-1 { color: var(--color-1); }

/* Mejora: botones con micro-tracking */
.btn { letter-spacing: 0.02em; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.btn-nav { letter-spacing: 0.02em; }

/* ========== GRID LAYOUTS ========== */
._2-grid-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  row-gap: 4rem;
  align-items: start;
}
._2-grid-col.v-align-center { align-items: center; }
._2-grid-col.stretch { align-items: stretch; }
._3-grid-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3rem;
  row-gap: 3rem;
  align-items: start;
}
._3-grid-col.no-gap { gap: 0; }
._3-grid-col.small-gap { gap: 1.5rem; }

/* ========== PADDING UTILITIES ========== */
.padding-vertical { padding-left: 0; padding-right: 0; }
.padding-large { padding-top: 8rem; padding-bottom: 8rem; }
.padding-medium { padding-top: 6rem; padding-bottom: 6rem; }
.padding-clear-top { padding-top: 0 !important; }
.padding-relative-fix { padding-bottom: 8rem; position: relative; }
.padding-proyecto { padding-top: 12rem; padding-bottom: 6rem; }
.padding-bottom-large { padding-bottom: 8rem; }

/* ========== PROYECTO SECTION ========== */
.proyecto {
  background-color: var(--color-1);
  background-image: linear-gradient(to bottom, var(--color-1), transparent), url('/images/bg-3.webp');
  color: var(--white);
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  position: relative;
  overflow: hidden;
}
.v-align-c-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.overflow-image-frame {
  background-image: linear-gradient(120deg, var(--color-1) 3%, rgba(6,64,96,0.8) 21%, transparent 55%), url('/images/real/sm-conjunto-04-lg.webp');
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100vw;
  height: 36rem;
  margin-right: -100vw;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: none;
          mask-image: none;
}
.overflow-image-frame.side-b {
  background-image: linear-gradient(-120deg, var(--color-1) 3%, rgba(6,64,96,0.8) 21%, transparent 55%), url('/images/real/sm-pergola-terraza-01-lg.webp');
  background-position: 0 0, 35% center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 200%;
  margin-left: -100%;
  margin-right: 0;
}

/* Global anchor offset for fixed navbar */
#proyecto,
#modelos,
#disponibilidad,
#amenidades,
#ubicacion,
#recorrido-virtual,
#calculadora,
#atardeceres,
#hecho-a-mano,
#gallery,
#galeria,
#testimonios,
#plantas,
#recorrido-vr {
  scroll-margin-top: 90px;
}

/* ========== MODELOS SECTION ========== */
.modelos {
  margin-top: 0;
  position: relative;
  z-index: 5;
  scroll-margin-top: 90px;
  background-color: var(--color-1);
  background-image: linear-gradient(to bottom, transparent, transparent), url('/images/bg-3.webp');
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  color: var(--white);
}
.modelos-head {
  position: relative;
  margin: 0;
  padding: 3rem 0 2rem;
  background: transparent;
  display: flex;
  justify-content: flex-start;
}
.modelos-head-text {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
  color: #fff;
  padding-right: 0;
}
.modelos-head-text .text-label {
  margin-bottom: 0.25rem;
}
.modelos-head-text .sm-h2 {
  margin: 0;
  color: #fff;
}
.modelos-head-text .sm-h2 .serif-accent {
  color: var(--brand-accent);
}
.modelos-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(247, 252, 255, 0.85);
  margin: 0.5rem 0 0;
}
.modelos-intro strong {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 991px) {
  .modelos-head { padding-top: 4rem; padding-bottom: 2rem; justify-content: flex-start; }
  .modelos-head-text { text-align: left; }
}
@media (max-width: 768px) {
  .modelos { margin-top: 0; }
  .modelos-head { padding-top: 3rem; margin-bottom: 1rem; }
  .modelos-intro { font-size: 0.92rem; }
}
.modelo-card-link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(6, 30, 50, 0.32),
              0 6px 16px rgba(6, 30, 50, 0.18);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.modelo-card-link:hover {
  box-shadow: 0 30px 72px rgba(6, 30, 50, 0.45),
              0 10px 22px rgba(246, 128, 44, 0.18);
  transform: translateY(-3px);
}
.modelo-card-link img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
.modelo-card-link:hover img {
  transform: scale(1.05);
}
/* Mismo overlay que el hero de las páginas interiores de modelo */
.modelo-card-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,30,50,0.30) 0%, rgba(6,30,50,0.50) 55%, rgba(6,30,50,0.92) 100%),
    radial-gradient(ellipse at left bottom, rgba(246,128,44,0.22), transparent 55%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modelo-card-link:hover::before { opacity: 0.7; }
.modelo-card-link_leyend {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-1);
  text-align: center;
  background-image: linear-gradient(158deg, rgba(255,255,255,0.92), #fff);
  padding: 2rem 2.5rem;
  pointer-events: none;
  z-index: 4;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(6, 30, 50, 0.18);
  transition: box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modelo-card-link:hover .modelo-card-link_leyend {
  box-shadow:
    0 0 0 1px rgba(246, 128, 44, 0.45),
    0 0 28px rgba(246, 128, 44, 0.55),
    0 0 60px rgba(246, 128, 44, 0.35),
    0 16px 40px rgba(6, 30, 50, 0.28);
}
.modelo-card-link_leyend div { font-size: 0.8rem; opacity: 0.6; text-transform: uppercase; font-weight: 600; }
.modelo-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  justify-content: center;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: var(--color-1);
  opacity: 0.85;
  text-transform: none;
  font-weight: 500;
}
.modelo-card-specs span { display: inline-flex; align-items: center; gap: 0.3rem; }
.modelo-card-specs .icon-font { font-size: 1rem; opacity: 0.7; }
.modelo-card-specs .modelo-card-precio {
  background: var(--color-two, #f6802c);
  color: #fff;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
  opacity: 1;
  letter-spacing: 0.02em;
}
.modelo-b { margin-top: 4rem; }
.cursor-hover-badge { display: none; }

/* Hover arrow indicator removed — selection is communicated by glow on the white label */
.modelo-card-link::after,
.modelo-card-link:hover::after {
  content: none;
  display: none;
}

/* ========== GALLERY SLIDER SECTION ========== */
.slider-gallery-section {
  background-image: linear-gradient(to top, #fff 30%, rgba(255,255,255,0.9) 71%, white 85%), url('/images/mar-front-3-p-800.webp');
  background-position: 0 0, center top;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
  position: relative;
  overflow: hidden;
}
.itle-cta-hldr { display: flex; justify-content: flex-end; align-items: flex-start; }
.slider-container { position: relative; }
.slider-track {
  display: flex;
  overflow: hidden;
}
.slider-slide {
  min-width: 100%;
  padding: 0 2rem;
}
.slider-image-hldr {
  height: 37.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-1);
  color: #fff;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: none;
  font-size: 1.5rem;
  transition: background-color 0.2s ease;
}
.slider-arrow:hover { background-color: var(--color-two); }
.slider-arrow.left { left: 1rem; }
.slider-arrow.right { right: 1rem; }
.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--body-font-light); border: none; cursor: pointer; padding: 0; }
.slider-dot.active { background: var(--color-1); }

/* ========== AMENIDADES SECTION ========== */
.amenidades {
  background-color: var(--color-1);
  color: var(--white);
  position: relative;
}
.pleca-corte {
  background-color: var(--color-1);
  height: 2rem;
  margin-top: -2rem;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.pleca-corte.white { background-color: #fff; }
.amenidad-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  position: relative;
  cursor: pointer;
}
.amenidad-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid var(--white);
  margin: -1px;
  z-index: 1;
}
.amenidad-card-hover-bg {
  position: absolute;
  inset: -0.5rem;
  background-color: var(--color-two);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.2s ease;
}
.amenidad-card:hover .amenidad-card-hover-bg { opacity: 1; }
.amenidad-card .flex-inner { z-index: 2; display: flex; align-items: center; gap: 1rem; }
.amenidad-icon { width: 5rem; max-width: none; flex: none; }
.amenidades-quote {
  text-align: center;
  padding-top: 6rem;
}

/* ========== SUSTENTABLE SECTION ========== */
.sustentable {
  color: var(--color-1);
  background-image: linear-gradient(to top, rgba(245,245,245,0.9), #fff), url('/images/gs-5.jpg');
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: relative;
}
.titular-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-left: 15%;
  padding-right: 15%;
}
.titular-element.fw { padding-left: 0; padding-right: 0; }
.amenity-card {
  border: 1px solid var(--color-1);
  background-color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.bullet-icon-card { display: flex; align-items: center; gap: 1.25rem; }
.bullet-icon-clear-big { background: transparent; border-radius: 0; width: 3rem; height: auto; }
.bullet-icon-text { font-size: 0.95rem; }

/* ========== MASTER PLAN SECTION ========== */
.master-plan {
  background-image: radial-gradient(circle closest-side, rgba(255,255,255,0.86), #fff), url('/images/master-pna-grid.svg');
  background-position: 0 0, 0 0;
  background-size: auto, 40px;
  background-attachment: scroll, fixed;
}
.master-plan img { margin-top: 2rem; }

/* ========== CROQUIS SECTION ========== */
.croquis {
  background-color: var(--color-one-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.croquis-map { width: 150%; height: auto; }

/* ========== CTA SECTION ========== */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.cta-col-1 {
  background-color: var(--color-1);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 10vw;
}
.cta-col-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 3rem;
  background-color: #fff;
}
.form-embed { width: 100%; }
.form-embed iframe { width: 100%; min-height: 480px; border: none; border-radius: 3px; }

/* ========== CREDITOS SECTION ========== */
.creditos {
  background-color: var(--color-two);
  color: var(--white);
}

/* ========== FOOTER ========== */
.footer-component {
  background-color: var(--color-one-dark);
  background-image: linear-gradient(135deg, rgba(6,46,68,0.96), var(--color-one-dark)), url('/images/proyecto-santa-monica-residencial.webp');
  color: var(--white);
  background-position: 0 0, center;
  background-size: auto, cover;
  margin-top: auto;
  padding-top: 5rem;
}

/* ===== RICH CTA BLOCK ===== */
.footer-cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 3rem;
  align-items: center;
}
.footer-cta-left h2 {
  color: #fff;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}
.footer-cta-left p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem !important;
}
.footer-cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}
.footer-cta-btn .icon-font { font-size: 1.05rem; }
.footer-cta-btn img { width: 1.05rem; height: 1.05rem; }
.footer-cta-call {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
}
.footer-cta-call:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.footer-cta-whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  box-shadow: 0 6px 18px rgba(37,211,102,0.22);
}
.footer-cta-whatsapp:hover {
  background: #1eb858;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37,211,102,0.32);
}
.footer-cta-trust {
  display: flex;
  gap: 2.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.footer-cta-trust > div { display: flex; flex-direction: column; gap: 0.1rem; }
.footer-cta-trust strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-two, #f6802c);
  letter-spacing: -0.01em;
}
.footer-cta-trust span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* ===== FOOTER FORM ===== */
.footer-cta-right {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.footer-form {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.20);
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--color-1, #0a2236);
}
.footer-form-head { margin-bottom: 0.35rem; }
.footer-form-kicker {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-two, #f6802c);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.footer-form-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-1, #0a2236);
  letter-spacing: -0.01em;
  margin: 0 0 0.2rem;
}
.footer-form-head p {
  margin: 0;
  font-size: 0.78rem;
  color: #5a6877;
}
.footer-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-form-field > span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #3c4a5a;
  letter-spacing: 0.01em;
}
.footer-form-field input {
  border: 1px solid #d2d8df;
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  outline: none;
  color: #0a2236;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.footer-form-field input::placeholder { color: #9aa4ad; }
.footer-form-field input:focus {
  border-color: var(--color-two, #f6802c);
  box-shadow: 0 0 0 3px rgba(246,128,44,0.12);
}
.footer-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #5a6877;
  line-height: 1.4;
  margin-top: 0.15rem;
}
.footer-form-check input { margin-top: 0.15rem; flex-shrink: 0; }
.footer-form-check a { color: var(--color-two, #f6802c); text-decoration: underline; }
.footer-form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  font-size: 0.75rem;
}
.footer-form-submit {
  margin-top: 0.45rem;
  background: var(--color-two, #f6802c);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(246,128,44,0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.footer-form-submit:hover {
  transform: translateY(-2px);
  background: #e5731e;
  box-shadow: 0 12px 30px rgba(246,128,44,0.38);
}
.footer-form-submit:disabled { opacity: 0.6; cursor: wait; }
.footer-form-submit .icon-font { font-size: 1rem; }

.footer-form-success {
  background: #fff;
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-1);
}
.footer-form-success-icon .icon-font {
  font-size: 2.5rem;
  color: #2e9d4f;
}
.footer-form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}
.footer-form-success p {
  color: #5a6877;
  max-width: 300px;
  margin: 0;
  font-size: 0.85rem;
}
.footer-form-reset {
  margin-top: 0.5rem;
  background: transparent;
  border: 1px solid var(--color-two, #f6802c);
  color: var(--color-two, #f6802c);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease;
}
.footer-form-reset:hover {
  background: var(--color-two, #f6802c);
  color: #fff;
}

/* ===== FOOTER MID ===== */
.footer-mid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-mid-brand .footer-brand { display: block; width: 9rem; margin-bottom: 1.25rem; }
.footer-mid-brand .footer-brand img { width: 100%; }
.footer-mid-tagline { color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; max-width: 280px; line-height: 1.55; }
.footer-mid-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-mid-col .footer-nav-title { margin-bottom: 0.85rem; font-size: 1rem; }
.footer-mid-col .quru-logo { height: 2rem; opacity: 0.85; align-self: flex-start; margin-bottom: 0.5rem; }
.footer-link-soft {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  line-height: 1.5;
  display: block;
}

/* Make nav links a bit more readable */
.footer-mid .footer-link {
  opacity: 0.78;
  font-size: 0.82rem;
}
.footer-mid .footer-link:hover { color: var(--color-two, #f6802c); opacity: 1; }

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 1.75rem 0 1.25rem;
  flex-wrap: wrap;
}
.footer-legal-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.footer-legal-text a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}
.footer-legal-text a:hover { color: var(--color-two, #f6802c); }

.footer-powered-by {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer-powered-by:hover { color: rgba(255,255,255,0.75); }
.footer-powered-label {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: none;
  font-weight: 400;
}
.footer-powered-logo {
  height: 0.95rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.footer-powered-by:hover .footer-powered-logo { opacity: 0.85; }

/* Backward compatibility: legacy classes still used elsewhere */
.footer-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.footer-brand { width: 8rem; }
.footer-brand img { width: 100%; }
.quru-logo { height: 2.5rem; opacity: 0.7; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
  gap: 3rem;
}
.footer-nav-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer-link {
  color: var(--white);
  opacity: 0.5;
  font-size: 0.75rem;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: opacity 0.2s ease;
}
.footer-link:hover { opacity: 1; }
.flex-social { display: flex; gap: 1.5rem; align-items: center; margin-top: 1rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-cta-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-mid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .footer-component { padding-top: 3rem; }
  .footer-mid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-form { padding: 1.5rem 1.25rem 1.25rem; }
  .footer-cta-trust { gap: 1.25rem; }
}

/* ========== MODELO HERO ========== */
.hero-modelo {
  position: relative;
  overflow: hidden;
}
.hero-modelo.hero-fernanda {
  background-image: linear-gradient(to top, #fff 45%, rgba(255,255,255,0.8)), url('/images/real/sm-fer-day-01-lg.webp');
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}
.hero-modelo.hero-mariana {
  background-image: linear-gradient(to top, #fff 45%, rgba(255,255,255,0.8)), url('/images/real/sm-mar-day-01-lg.webp');
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}
.hero-modelo-image {
  background-color: var(--color-1);
  width: 100%;
  min-height: 600px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.hero-modelo-image.fernanda {
  background-image: url('/images/real/sm-fer-twilight-01-lg.webp');
  background-size: cover;
  background-position: center;
}
.hero-modelo-image.mariana {
  background-image: url('/images/real/sm-mar-twilight-01-lg.webp');
  background-size: cover;
  background-position: center;
}
.h1-seo { font-size: 1rem; font-weight: 500; }

/* ========== ESPECIFICACIONES ========== */
.especificaciones { position: relative; }
.out-frame-image {
  position: absolute;
  top: 0; left: 0;
  width: 30rem;
  min-height: 22rem;
  margin-top: -9rem;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.out-frame-image.fernanda {
  background-image: url('/images/real/sm-fer-cocina-01-lg.webp');
  background-size: cover;
  background-position: center;
}
.out-frame-image.mariana {
  background-image: url('/images/real/sm-mar-roof-01-lg.webp');
  background-size: cover;
  background-position: center;
}
.especificaciones-modelo {
  background-color: var(--color-1);
  color: var(--white);
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  padding: 20rem 4rem 4rem;
}
.rt-list ul { padding-left: 0; list-style: none; }
.rt-list li {
  background-image: url('/images/bullet.svg');
  background-position: 0 10px;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 28px;
  margin-bottom: 0.5rem;
}
.rt-list h4 { color: var(--color-1); margin-bottom: 1rem; font-size: 1.25rem; font-weight: 700; }
.especificaciones-modelo .rt-list h4 { color: var(--dodger-blue); }

/* ========== LINK MODELO B ========== */
.link-modelo-b { display: grid; grid-template-columns: 1fr 1fr; }
.link-model-image { min-height: 20rem; background-size: cover; background-position: center; }
.link-model-image.cta-mariana { background-image: url('/images/real/sm-mar-twilight-01-lg.webp'); }
.link-model-image.cta-fernanda { background-image: url('/images/real/sm-fer-twilight-01-lg.webp'); }
.link-model-brief { background-color: #15638e; padding: 4rem; color: var(--white); display: flex; align-items: center; }

/* ========== PLANTAS SECTION ========== */
.plantas { position: relative; }
.plantas-block { background-color: var(--white); padding-bottom: 4rem; }
.planta-frame { border: 1px solid var(--body-font-light); position: relative; overflow: hidden; }
.planta-frame.side-a { border-right: none; }
.planta-frame.side-b { border-left: none; }
.planta-brief { padding-top: 2rem; padding-left: 3rem; font-size: 0.8rem; position: relative; margin-top: -1px; }
.planta-brief-pleca { background-color: var(--body-font-light); width: 1px; height: 6rem; position: absolute; top: 0; right: 0; }
.hover-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42,42,42,0.3);
  backdrop-filter: blur(5px);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: opacity 0.2s ease;
  color: #fff;
  font-size: 1.6rem;
}
.planta-frame:hover .hover-overlay { opacity: 1; }

/* ========== RECORRIDO VR ========== */
.recorrido-vr { background-color: #f9f9f9; }
.recorrido-card {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 60px;
}
.rv-frame { width: 70%; min-height: 400px; }
.rv-frame iframe { width: 100%; height: 100%; border: none; }
.rv-info {
  flex: 1;
  border: 1px solid #ededed;
  padding: 30px 40px;
  color: #123045;
  font-family: 'Montserrat', sans-serif;
}
.instruc-tt { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.text-icon-blk { font-size: 0.9rem; margin-bottom: 0.75rem; padding-left: 25px; position: relative; }

/* ========== MODELO GALLERY GRID ========== */
.modelo-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 450px;
  grid-auto-rows: 450px;
}
.gallery-cell {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-cell-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.gallery-cell:hover .gallery-cell-bg { transform: scale(1.04); }
.gallery-cell-hover {
  position: absolute;
  inset: 0;
  background: rgba(42,42,42,0.3);
  backdrop-filter: blur(5px);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.gallery-cell:hover .gallery-cell-hover { opacity: 1; }

/* ========== LIGHTBOX MODAL ========== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 30, 48, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-modal img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: none;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ========== VIDEO MODAL ========== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 30, 48, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-modal-inner { position: relative; width: 90vw; max-width: 940px; }
.video-modal-inner iframe { width: 100%; height: 528px; border: none; }
.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/* ========== FLEX UTILITIES ========== */
.flex-el { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.flex-el.small-gap { gap: 0.5rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .brgr-btn { display: flex !important; }
}
@media (max-width: 991px) {
  ._2-grid-col { grid-template-columns: 1fr; gap: 2rem; }
  ._3-grid-col { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .overflow-image-frame { width: 100%; margin-right: 0; height: 25rem; }
  .overflow-image-frame.side-b { width: 100%; margin-left: 0; }
  .cta-section { grid-template-columns: 1fr; }
  .link-modelo-b { grid-template-columns: 1fr; }
  .modelo-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px; grid-auto-rows: 300px; }
  .rv-frame { width: 100%; }
  .rv-info { width: 100%; }
  .hero-modelo-image { width: 100%; min-height: 300px; }
  .out-frame-image { display: none; }
  .especificaciones-modelo { padding-top: 4rem; width: 100%; }
  .hsg-frame { width: 12rem; }
  .croquis-map { width: 100%; }
}
@media (max-width: 767px) {
  ._3-grid-col { grid-template-columns: 1fr; }
  .slider-image-hldr { height: 20rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modelo-gallery-grid { grid-template-columns: 1fr; grid-template-rows: 300px; }
  .padding-large { padding-top: 4rem; padding-bottom: 4rem; }
  .padding-medium { padding-top: 3rem; padding-bottom: 3rem; }
  .titular-element { padding-left: 0; padding-right: 0; }
  .hero-content-wrap { padding-top: 8rem; }
}

/* ========== GLOBAL UI: PROMO BAR ========== */
.fixed-promo-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background-color: var(--color-two);
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-shadow: 20px 0 40px -10px rgba(0,0,0,0.5), -20px 0 40px -10px rgba(0,0,0,0.5);
}
.promo-bar-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.promo-bar-text {
  color: #fff;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  padding: 0.5rem 1.25rem;
}
.promo-bar-link {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0 1.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease;
}
.promo-bar-link:hover { background-color: rgba(0,0,0,0.15); }

/* Add bottom padding to account for the promo bar */
.page-wrapper { padding-bottom: 3rem; }

/* ========== GLOBAL UI: FLOATING CONTACT ========== */
.floating-contact {
  position: fixed;
  bottom: 4.5rem;
  right: 1.5rem;
  z-index: 499;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.float-main-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--color-two);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(246,128,44,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-contact:hover .float-main-btn,
.floating-contact.open .float-main-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(246,128,44,0.6);
}
.float-icon-main {
  transition: transform 0.3s ease;
}
.float-icon-main.rotated { transform: rotate(90deg); }

.float-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.floating-contact.open .float-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.float-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
  transition: filter 0.15s ease;
}
.float-option:hover { filter: brightness(90%); }
.whatsapp-opt { background-color: #25d366; }
.call-opt     { background-color: var(--color-1); }
.calendar-opt { background-color: var(--color-one-dark); }

/* ========== HERO VIDEO CONTROLS ========== */
.hero-video-controls {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  z-index: 15;
  display: flex;
  gap: 0.5rem;
}
.hero-video-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s ease;
}
.hero-video-btn:hover { background: rgba(255,255,255,0.45); }

@media (max-width: 767px) {
  .promo-bar-text { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
  .floating-contact { right: 1rem; bottom: 4rem; }
}


/* ============================================== */
/* ===== SPRINT 1 — CONVERSION COMPONENTS ======= */
/* ============================================== */

/* ----- HERO QUICK FACTS ----- */
.hero-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 0.5rem 0 1.25rem;
  width: 100%;
}
.qf-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(6,64,96,0.18);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  color: var(--color-1);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.qf-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-two);
  box-shadow: 0 8px 24px rgba(6,64,96,0.10);
}
.qf-icon {
  background: var(--color-1);
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1rem;
}
.qf-text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.qf-label { font-weight: 600; font-size: 0.95rem; font-family: 'Montserrat', sans-serif; letter-spacing: 0; }
.qf-sub   { font-size: 0.72rem; opacity: 0.65; margin-top: 2px; }

.hero-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.hero-cta-secondary {
  background: rgba(255,255,255,0.85) !important;
  color: var(--color-1) !important;
  border: 2px solid var(--color-1) !important;
  backdrop-filter: blur(6px);
}
.hero-cta-secondary .btn-cta-bg { background: var(--color-1); }
.hero-cta-secondary:hover { color: #fff !important; }

/* ----- TRUST BAND ----- */
.trust-band {
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
  border-top: 1px solid rgba(6,64,96,0.08);
  border-bottom: 1px solid rgba(6,64,96,0.08);
  padding: 3.5rem 0 3rem;
  position: relative;
  z-index: 5;
}
.trust-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.trust-stat { padding: 0.5rem; }
.trust-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  color: var(--color-1);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.trust-stat-suffix { color: var(--color-two); margin-left: 2px; }
.trust-stat-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--body-font);
  opacity: 0.8;
  line-height: 1.4;
}
.trust-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,64,96,0.18), transparent);
  margin: 2.25rem 0 1.75rem;
}
.trust-banks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.trust-banks-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-1);
  opacity: 0.55;
}
.trust-banks-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-bank-logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  filter: grayscale(0.4);
  opacity: 0.85;
  transition: filter .25s ease, opacity .25s ease;
}
.trust-bank-logo:hover { filter: grayscale(0); opacity: 1; }

/* ----- MODEL COMPARATOR ----- */
.comparador-section {
  background: var(--color-1);
  color: var(--white);
  padding: 5rem 0 6rem;
  position: relative;
}
.comparador-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(246,128,44,0.08), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(31,151,218,0.10), transparent 40%);
  pointer-events: none;
}
.comparador-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
  position: relative;
}
.comparador-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
}
.comparador-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.comparador-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-two);
  box-shadow: 0 18px 48px rgba(0,0,0,0.25);
}
.comparador-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.comparador-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.comparador-card:hover .comparador-img-wrap img { transform: scale(1.04); }
.comparador-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.comparador-body { padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; flex: 1; }
.comparador-title { display: flex; flex-direction: column; gap: 0.25rem; }
.comparador-title .text-label { color: rgba(255,255,255,0.55); }
.comparador-specs {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.comparador-specs li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.95rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
}
.comparador-specs li.highlight {
  background: rgba(246,128,44,0.10);
  border-color: rgba(246,128,44,0.45);
}
.spec-icon {
  font-size: 1.05rem;
  color: var(--color-two);
}
.spec-label { color: rgba(255,255,255,0.78); }
.spec-value {
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
}
.comparador-specs li.highlight .spec-value {
  color: var(--color-two);
  font-size: 1.05rem;
}
.comparador-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.extra-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(31,151,218,0.12);
  border: 1px solid rgba(31,151,218,0.25);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.92);
}
.extra-pill .icon-font { color: var(--dodger-blue); font-size: 0.95rem; }
.comparador-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-two);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(246,128,44,0.45), 0 0 0 6px var(--color-1);
  pointer-events: none;
}

/* ----- COMPARADOR DECISION CTA STRIP ----- */
.comparador-decision {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(246,128,44,0.15) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  backdrop-filter: blur(6px);
}
.comparador-decision-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #ffffff;
}
.comparador-decision-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.comparador-decision-text span {
  font-size: 0.95rem;
  color: rgba(247,252,255,0.78);
  letter-spacing: 0.01em;
}
.comparador-decision-ctas {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .comparador-decision { padding: 1.25rem 1.25rem; flex-direction: column; align-items: stretch; text-align: center; }
  .comparador-decision-ctas { justify-content: center; }
}

/* ----- MORTGAGE CALCULATOR ----- */
.calc-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
  padding: 6rem 0;
  position: relative;
}
.calc-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  max-width: 720px;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}
.calc-controls {
  background: #fff;
  border: 1px solid rgba(6,64,96,0.10);
  border-radius: 14px;
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(6,64,96,0.06);
}
.calc-field { display: flex; flex-direction: column; gap: 0.5rem; }
.calc-field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.calc-field-head label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-1);
}
.calc-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-two);
  letter-spacing: -0.01em;
}
.calc-controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-1) 0%, var(--color-two) 100%);
  outline: none;
  cursor: pointer;
}
.calc-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-two);
  box-shadow: 0 2px 8px rgba(6,64,96,0.25);
  cursor: pointer;
  transition: transform .15s ease;
}
.calc-controls input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-controls input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-two);
  box-shadow: 0 2px 8px rgba(6,64,96,0.25);
  cursor: pointer;
}
.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  opacity: 0.55;
  color: var(--body-font);
}
.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--body-font-light);
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

.calc-result {
  background: linear-gradient(135deg, var(--color-1) 0%, var(--color-one-dark) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(6,64,96,0.20);
}
.calc-result::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,128,44,0.25), transparent 70%);
  pointer-events: none;
}
.calc-result-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.calc-result-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-two);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.calc-result-mo {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0;
}
.calc-breakdown {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
  margin-top: 0.25rem;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.calc-row:last-child { border-bottom: none; }
.calc-row strong {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.calc-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.calc-cta-wa:hover {
  transform: translateY(-2px);
  background: #1ea857;
  box-shadow: 0 12px 32px rgba(37,211,102,0.50);
}
.calc-cta-wa img { width: 1.2rem; filter: invert(1); }
.calc-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  flex-wrap: wrap;
}
.calc-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color .18s ease;
}
.calc-link:hover { color: var(--color-two); }
.calc-link .icon-font { font-size: 1rem; }
.calc-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 991px) {
  .trust-stats-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .comparador-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .comparador-vs { display: none; }
  .calc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-quickfacts { gap: 0.4rem; }
  .qf-item { padding: 0.45rem 0.7rem; gap: 0.5rem; }
  .qf-icon { width: 1.65rem; height: 1.65rem; font-size: 0.85rem; }
  .qf-label { font-size: 0.82rem; }
  .qf-sub { font-size: 0.65rem; }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .trust-stats-row { grid-template-columns: 1fr 1fr; }
  .trust-band { padding: 2.5rem 0 2rem; }
  .calc-controls, .calc-result { padding: 1.5rem; }
  .comparador-body { padding: 1.5rem; }
  .comparador-section { padding: 3.5rem 0 4rem; }
  .calc-section { padding: 4rem 0; }
}

/* ============================================== */
/* ===== SPRINT 2 — BRANDING PREMIUM ============ */
/* ============================================== */

/* ----- SERIF ACCENT (titulares emocionales) ----- */
.serif-accent {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 600;
  color: var(--color-two);
  letter-spacing: -0.01em;
  font-size: 1.06em;
}

/* ----- SCROLL REVEAL ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.10s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.20s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.30s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ----- TESTIMONIALS ----- */
.testimonials-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 4%;
  font-family: 'Montserrat', sans-serif;
  font-size: 28rem;
  line-height: 1;
  color: rgba(6,64,96,0.04);
  pointer-events: none;
  font-weight: 700;
}
.testimonials-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  max-width: 720px;
  position: relative;
}
.testimonials-stage {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(6,64,96,0.10), 0 2px 8px rgba(6,64,96,0.04);
}
.testimonials-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}
.testimonial-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 28rem;
}
.testimonial-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.testimonial-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,64,96,0.35) 0%, rgba(6,64,96,0.05) 60%);
}
.testimonial-stars {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  display: flex;
  gap: 0.2rem;
  background: rgba(255,255,255,0.96);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}
.testimonial-stars .icon-font {
  color: #f4b400;
  font-size: 1rem;
}
.testimonial-body {
  padding: 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  position: relative;
}
.testimonial-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 7rem;
  line-height: 0.8;
  font-weight: 700;
  margin-bottom: -2.5rem;
  margin-left: -0.5rem;
}
.testimonial-quote {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--color-1);
  margin: 0;
  font-weight: 500;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid rgba(6,64,96,0.10);
  padding-top: 1.25rem;
  margin-top: 0.75rem;
}
.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-1);
  letter-spacing: -0.01em;
}
.testimonial-sub {
  font-size: 0.85rem;
  color: var(--body-font);
  opacity: 0.7;
}
.testimonial-date {
  font-size: 0.72rem;
  color: var(--color-two);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.testimonials-arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(6,64,96,0.18);
  background: #fff;
  color: var(--color-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}
.testimonials-arrow:hover {
  background: var(--color-two);
  color: #fff;
  border-color: var(--color-two);
  transform: scale(1.05);
}
.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}
.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(6,64,96,0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.18s ease, width 0.25s ease;
}
.testimonials-dot.active {
  background: var(--color-two);
  width: 24px;
  border-radius: 999px;
}

@media (max-width: 991px) {
  .testimonial-card { grid-template-columns: 1fr; min-height: auto; }
  .testimonial-photo { height: 16rem; }
  .testimonial-body { padding: 2rem 1.75rem; }
  .testimonials-section::before { display: none; }
}
@media (max-width: 640px) {
  .testimonials-section { padding: 4rem 0 5rem; }
  .testimonial-quote { font-size: 1.1rem; }
  .testimonial-quote-mark { font-size: 5rem; margin-bottom: -1.75rem; }
  .testimonial-body { padding: 1.75rem 1.25rem; }
}


/* ============================================== */
/* ===== SPRINT 3 — INFORMACIÓN INTELIGENTE ===== */
/* ============================================== */

/* ----- VIRTUAL TOUR ----- */
.vtour-section {
  background:
    linear-gradient(180deg, var(--color-1) 0%, var(--color-one-dark) 100%);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.vtour-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(31,151,218,0.12), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(246,128,44,0.10), transparent 40%);
  pointer-events: none;
}
/* Right side now occupied by specs panel — no decorative ::after needed */
.vtour-section::after { content: none; display: none; }
.vtour-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  max-width: 720px;
  position: relative;
}
.vtour-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  position: relative;
}
.vtour-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
  font-family: inherit;
  transition: all 0.2s ease;
  min-width: 220px;
  position: relative;
  overflow: hidden;
}
.vtour-tab:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.vtour-tab.active {
  background: rgba(255,255,255,0.10);
  border-color: var(--tab-accent, var(--color-two));
  box-shadow: 0 0 0 3px rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.20);
}
/* removed: weird left orange stripe on active tab */
.vtour-tab.active::before { content: none; display: none; }
.vtour-tab-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.vtour-tab-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.vtour-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  aspect-ratio: 16 / 9;
  max-width: 980px;
  max-height: 560px;
  background: #000;
}
.vtour-poster {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border: none;
  cursor: pointer;
  position: relative;
  display: block;
  padding: 0;
}
.vtour-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,46,68,0.50) 0%, rgba(6,46,68,0.20) 50%, rgba(6,46,68,0.55) 100%);
  transition: background 0.3s ease;
}
.vtour-poster:hover .vtour-poster-overlay {
  background: linear-gradient(135deg, rgba(6,46,68,0.35) 0%, rgba(6,46,68,0.10) 50%, rgba(6,46,68,0.45) 100%);
}
.vtour-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--color-two);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 12px 40px rgba(246,128,44,0.50), 0 0 0 8px rgba(255,255,255,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vtour-play-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(246,128,44,0.55);
  animation: vtourPulse 2.2s ease-out infinite;
}
@keyframes vtourPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}
.vtour-poster:hover .vtour-play-circle {
  transform: translate(-50%, -50%) scale(1.08);
}
.vtour-poster-meta {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  text-align: left;
}
.vtour-poster-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.vtour-poster-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-top: 0.2rem;
  letter-spacing: -0.02em;
}
.vtour-360-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--color-1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.vtour-360-badge .icon-font { font-size: 0.95rem; color: var(--color-two); }
.vtour-iframe-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.vtour-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.vtour-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.vtour-close:hover { background: rgba(0,0,0,0.85); }
.vtour-perks {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.vtour-perk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}
.vtour-perk .icon-font {
  color: var(--color-two);
  font-size: 1.1rem;
}

/* ----- CONSTRUCTION TIMELINE ----- */
.timeline-section {
  background: linear-gradient(180deg, #fff 0%, #f7fcff 100%);
  padding: 6rem 0;
  position: relative;
}
.timeline-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  max-width: 640px;
}
.timeline-progress-wrap {
  background: linear-gradient(135deg, var(--color-1) 0%, var(--color-one-dark) 100%);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 18px 48px rgba(6,64,96,0.15);
  position: relative;
  overflow: hidden;
}
.timeline-progress-wrap::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,128,44,0.25), transparent 70%);
  pointer-events: none;
}
.timeline-progress-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}
.timeline-pct {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1;
}
.timeline-pct-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: -0.03em;
  color: var(--color-two);
  display: inline-flex;
  align-items: baseline;
}
.timeline-pct-num small {
  font-size: 1.5rem;
  margin-left: 0.2rem;
  color: rgba(255,255,255,0.7);
}
.timeline-pct-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
}
.timeline-progress-bar {
  position: relative;
  height: 14px;
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
  overflow: hidden;
}
.timeline-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--dodger-blue), var(--color-two));
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.timeline-progress-pulse {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-two);
  border: 3px solid #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(246,128,44,0.6);
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(246,128,44,0.7); }
  100% { box-shadow: 0 0 0 18px rgba(246,128,44,0); }
}

.timeline-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}
.timeline-step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(6,64,96,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--body-font-light);
  z-index: 2;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(6,64,96,0.06);
}
.timeline-step.status-done .timeline-step-icon {
  background: var(--disponible);
  border-color: var(--disponible);
  color: #fff;
  box-shadow: 0 8px 20px rgba(103,202,58,0.30);
}
.timeline-step.status-progress .timeline-step-icon {
  background: var(--color-two);
  border-color: var(--color-two);
  color: #fff;
  box-shadow: 0 8px 20px rgba(246,128,44,0.40);
  animation: progressGlow 2s ease-in-out infinite;
}
@keyframes progressGlow {
  0%, 100% { box-shadow: 0 8px 20px rgba(246,128,44,0.40); }
  50% { box-shadow: 0 8px 28px rgba(246,128,44,0.65); }
}
.timeline-step-body { margin-top: 1rem; }
.timeline-step-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-1);
  letter-spacing: -0.01em;
}
.timeline-step-sub {
  font-size: 0.78rem;
  color: var(--body-font);
  opacity: 0.7;
  margin-top: 0.2rem;
  line-height: 1.4;
}
.timeline-step-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-two);
  margin-top: 0.5rem;
}
.timeline-step.status-pending .timeline-step-date { color: var(--body-font-light); }
.timeline-step-connector {
  position: absolute;
  top: 1.75rem;
  left: 60%;
  right: -40%;
  height: 2px;
  background: rgba(6,64,96,0.15);
  z-index: 1;
}
.timeline-step.status-done .timeline-step-connector {
  background: var(--disponible);
}

/* ----- LOCATION MAP PRO ----- */
.locmap-section {
  background:
    linear-gradient(180deg, var(--color-one-dark) 0%, var(--color-1) 100%);
  color: #fff;
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.locmap-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  max-width: 720px;
}
.locmap-grid {
  display: grid;
  grid-template-columns: minmax(320px, 380px) 1fr;
  gap: 2rem;
  align-items: stretch;
}
.locmap-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.locmap-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.locmap-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.locmap-cat:hover { background: rgba(255,255,255,0.12); }
.locmap-cat.active {
  background: var(--cat-color);
  border-color: var(--cat-color);
}
.locmap-cat .icon-font { font-size: 0.95rem; }
.locmap-poi-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 26rem;
  overflow-y: auto;
  padding-right: 0.4rem;
}
.locmap-poi-list::-webkit-scrollbar { width: 4px; }
.locmap-poi-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.20); border-radius: 999px; }
.locmap-poi-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}
.locmap-poi-item:hover, .locmap-poi-item.hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  transform: translateX(2px);
}
.locmap-poi-dot {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.locmap-poi-meta { display: flex; flex-direction: column; gap: 0.15rem; }
.locmap-poi-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.2;
}
.locmap-poi-stats {
  display: flex;
  gap: 0.85rem;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.65);
}
.locmap-poi-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.locmap-poi-stats .icon-font { font-size: 0.85rem; opacity: 0.8; }
.locmap-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--color-two);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}
.locmap-directions:hover {
  background: var(--color-two-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246,128,44,0.35);
}

.locmap-canvas {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(31,151,218,0.08), transparent 60%),
    linear-gradient(135deg, rgba(6,46,68,0.85), rgba(6,30,50,0.95));
  border: 1px solid rgba(255,255,255,0.10);
  min-height: 28rem;
}
.locmap-canvas-real {
  background: #0a2236;
  min-height: 32rem;
  height: 32rem;
}
@media (min-width: 992px) {
  .locmap-canvas-real { height: 100%; min-height: 36rem; }
}

/* V2 LAYOUT: mapa full-width + tarjetas POI debajo */
.locmap-canvas-wide {
  width: 100%;
  height: 36rem !important;
  min-height: 36rem !important;
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .locmap-canvas-wide { height: 44rem !important; min-height: 44rem !important; }
}
@media (min-width: 1400px) {
  .locmap-canvas-wide { height: 52rem !important; min-height: 52rem !important; }
}
.locmap-cats-bar {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  backdrop-filter: blur(8px);
}
.locmap-poi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.locmap-poi-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.locmap-poi-card:hover,
.locmap-poi-card.hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.locmap-poi-card .locmap-poi-dot {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex: 0 0 38px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.30);
}
.locmap-poi-card .locmap-poi-dot .icon-font { font-size: 1.05rem; }
.locmap-poi-card .locmap-poi-meta { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.locmap-poi-card .locmap-poi-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.locmap-poi-card .locmap-poi-stats {
  display: flex;
  gap: 0.85rem;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.72);
}
.locmap-poi-card .locmap-poi-stats span {
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.locmap-poi-card .locmap-poi-stats .icon-font { font-size: 0.85rem; opacity: 0.85; }

.locmap-directions-wide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--brand-accent, #f6802c);
  color: #fff;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(246,128,44,0.40);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.locmap-directions-wide:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(246,128,44,0.55);
}
.locmap-directions-wide .icon-font { font-size: 1.1rem; }
.locmap-leaflet {
  height: 100% !important;
  width: 100% !important;
  border-radius: 16px;
  filter: saturate(1.05);
}
.locmap-leaflet .leaflet-container {
  background: #e6e6e6;
  font-family: 'Open Sans', sans-serif;
}
.locmap-leaflet .leaflet-control-zoom a {
  background: #fff;
  color: var(--color-1);
  border: 1px solid rgba(6,30,50,0.10);
  font-weight: 700;
}
.locmap-leaflet .leaflet-control-zoom a:hover { background: var(--brand-accent); color: #fff; }
.locmap-leaflet .leaflet-control-attribution {
  font-size: 0.65rem;
  background: rgba(255,255,255,0.85);
}
.locmap-leaflet .leaflet-popup-content-wrapper {
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 12px 32px rgba(0,0,0,0.20);
}
.locmap-leaflet .leaflet-popup-content {
  margin: 0.75rem 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-1);
}
.locmap-leaflet .leaflet-popup-content strong {
  font-weight: 700;
  color: var(--brand-deep);
}

/* MARKER: Home (Santa Mónica) — distintivo, sutil, tamaño similar a POIs */
.locmap-marker-home { background: transparent !important; border: none !important; }
.locmap-marker-home-pin {
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
  border: 2.5px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 14px rgba(6,32,48,0.45), 0 0 0 2px var(--brand-deep, #062e44);
  z-index: 3;
}
.locmap-marker-home-pin .icon-font { font-size: 17px; line-height: 1; }
.locmap-marker-home-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(246,128,44,0.45);
  animation: locmapPulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes locmapPulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* MARKER: POIs */
.locmap-marker-poi { background: transparent !important; border: none !important; }
.locmap-marker-poi-inner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.locmap-marker-poi-inner .icon-font { font-size: 16px; }
.locmap-marker-poi.is-active .locmap-marker-poi-inner,
.locmap-marker-poi:hover .locmap-marker-poi-inner {
  transform: scale(1.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.40), 0 0 0 4px rgba(255,255,255,0.6);
}

/* OVERLAY LEGEND on real map */
.locmap-overlay-legend {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  padding: 0.55rem 0.8rem;
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  z-index: 1000;
  pointer-events: none;
}
.locmap-overlay-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.locmap-overlay-legend i {
  width: 9px; height: 9px; border-radius: 50%; display: inline-block;
}
.locmap-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* V3 LAYOUT: panel scrollable agrupado + mapa con tiles de color */
.locmap-v3 .locmap-grid {
  grid-template-columns: minmax(300px, 360px) 1fr;
  align-items: stretch;
}
.locmap-v3 .locmap-controls {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 36rem;
}
@media (min-width: 992px) {
  .locmap-v3 .locmap-controls { max-height: 40rem; }
}
.locmap-v3 .locmap-canvas-real {
  height: 36rem !important;
  min-height: 36rem !important;
}
@media (min-width: 992px) {
  .locmap-v3 .locmap-canvas-real { height: 40rem !important; min-height: 40rem !important; }
}
.locmap-v3 .locmap-cats { flex-wrap: wrap; }
.locmap-v3 .locmap-cat { position: relative; padding-right: 1.85rem; }
.locmap-cat-count {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  transform: translateY(-50%);
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}
.locmap-cat.active .locmap-cat-count { background: rgba(255,255,255,0.28); }
.locmap-poi-scroll {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.35rem;
}
.locmap-poi-scroll::-webkit-scrollbar { width: 4px; }
.locmap-poi-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.22); border-radius: 999px; }
.locmap-poi-scroll::-webkit-scrollbar-track { background: transparent; }
.locmap-poi-group { display: flex; flex-direction: column; gap: 0.3rem; }
.locmap-poi-group-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  position: sticky;
  top: 0;
  background: linear-gradient(to bottom, rgba(6,30,50,0.96) 70%, rgba(6,30,50,0.0));
  z-index: 2;
  backdrop-filter: blur(4px);
}
.locmap-poi-group-dot {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.locmap-poi-group-dot .icon-font { font-size: 0.72rem; }
.locmap-poi-group-label { letter-spacing: 0.06em; }
.locmap-poi-group-count {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.40);
}
.locmap-v3 .locmap-poi-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  width: 100%;
  text-align: left;
  color: #fff;
  font-family: inherit;
}
.locmap-v3 .locmap-poi-item:hover,
.locmap-v3 .locmap-poi-item.hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  transform: translateX(2px);
}
.locmap-v3 .locmap-poi-item .locmap-poi-go {
  align-self: center;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.30);
  transition: transform 0.18s ease, color 0.18s ease;
}
.locmap-v3 .locmap-poi-item:hover .locmap-poi-go,
.locmap-v3 .locmap-poi-item.hover .locmap-poi-go {
  color: var(--brand-accent);
  transform: translateX(2px);
}
.locmap-v3 .locmap-leaflet .leaflet-tile-pane {
  filter: saturate(1.08) brightness(1.01);
}
.locmap-home-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 1rem), calc(-50% - 4rem));
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.96);
  color: var(--color-1);
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.30);
  white-space: nowrap;
  pointer-events: none;
}
.locmap-home-label .icon-font {
  color: var(--color-two);
  font-size: 1.2rem;
}
.locmap-home-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}
.locmap-home-sub {
  font-size: 0.7rem;
  color: var(--body-font);
  opacity: 0.7;
}
.locmap-legend {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.40);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ----- FAQ SECTION ----- */
.faq-section {
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
  padding: 6rem 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.faq-side {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: sticky;
  top: 6rem;
}
.faq-cats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.faq-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(6,64,96,0.10);
  color: var(--color-1);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: inherit;
}
.faq-cat:hover {
  border-color: var(--color-two);
  background: #fff;
  transform: translateX(2px);
}
.faq-cat.active {
  background: var(--color-1);
  color: #fff;
  border-color: var(--color-1);
  box-shadow: 0 8px 24px rgba(6,64,96,0.20);
}
.faq-cat.active .icon-font { color: var(--color-two); }
.faq-cat .icon-font { font-size: 1.2rem; color: var(--color-two); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(6,64,96,0.10);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-item.open {
  border-color: var(--color-two);
  box-shadow: 0 12px 32px rgba(6,64,96,0.08);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(6,64,96,0.02); }
.faq-question-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-1);
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(6,64,96,0.06);
  color: var(--color-1);
  font-size: 1.2rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.2s ease;
  flex-shrink: 0;
}
.faq-toggle.rotated {
  transform: rotate(45deg);
  background: var(--color-two);
  color: #fff;
}
.faq-answer-wrap {
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--body-font);
}
.faq-cta {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--color-1) 0%, var(--color-one-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #fff;
}
.faq-cta > span {
  font-weight: 600;
  font-size: 0.95rem;
}
.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.faq-cta-link:hover {
  background: #1ea857;
  transform: translateY(-2px);
}
.faq-cta-link img { width: 1rem; filter: invert(1); }

/* ----- RESPONSIVE SPRINT 3 ----- */
@media (max-width: 991px) {
  .timeline-progress-info { grid-template-columns: 1fr; gap: 1.25rem; }
  .timeline-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .timeline-step-connector { display: none; }
  .timeline-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 1rem; }
  .timeline-step-body { margin-top: 0; flex: 1; }
  .timeline-step-icon { flex-shrink: 0; }

  .locmap-grid { grid-template-columns: 1fr; }
  .locmap-canvas { min-height: 22rem; }

  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq-side { position: static; }
  .faq-cats { flex-direction: row; flex-wrap: wrap; }

  .vtour-tab { min-width: auto; flex: 1; }
}
@media (max-width: 640px) {
  .vtour-section, .timeline-section, .locmap-section, .faq-section { padding: 4rem 0; }
  .vtour-play-circle { width: 4.5rem; height: 4.5rem; font-size: 2.2rem; }
  .vtour-poster-name { font-size: 1.15rem; }
  .vtour-perks { gap: 1rem; }
  .timeline-progress-wrap { padding: 1.5rem; }
  .timeline-pct-num { font-size: 3rem; }
  .faq-question { padding: 1rem 1.15rem; }
  .faq-question-text { font-size: 0.95rem; }
  .faq-answer { padding: 0 1.15rem 1.15rem; font-size: 0.9rem; }
  .locmap-poi-list { max-height: 20rem; }
}


/* ============================================== */
/* ===== SPRINT 4 — URGENCIA & ESCASEZ ========== */
/* ============================================== */

/* ----- PROMO COUNTDOWN ----- */
.promo-countdown {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
  position: relative;
}
.promo-card {
  background: linear-gradient(135deg, #062e44 0%, #064060 50%, #052339 100%);
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(6,64,96,0.20);
}
.promo-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,128,44,0.30) 0%, transparent 65%);
  pointer-events: none;
}
.promo-card::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,151,218,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(246,128,44,0.15);
  border: 1px solid rgba(246,128,44,0.4);
  color: var(--color-two);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.promo-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-two);
  box-shadow: 0 0 0 0 rgba(246,128,44,0.7);
  animation: pulseDot 1.6s ease-out infinite;
}
.promo-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}
.promo-info { display: flex; flex-direction: column; gap: 1rem; }
.promo-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.promo-bonus {
  color: var(--color-two);
  font-style: italic;
}
.promo-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
}
.promo-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.promo-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(37,211,102,0.40);
}
.promo-cta-primary:hover {
  transform: translateY(-2px);
  background: #1ea857;
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
.promo-cta-primary img { width: 1.15rem; filter: invert(1); }
.promo-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.3rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.promo-cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}

.promo-clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(12px);
}
.promo-clock-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.promo-clock-grid {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.clock-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 4rem;
}
.clock-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.4rem 0.5rem 0.5rem;
  min-width: 4rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.clock-num.pulse { color: var(--color-two); }
.clock-unit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.clock-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.30);
  margin-top: 0.3rem;
  animation: blinkSep 1s steps(2) infinite;
}
@keyframes blinkSep {
  50% { opacity: 0.20; }
}

/* ----- SOCIAL NOTIFICATIONS (toast) ----- */
.social-notif {
  position: fixed;
  left: 1.25rem;
  bottom: 5rem;
  z-index: 9990;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 2.4rem 0.9rem 0.9rem;
  min-width: 280px;
  max-width: 360px;
  box-shadow: 0 18px 48px rgba(6,64,96,0.18), 0 2px 6px rgba(0,0,0,0.06);
  border: 1px solid rgba(6,64,96,0.06);
  animation: notifIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
@keyframes notifIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.social-notif-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-1), var(--color-one-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.social-notif-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--disponible);
  border: 2px solid #fff;
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  box-shadow: 0 0 0 0 rgba(103,202,58,0.6);
  animation: pulseDot 1.6s ease-out infinite;
}
.social-notif-body { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.social-notif-title {
  font-size: 0.88rem;
  color: var(--color-1);
  line-height: 1.3;
}
.social-notif-title strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.social-notif-meta {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--body-font);
  opacity: 0.7;
  flex-wrap: wrap;
}
.social-notif-meta .icon-font { font-size: 0.85rem; }
.social-notif-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(6,64,96,0.30);
  margin: 0 0.2rem;
}
.social-notif-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: transparent;
  color: var(--body-font-light);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.social-notif-close:hover {
  background: rgba(6,64,96,0.06);
  color: var(--color-1);
}
.social-notif-close .icon-font { font-size: 1rem; }
.social-notif-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-two), var(--color-1));
  width: 100%;
  animation: notifProgress 12s linear forwards;
  transform-origin: left;
}
@keyframes notifProgress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* ----- LOT AVAILABILITY BANNER ----- */
.lot-banner {
  position: relative;
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, #fff 0%, #f7fcff 100%);
  border: 1px solid rgba(6,64,96,0.12);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(6,64,96,0.08);
  overflow: hidden;
}
.lot-banner-pulse {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(246,128,44,0.25), transparent 70%);
  pointer-events: none;
}
.lot-banner-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.lot-banner-stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.lot-banner-num {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
}
.lot-banner-num-val {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-two);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lot-banner-num-of {
  font-size: 1rem;
  color: var(--body-font);
  font-weight: 600;
  opacity: 0.7;
}
.lot-banner-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-1);
  opacity: 0.7;
}
.lot-banner-bar-wrap { display: flex; flex-direction: column; gap: 0.5rem; }
.lot-banner-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(6,64,96,0.10);
  overflow: hidden;
}
.lot-banner-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--dodger-blue), var(--color-two));
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22,1,0.36,1);
}
.lot-banner-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--body-font);
}
.lot-banner-bar-meta strong { color: var(--color-1); font-family: 'Montserrat', sans-serif; }
.lot-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-one-dark);
  background: rgba(246,128,44,0.10);
  border: 1px solid rgba(246,128,44,0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-two);
  animation: pulseDot 1.4s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(246,128,44,0.6);
}
.lot-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  background: var(--color-1);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.lot-banner-cta:hover {
  background: var(--color-two);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(246,128,44,0.40);
}

/* ----- BROCHURE LEAD MAGNET ----- */
.brochure-section {
  background: linear-gradient(180deg, #fff 0%, #f7fcff 100%);
  padding: 6rem 0;
}
.brochure-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(6,64,96,0.12), 0 2px 8px rgba(6,64,96,0.04);
  border: 1px solid rgba(6,64,96,0.08);
}
.brochure-art {
  background: linear-gradient(135deg, var(--color-1) 0%, var(--color-one-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.brochure-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(246,128,44,0.28), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(31,151,218,0.25), transparent 50%);
}
.brochure-art-stack { position: relative; width: 240px; height: 320px; }
.brochure-art-doc {
  position: absolute;
  width: 220px;
  height: 290px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}
.brochure-art-doc.doc-1 {
  top: 10px;
  left: -10px;
  background: linear-gradient(180deg, #f7fcff 0%, #e6f1f8 100%);
  transform: rotate(-6deg);
}
.brochure-art-doc.doc-2 {
  top: 0;
  left: 10px;
  transform: rotate(2deg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.brochure-art-bar {
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-1) 0%, var(--dodger-blue) 100%);
  opacity: 0.7;
}
.brochure-art-bar.w-90 { width: 90%; }
.brochure-art-bar.w-70 { width: 70%; }
.brochure-art-bar.w-60 { width: 60%; }
.brochure-art-bar.w-50 { width: 50%; }
.brochure-art-bar.w-40 { width: 40%; }
.brochure-art-img {
  height: 80px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(246,128,44,0.15) 0%, rgba(31,151,218,0.15) 100%),
    url('/images/cover-modelo-fernanda.webp');
  background-size: cover;
  background-position: center;
  margin: 0.4rem 0;
}
.brochure-art-sticker {
  position: absolute;
  bottom: -12px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: var(--color-two);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(246,128,44,0.50);
  transform: rotate(8deg);
}
.brochure-art-sticker .icon-font { font-size: 1rem; }

.brochure-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.brochure-perks {
  list-style: none;
  margin: 0.5rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.brochure-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--body-font);
}
.brochure-perks .icon-font {
  color: var(--disponible);
  font-size: 1.1rem;
}

.brochure-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.brochure-field { display: flex; flex-direction: column; gap: 0.25rem; position: relative; }
.brochure-field:nth-child(1) { grid-column: 1 / -1; }
.brochure-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(6,64,96,0.18);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-1);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.brochure-field input:focus {
  outline: none;
  border-color: var(--color-two);
  box-shadow: 0 0 0 3px rgba(246,128,44,0.15);
}
.brochure-field.has-error input {
  border-color: #e74c3c;
  background: rgba(231,76,60,0.04);
}
.brochure-error {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 0.15rem;
}
.brochure-submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.25rem;
  background: var(--color-two);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(246,128,44,0.35);
}
.brochure-submit:hover {
  background: var(--color-two-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(246,128,44,0.50);
}
.brochure-fineprint {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  color: var(--body-font-light);
  text-align: center;
  line-height: 1.4;
}

.brochure-success {
  margin-top: 1rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(103,202,58,0.08) 0%, rgba(31,151,218,0.06) 100%);
  border: 1px solid rgba(103,202,58,0.30);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}
.brochure-success-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--disponible);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(103,202,58,0.40);
}
.brochure-success-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-1);
  letter-spacing: -0.02em;
}
.brochure-success p {
  margin: 0;
  color: var(--body-font);
  font-size: 0.95rem;
  line-height: 1.6;
}
.brochure-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  transition: all 0.2s ease;
  box-shadow: 0 8px 22px rgba(37,211,102,0.40);
}
.brochure-wa-cta:hover {
  background: #1ea857;
  transform: translateY(-2px);
}
.brochure-wa-cta img { width: 1.1rem; filter: invert(1); }

/* ----- RESPONSIVE SPRINT 4 ----- */
@media (max-width: 991px) {
  .promo-body { grid-template-columns: 1fr; gap: 2rem; }
  .promo-clock-grid { gap: 0.3rem; }
  .clock-cell { min-width: 3.4rem; }
  .clock-num { font-size: 2.1rem; min-width: 3.4rem; }
  .clock-sep { font-size: 1.9rem; }

  .lot-banner-content { grid-template-columns: 1fr; gap: 1rem; }

  .brochure-card { grid-template-columns: 1fr; }
  .brochure-art { padding: 2.5rem 1rem; min-height: 18rem; }
  .brochure-art-stack { transform: scale(0.85); }
  .brochure-body { padding: 2rem 1.5rem; }
  .brochure-perks { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .promo-card { padding: 1.75rem 1.25rem; }
  .promo-cta-primary, .promo-cta-secondary { width: 100%; justify-content: center; }
  .promo-clock { padding: 1.25rem 0.75rem; }
  .clock-cell { min-width: 2.8rem; }
  .clock-num { font-size: 1.6rem; min-width: 2.8rem; padding: 0.3rem 0.35rem 0.4rem; }
  .clock-sep { font-size: 1.4rem; }
  .clock-unit { font-size: 0.62rem; letter-spacing: 0.1em; }

  .social-notif {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 4.5rem;
    max-width: none;
    min-width: 0;
  }

  .lot-banner { padding: 1.25rem 1rem; }
  .lot-banner-num-val { font-size: 2.1rem; }

  .brochure-section { padding: 4rem 0; }
  .brochure-form { grid-template-columns: 1fr; }
  .promo-countdown { padding: 3rem 0; }
}


/* ========================================================== */
/* ===== REFINADA DE MARCA — PALETA RESTRINGIDA & POLISH ===== */
/* ========================================================== */

/* --- Tipografía: Montserrat es la única familia --- */
body, .sm-body, p, div, span, a, button, input, textarea, select, li,
.text-size-medium, .text-size-large, .text-size-small,
.text-label, .h1-label,
.btn, .btn-nav, .btn-modal-nav,
.calc-field-head label, .faq-question-text, .faq-answer,
.timeline-step-label, .timeline-step-sub, .timeline-step-date,
.locmap-poi-name, .locmap-poi-stats,
.vtour-tab-name, .vtour-tab-sub,
.testimonial-name, .testimonial-sub, .testimonial-date, .testimonial-quote,
.qf-label, .qf-sub,
.brochure-success-title, .brochure-perks,
.lot-banner-num-val, .lot-banner-num-of, .lot-banner-label,
.trust-stat-num, .trust-stat-label, .trust-banks-label,
.promo-title, .promo-tag, .promo-sub, .promo-clock-label, .clock-num, .clock-unit,
.spec-value, .spec-label,
.comparador-title h3 {
  font-family: 'Montserrat', sans-serif;
}

/* Body uses Open Sans for legibility of long text */
.sm-body, p, .text-size-medium, .text-size-large, .text-size-small,
.faq-answer, .testimonial-sub, .locmap-poi-stats {
  font-family: 'Open Sans', 'Montserrat', sans-serif;
}

/* --- Serif accent ahora es Montserrat italic ligero --- */
.serif-accent {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-accent);
  letter-spacing: -0.025em;
  font-size: 1em;
}

/* --- Hero más impactante (overlay oscuro = texto blanco) --- */
.sm-h1 {
  letter-spacing: -0.04em;
  font-weight: 700;
}
.hero .sm-h1 {
  max-width: 22ch;
  margin-inline: auto;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero .sm-h1 .serif-accent {
  color: var(--brand-accent);
}
.h1-label {
  font-size: 0.75rem !important;
  letter-spacing: 0.42em !important;
  font-weight: 700 !important;
  color: var(--brand-accent);
  opacity: 1 !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero .text-size-medium {
  font-size: 1.2rem;
  max-width: 38rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}
.hero .text-size-medium strong {
  color: #ffffff;
  font-weight: 700;
}
.hero-cta-row { margin-top: 1.25rem; gap: 1rem; }
.btn.cta-special.big { padding: 1.35rem 2.25rem; font-size: 1.05rem; font-weight: 600; letter-spacing: 0.02em; }

/* --- Quick facts SÓLIDOS sobre video oscuro --- */
.hero-quickfacts { gap: 0.6rem; margin: 1.75rem 0 2rem; }
.hero-content .qf-item {
  background: rgba(6, 32, 48, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding: 0.7rem 1.1rem !important;
}
.hero-content .qf-item:hover {
  background: rgba(6, 32, 48, 0.92) !important;
  border-color: var(--brand-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(246, 128, 44, 0.32);
}
.hero-content .qf-icon {
  width: 2rem;
  height: 2rem;
  background: var(--brand-accent);
  color: #ffffff !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.hero-content .qf-label { font-weight: 700; color: #ffffff !important; }
.hero-content .qf-sub { color: rgba(255, 255, 255, 0.85) !important; opacity: 1 !important; }

/* --- Section labels & headings consistency --- */
.text-label {
  color: var(--brand-accent) !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.32em !important;
  font-size: 0.72rem !important;
}
section .text-label[style*="rgba(247,252,255"] { color: rgba(255,255,255,0.55) !important; }
section .text-label[style*="rgba(255,255,255"] { color: rgba(255,255,255,0.55) !important; }

/* --- Testimonials: estrellas y quote en colores de marca --- */
.testimonial-stars .icon-font { color: var(--brand-accent); }
.testimonial-stars { background: rgba(255,255,255,0.98); }
.testimonial-quote { font-style: italic; font-weight: 500; }
.testimonial-quote-mark { font-style: normal; font-weight: 700; }
.testimonials-section::before { content: none; }

/* --- Comparator: solo dos badges (azul / naranja) --- */
.extra-pill {
  background: var(--brand-accent-soft);
  border-color: rgba(246,128,44,0.30);
  color: var(--brand-deep);
}
.extra-pill .icon-font { color: var(--brand-accent); }

/* --- Timeline: paleta limpia, sin verde --- */
.timeline-progress-fill {
  background: linear-gradient(90deg, var(--brand-mid), var(--brand-accent));
}
.timeline-step.status-done .timeline-step-icon {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(6,64,96,0.25);
}
.timeline-step.status-done .timeline-step-connector { background: var(--brand-primary); }
.timeline-step-icon { border-color: var(--neutral-200); color: var(--neutral-500); }
.timeline-step-connector { background: var(--neutral-200); }

/* --- Lot banner: gradient simplificado --- */
.lot-banner-bar-fill {
  background: linear-gradient(90deg, var(--brand-mid), var(--brand-accent));
}
.lot-banner {
  background: var(--neutral-0);
  border-color: var(--neutral-200);
}

/* --- Calculator: thumb monocromo --- */
.calc-controls input[type="range"] {
  background: var(--neutral-200);
}
.calc-controls input[type="range"]::-webkit-slider-thumb { border-color: var(--brand-accent); }
.calc-controls input[type="range"]::-moz-range-thumb { border-color: var(--brand-accent); }
.calc-result-amount { color: var(--brand-accent); }
.calc-result::before {
  background: radial-gradient(circle, rgba(246,128,44,0.18), transparent 70%);
}

/* --- Brochure: éxito en naranja en lugar de verde --- */
.brochure-success {
  background: linear-gradient(135deg, var(--brand-accent-soft) 0%, var(--neutral-50) 100%);
  border-color: rgba(246,128,44,0.35);
}
.brochure-success-icon {
  background: var(--brand-accent);
  box-shadow: 0 8px 20px rgba(246,128,44,0.30);
}
.brochure-field.has-error input {
  border-color: var(--brand-accent-dark);
  background: rgba(170,55,6,0.04);
}
.brochure-error { color: var(--brand-accent-dark); }
.brochure-perks .icon-font { color: var(--brand-accent); }

/* --- Location Map: 4 categorías en variaciones del azul --- */
.locmap-cat[style*="#1f97da"] { --cat-color: var(--brand-mid); }
.locmap-cat[style*="#e74c3c"] { --cat-color: var(--brand-accent-dark); }
.locmap-cat[style*="#f6802c"] { --cat-color: var(--brand-accent); }
.locmap-cat[style*="#27ae60"] { --cat-color: var(--brand-primary); }
.locmap-cat[style*="#064060"] { --cat-color: var(--brand-deep); }

/* --- Virtual Tour: tab accent siempre naranja --- */
.vtour-tab.active { border-color: var(--brand-accent); }
.vtour-tab.active::before { background: var(--brand-accent); }
.vtour-perk .icon-font { color: var(--brand-accent); }

/* --- Social notif: dot naranja, no verde --- */
.social-notif-icon::after { background: var(--brand-accent); box-shadow: 0 0 0 0 rgba(246,128,44,0.6); }
.social-notif-progress { background: linear-gradient(90deg, var(--brand-accent), var(--brand-primary)); }

/* --- Trust band suffix naranja --- */
.trust-stat-suffix { color: var(--brand-accent); }

/* --- FAQ tweaks --- */
.faq-cat.active .icon-font { color: var(--brand-accent); }
.faq-cat .icon-font { color: var(--brand-accent); }
.faq-item.open { border-color: var(--brand-accent); }

/* --- Promo countdown: usar paleta restringida --- */
.promo-clock { backdrop-filter: blur(14px); }
.promo-bonus { font-style: italic; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.promo-cta-secondary:hover { background: rgba(255,255,255,0.08); }

/* --- Buttons polish --- */
.btn { font-weight: 600; letter-spacing: 0.025em; }
.btn-nav { font-weight: 500; }
.btn-nav.active { color: var(--brand-accent); }

/* --- Navbar refinements --- */
.main-nav-component { background: var(--neutral-0); }

/* --- Footer y CTA section --- */
.cta-section { background-color: var(--brand-primary); }

/* --- Headings color cleanup en secciones oscuras --- */
.vtour-section .sm-h2,
.locmap-section .sm-h2,
.comparador-section .sm-h2,
.cta-section .sm-h2 { color: #fff; }

/* --- Hero CTA secondary más legible sobre el video claro --- */
.hero-cta-secondary {
  background: rgba(255,255,255,0.92) !important;
  border-color: var(--brand-primary) !important;
  color: var(--brand-primary) !important;
  font-weight: 600;
}

/* --- Slider arrows naranja --- */
.slider-arrow:hover { background-color: var(--brand-accent); }

/* --- Hero video controls polish --- */
.hero-video-btn { background: rgba(255,255,255,0.20); backdrop-filter: blur(8px); }

/* --- Section padding global más generoso --- */
.padding-vertical.padding-large { padding-top: 7rem; padding-bottom: 7rem; }
.padding-vertical.padding-medium { padding-top: 5rem; padding-bottom: 5rem; }

/* --- Responsive hero refinements --- */
@media (max-width: 991px) {
  .hero { min-height: 75vh; }
  .hero-video-bg, .hero-shade { height: 75vh; }
  .hero-content-wrap { padding-top: 10rem; padding-bottom: 4rem; }
  .hsg-strip { height: 7.5rem; gap: 0.5rem; }
  .hsg-frame { width: 11rem; }
  .padding-proyecto { padding-top: 9rem; padding-bottom: 4rem; }
}
@media (max-width: 640px) {
  .sm-h1 { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  .hero { min-height: 85vh; }
  .hero-video-bg, .hero-shade { height: 85vh; }
  .hero-content-wrap { padding-top: 9rem; padding-bottom: 3.5rem; }
  .hero .text-size-medium { font-size: 0.95rem; }
  .hero .sm-h1 { max-width: 16ch; }
  .h1-label { font-size: 0.6rem !important; letter-spacing: 0.28em !important; margin-bottom: 0.85rem !important; }
  .hero-content .hero-quickfacts { gap: 0.4rem; margin: 1.1rem auto 1.3rem; }
  .hero-content .qf-item { padding: 0.5rem 0.75rem !important; gap: 0.4rem !important; }
  .hero-content .qf-icon { width: 1.7rem; height: 1.7rem; font-size: 0.85rem; }
  .hero-content .qf-label { font-size: 0.78rem; }
  .hero-content .qf-sub { font-size: 0.66rem; }
  .btn.cta-special.big { padding: 1rem 1.5rem; font-size: 0.92rem; }
  .hsg-strip { height: 5.5rem; gap: 0.35rem; }
  .hsg-frame { width: 8rem; border-radius: 6px; }
  .horizontal-scroll-galleries { gap: 0.35rem; }
  .padding-proyecto { padding-top: 6rem; padding-bottom: 4rem; }
}


/* ============================================== */
/* ===== LOT MAP — MASTERPLAN INTERACTIVO ======= */
/* ============================================== */

.lotmap-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 30, 50, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: lotmapIn 0.35s ease;
}
@keyframes lotmapIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lotmap-container {
  width: 100%;
  max-width: 1280px;
  max-height: 92vh;
  background: var(--neutral-0);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "header header"
    "filters filters"
    "canvas detail";
  overflow: hidden;
  animation: lotmapSlide 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lotmap-container.v2 {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "header"
    "body";
}
@keyframes lotmapSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* HEADER */
.lotmap-header {
  grid-area: header;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.lotmap-header-info .sm-h3 {
  color: var(--brand-primary);
  margin-top: 0.2rem;
}
.lotmap-counts {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.lcnt {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
}
.lcnt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lcnt div {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.lcnt strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
}
.lcnt span:not(.lcnt-dot) {
  font-size: 0.7rem;
  color: var(--neutral-500);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lotmap-close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: none;
  background: var(--neutral-100);
  color: var(--brand-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.lotmap-close:hover { background: var(--brand-accent); color: #fff; }

/* FILTERS */
.lotmap-filters {
  grid-area: filters;
  display: flex;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
  flex-wrap: wrap;
  background: var(--neutral-50);
}
.lf-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--neutral-0);
  border: 1px solid var(--neutral-200);
  color: var(--neutral-700);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.18s ease;
}
.lf-chip:hover { border-color: var(--brand-accent); }
.lf-chip.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.lf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* CANVAS — image + svg overlay */
.lotmap-canvas {
  grid-area: canvas;
  position: relative;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-primary));
  overflow: hidden;
  min-height: 24rem;
  padding: 1rem;
}
.lotmap-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.lotmap-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  filter: saturate(0.85) brightness(0.95);
}
.lotmap-dim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lotmap-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lotmap-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 0;
  margin: 0;
  cursor: default;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.52rem;
  line-height: 1;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.25s ease, border-color 0.18s ease;
  z-index: 2;
}
.lotmap-pin.s-disponible { background: var(--brand-accent); }
.lotmap-pin.s-apartado   { background: var(--brand-mid); }
.lotmap-pin.s-vendido    {
  background: var(--neutral-500);
  color: rgba(255,255,255,0.85);
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.85);
}
.lotmap-pin.interactive { cursor: pointer; }
.lotmap-pin.interactive:hover,
.lotmap-pin.hover.interactive {
  transform: translate(-50%, -50%) scale(1.45);
  box-shadow: 0 6px 16px rgba(0,0,0,0.40), 0 0 0 3px rgba(255,255,255,0.55);
  z-index: 5;
}
.lotmap-pin.selected {
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 8px 22px rgba(246,128,44,0.55), 0 0 0 4px var(--brand-accent-soft);
  border-color: var(--brand-deep);
  z-index: 6;
}
.lotmap-pin.dim {
  opacity: 0.20;
  filter: grayscale(0.35);
}
.lotmap-pin-num {
  position: relative;
  z-index: 2;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.lotmap-pin-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--brand-accent);
  opacity: 0.35;
  pointer-events: none;
  animation: pinPulse 1.8s ease-out infinite;
  z-index: 1;
}
@keyframes pinPulse {
  0%   { transform: scale(0.75); opacity: 0.55; }
  100% { transform: scale(1.6);  opacity: 0; }
}

/* MINI LEGEND (visible always over image) */
.lotmap-mini-legend {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #fff;
}
.lml-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.lml-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

/* DETAIL PANEL */
.lotmap-detail {
  grid-area: detail;
  padding: 1.5rem;
  background: var(--neutral-50);
  border-left: 1px solid var(--neutral-200);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ld-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  width: fit-content;
}
.ld-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--brand-primary);
  letter-spacing: -0.015em;
}
.ld-title strong {
  font-weight: 700;
  color: var(--brand-deep);
}
.ld-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.85rem;
  background: var(--neutral-0);
  border-radius: 10px;
  border: 1px solid var(--neutral-200);
}
.ld-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ld-meta-label {
  font-size: 0.68rem;
  color: var(--neutral-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.ld-meta-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-primary);
}
.ld-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.15rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  box-shadow: 0 8px 22px rgba(37,211,102,0.35);
  transition: all 0.18s ease;
}
.ld-cta:hover {
  background: #1ea857;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.50);
}
.ld-cta img { width: 1.05rem; filter: invert(1); }
.ld-unavailable {
  font-size: 0.85rem;
  color: var(--neutral-500);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.ld-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 0.85rem;
  color: var(--neutral-500);
  padding: 1.5rem 0.5rem;
}
.ld-empty .icon-font {
  font-size: 2.5rem;
  color: var(--brand-accent);
  opacity: 0.5;
}
.ld-empty p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .lotmap-modal { padding: 0; }
  .lotmap-container {
    max-height: 100vh;
    border-radius: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "header"
      "filters"
      "canvas"
      "detail";
  }
  .lotmap-detail {
    border-left: none;
    border-top: 1px solid var(--neutral-200);
    max-height: 16rem;
  }
  .lotmap-canvas { min-height: 22rem; }
  .lotmap-header { grid-template-columns: 1fr auto; gap: 0.75rem; }
  .lotmap-counts {
    display: none;
  }
}
@media (max-width: 640px) {
  .lotmap-filters { padding: 0.65rem 0.85rem; gap: 0.35rem; }
  .lf-chip { padding: 0.35rem 0.7rem; font-size: 0.75rem; }
  .lotmap-detail { padding: 1rem 1.15rem; max-height: 14rem; }
  .lotmap-mini-legend { font-size: 0.68rem; padding: 0.5rem 0.65rem; }
}


/* ============================================== */
/* ===== LOT MAP V2 — PLANO + LISTA ============= */
/* ============================================== */

.lotmap-body {
  grid-area: body;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  overflow: hidden;
  min-height: 0;
}
.lotmap-plano {
  position: relative;
  background: var(--neutral-100);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  min-height: 0;
}
.lotmap-plano img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  background: #fff;
}
.lotmap-plano-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  background: rgba(6, 30, 50, 0.86);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
}
.lotmap-plano-caption .icon-font {
  color: var(--brand-accent);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.lotmap-interactive {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--neutral-200);
  background: var(--neutral-50);
  overflow: hidden;
  min-height: 0;
}

.v2 .lotmap-filters {
  border-bottom: 1px solid var(--neutral-200);
  background: #fff;
}
.lotmap-mz-select {
  display: flex;
  gap: 0.35rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--neutral-200);
  flex-wrap: wrap;
  background: #fff;
}
.mz-chip {
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  color: var(--neutral-700);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.18s ease;
}
.mz-chip:hover { border-color: var(--brand-accent); color: var(--brand-primary); }
.mz-chip.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.lotmap-lot-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 0;
}
.lotmap-lot-list::-webkit-scrollbar { width: 6px; }
.lotmap-lot-list::-webkit-scrollbar-thumb {
  background: var(--neutral-300);
  border-radius: 999px;
}

.lot-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.lot-card.s-disponible {
  border-color: rgba(246, 128, 44, 0.30);
}
.lot-card.s-disponible:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 6px 18px rgba(246, 128, 44, 0.15);
}
.lot-card.s-vendido { opacity: 0.65; }
.lot-card.s-apartado { opacity: 0.85; }

.lot-card-status {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.lot-card-main { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.lot-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--brand-primary);
  font-weight: 500;
}
.lot-card-title strong {
  font-weight: 700;
  color: var(--brand-deep);
}
.lot-card-meta {
  font-size: 0.78rem;
  color: var(--neutral-500);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.lot-card-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--neutral-300);
  display: inline-block;
}
.lot-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.lot-card-cta:hover {
  background: #1ea857;
  transform: translateY(-1px);
}
.lot-card-cta img { width: 0.85rem; filter: invert(1); }
.lot-card-cta .icon-font { font-size: 0.95rem; }
.lot-card-no {
  font-size: 0.78rem;
  color: var(--neutral-500);
  font-style: italic;
  white-space: nowrap;
}
.lotmap-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 0.65rem;
  color: var(--neutral-500);
  padding: 2rem 1rem;
}
.lotmap-empty .icon-font {
  font-size: 2rem;
  color: var(--neutral-300);
}
.lotmap-empty p { margin: 0; font-size: 0.9rem; }

/* RESPONSIVE V2 */
@media (max-width: 991px) {
  .v2 .lotmap-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .lotmap-plano { padding: 0.85rem; max-height: 50vh; }
  .lotmap-plano-caption { font-size: 0.72rem; padding: 0.5rem 0.7rem; }
  .lotmap-interactive { border-left: none; border-top: 1px solid var(--neutral-200); }
}
@media (max-width: 640px) {
  .lot-card { grid-template-columns: 70px 1fr auto; gap: 0.6rem; padding: 0.6rem; }
  .lot-card-title { font-size: 0.88rem; }
  .lot-card-meta { font-size: 0.72rem; }
  .lot-card-cta { padding: 0.4rem 0.65rem; font-size: 0.72rem; }
  .lot-card-cta img { width: 0.75rem; }
  .mz-chip { padding: 0.3rem 0.55rem; font-size: 0.72rem; }
}


/* ============================================== */
/* ===== LOT MAP V3 — Plano CAD + pins reales === */
/* ============================================== */

.lotmap-container.v3 {
  width: 100%;
  max-width: 1480px;
  max-height: 94vh;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "header"
    "filters"
    "body";
}
.lotmap-filters.v3 {
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-200);
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
}
.lf-group { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.lf-group-mz { flex: 0 0 auto; }
.lf-select {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--brand-primary);
  background: #fff;
  cursor: pointer;
  outline: none;
}
.lf-select:focus { border-color: var(--brand-accent); }

.lotmap-body.v3 {
  grid-area: body;
  display: grid;
  grid-template-columns: 1fr 360px;
  min-height: 0;
  overflow: hidden;
}

.lotmap-plano-wrap {
  position: relative;
  background: var(--neutral-100);
  padding: 1.25rem;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lotmap-canvas-fit {
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 30, 50, 0.10);
}
.lotmap-plano-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  pointer-events: none;
}
.lotmap-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-500);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  z-index: 10;
}

/* PINS over CAD plano */
.lm-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 1.4%;
  aspect-ratio: 1 / 1;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  padding: 0;
  margin: 0;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.42vw;
  line-height: 1;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.30);
  transition: filter 0.15s ease, box-shadow 0.15s ease, z-index 0s linear;
  z-index: 2;
}
.lm-pin.interactive { cursor: pointer; }
.lm-pin.interactive:hover,
.lm-pin.hover.interactive {
  filter: brightness(1.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.40), 0 0 0 3px rgba(255, 255, 255, 0.55);
  z-index: 5;
}
.lm-pin.selected {
  box-shadow: 0 6px 18px rgba(246, 128, 44, 0.55), 0 0 0 4px var(--brand-accent-soft);
  z-index: 6;
}
.lm-pin-num {
  pointer-events: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}
.lm-pin-ring {
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: var(--brand-accent);
  opacity: 0.30;
  pointer-events: none;
  animation: lmPinPulse 1.8s ease-out infinite;
  z-index: -1;
}
@keyframes lmPinPulse {
  0%   { transform: scale(0.85); opacity: 0.55; }
  100% { transform: scale(1.7);  opacity: 0; }
}

@media (min-width: 1280px) {
  .lm-pin { font-size: 0.62rem; }
}
@media (max-width: 991px) {
  .lm-pin { font-size: 1.2vw; }
}

/* MINI LEGEND */
.lotmap-mini-legend {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: rgba(6, 30, 50, 0.86);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: #fff;
  z-index: 5;
}

/* DETAIL PANEL V3 */
.lotmap-detail.v3 {
  background: var(--neutral-50);
  border-left: 1px solid var(--neutral-200);
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.ld-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ld-meta.v3 {
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
.ld-meta.v3 > div {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
}
.ld-empty-cta {
  margin-top: 1rem;
  padding: 1.15rem;
  background: var(--brand-accent-soft);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ld-empty-cta strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.ld-empty-cta span {
  font-size: 0.78rem;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .lotmap-container.v3 { max-height: 100vh; border-radius: 0; }
  .lotmap-body.v3 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
  .lotmap-detail.v3 {
    border-left: none;
    border-top: 1px solid var(--neutral-200);
    max-height: 22rem;
  }
  .lotmap-mini-legend { bottom: 0.75rem; left: 0.75rem; font-size: 0.66rem; }
}
@media (max-width: 640px) {
  .lotmap-filters.v3 { padding: 0.5rem 0.85rem; gap: 0.5rem; }
  .lf-chip { padding: 0.32rem 0.7rem; font-size: 0.74rem; }
  .lotmap-counts { display: none; }
}


/* ============================================== */
/* ===== LOT MAP INLINE (en la home, no modal) == */
/* ============================================== */

.lmi-section {
  background: linear-gradient(180deg, #fff 0%, var(--neutral-50) 100%);
  padding: 6rem 0;
  scroll-margin-top: 5rem;
}
.lmi-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  max-width: 720px;
}

/* URGENCY BANNER */
.lmi-urgency {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(246,128,44,0.10) 0%, rgba(246,128,44,0.18) 100%);
  border: 1px solid rgba(246,128,44,0.35);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.5rem;
  max-width: 880px;
  color: var(--color-1);
  font-size: 0.92rem;
  line-height: 1.5;
}
.lmi-urgency-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-two, #f6802c);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(246,128,44,0.18);
  animation: lmi-pulse 2.4s ease-in-out infinite;
}
.lmi-urgency-text strong {
  font-weight: 700;
  color: var(--color-two, #f6802c);
}
.lmi-urgency-tail {
  display: inline-block;
  margin-left: 0.25rem;
  opacity: 0.85;
}
@keyframes lmi-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.65; }
}

/* FLOATING LEGEND ON PLANO */
.lmi-legend {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(14, 30, 46, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 5;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  pointer-events: none;
}
.lmi-legend-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.15rem;
}
.lmi-legend-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lmi-legend-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}
@media (max-width: 720px) {
  .lmi-legend { top: 0.5rem; right: 0.5rem; padding: 0.55rem 0.7rem; font-size: 0.72rem; }
  .lmi-urgency { padding: 0.75rem 0.9rem; font-size: 0.85rem; }
}

/* COUNTERS */
/* COUNTERS — dark compact legend+counter strip, sits right above the plano */
.lmi-counts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  background: rgba(14, 30, 46, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  box-shadow: 0 14px 36px rgba(6,16,28,0.18);
}
.lmi-count {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.75rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  transition: background 0.18s ease;
}
.lmi-count:hover {
  background: rgba(255,255,255,0.05);
}
.lmi-count .lmi-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}
.lmi-count.lmi-disp .lmi-dot { background: #f6802c; }
.lmi-count.lmi-apar .lmi-dot { background: #f4c430; }
.lmi-count.lmi-vend .lmi-dot { background: #2e9d4f; }
.lmi-count.lmi-seg  .lmi-dot { background: #9aa4ad; }
.lmi-count div {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}
.lmi-count div strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.lmi-count div span {
  font-size: 0.72rem;
  color: rgba(247,252,255,0.62);
  letter-spacing: 0.02em;
}

/* MANZANA BAR + FILTER PILLS (above plano, unified navy blue bar) */
.lmi-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}
.lmi-filter-pills {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: var(--brand-primary, #064060);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.3rem;
  box-shadow: 0 8px 24px rgba(6, 30, 50, 0.14);
}
.lmi-fp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.lmi-fp:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: none;
  box-shadow: none;
}
.lmi-fp.active {
  background: var(--color-two, #f6802c);
  border-color: var(--color-two, #f6802c);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(246, 128, 44, 0.35);
}
.lmi-fp-sep {
  width: 1px;
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  display: inline-block;
  margin: 0 0.05rem;
}
.lmi-fp i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.lmi-fp-mix {
  background: linear-gradient(135deg, #f6802c 0% 25%, #f4c430 25% 50%, #2e9d4f 50% 75%, #9aa4ad 75% 100%);
}
.lmi-fp-count {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}
.lmi-fp.active .lmi-fp-count { color: #ffffff; }
.lmi-fp:hover .lmi-fp-count { color: rgba(255, 255, 255, 0.9); }

.lmi-toolbar .lmi-select {
  background: #ffffff;
  border: 1px solid #d2d8df;
  color: var(--color-1, #0a2236);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.lmi-toolbar .lmi-select:hover {
  border-color: #b5bec7;
  box-shadow: 0 4px 12px rgba(6, 30, 50, 0.06);
}
.lmi-toolbar .lmi-select option { background: #fff; color: var(--color-1, #0a2236); }

/* Mask the "Conjunto Residencial / Escala 1:500" text baked into the plano image */
.lmi-plano-full::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22%;
  max-width: 280px;
  height: 7%;
  max-height: 70px;
  background: #ffffff;
  z-index: 3;
  pointer-events: none;
  border-radius: 0 6px 0 0;
}

/* ===== Hero Quickfacts INSIDE the hero (frosted glass) ===== */
.hero-content .hero-quickfacts {
  margin: 1.5rem auto 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  max-width: 720px;
}
.hero-content .qf-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.18s ease, transform 0.18s ease;
}
.hero-content .qf-item:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.hero-content .qf-icon {
  font-size: 1.05rem;
  color: var(--color-two, #f6802c);
  flex-shrink: 0;
}
.hero-content .qf-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  white-space: nowrap;
}
.hero-content .qf-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.hero-content .qf-sub {
  font-size: 0.74rem;
  color: #ffffff;
  opacity: 0.88;
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* ===== Navbar — transparente sobre hero (home), blanco al scroll ===== */
.main-nav-component {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, backdrop-filter 0.32s ease;
}
/* Default visible state: white nav on internal pages (Fernanda/Mariana/etc.) */
.main-nav-component:not(.on-home) {
  background: #ffffff;
  border-bottom-color: rgba(6, 30, 50, 0.06);
}
/* On Home (over hero video) — translucent dark overlay with white text */
.main-nav-component.on-home {
  background: linear-gradient(180deg, rgba(6, 32, 48, 0.32) 0%, rgba(6, 32, 48, 0.08) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
/* When scrolled past hero on any page — opaque white nav with subtle shadow */
.main-nav-component.is-scrolled,
.main-nav-component.on-home.is-scrolled {
  background: #ffffff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(6, 30, 50, 0.10);
  box-shadow: 0 4px 18px rgba(6, 30, 50, 0.08);
}

/* Brand logo swap — white on home hero, dark elsewhere */
.brand { position: relative; display: inline-flex; align-items: center; }
.brand-logo { display: block; transition: opacity 0.28s ease; }
.brand-logo-white {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  opacity: 0;
}
.main-nav-component.on-home:not(.is-scrolled) .brand-logo-dark { opacity: 0; }
.main-nav-component.on-home:not(.is-scrolled) .brand-logo-white { opacity: 1; }
.main-nav-component.is-scrolled .brand-logo-dark { opacity: 1; }
.main-nav-component.is-scrolled .brand-logo-white { opacity: 0; }

/* Nav links — white on home hero, dark elsewhere */
.main-nav-component .btn-nav {
  color: var(--color-1);
  transition: color 0.16s ease, opacity 0.16s ease;
}
.main-nav-component.on-home:not(.is-scrolled) .btn-nav {
  color: rgba(255, 255, 255, 0.92);
}
.main-nav-component.on-home:not(.is-scrolled) .btn-nav:hover,
.main-nav-component.on-home:not(.is-scrolled) .btn-nav.active {
  color: var(--brand-accent, #f6802c);
}
.main-nav-component.is-scrolled .btn-nav { color: var(--color-1); }

/* Mobile menu toggle icon color matches state */
.main-nav-component.on-home:not(.is-scrolled) .nav-toggle .icon-font {
  color: #ffffff;
}
.main-nav-component.is-scrolled .nav-toggle .icon-font { color: var(--color-1); }

/* Hamburger plecas color shifts with nav state */
.main-nav-component.on-home:not(.is-scrolled) .brgr-pleca {
  background-color: #ffffff !important;
}
.main-nav-component.is-scrolled .brgr-pleca,
.main-nav-component:not(.on-home) .brgr-pleca {
  background-color: var(--color-1);
}
.brgr-btn:hover .brgr-pleca { opacity: 0.85; }

/* ===== Sliders below hero — more subtle ===== */
.horizontal-scroll-galleries {
  opacity: 0.85;
  filter: saturate(0.92);
}
.horizontal-scroll-galleries .hsg-strip {
  animation-duration: 90s !important;
}
.horizontal-scroll-galleries .hsg-strip.hsg-two {
  animation-duration: 110s !important;
}

/* Hide the standalone TrustBand band (kept in code but visually muted/removed) */
.tb-band,
.trust-band,
.hero-quickfacts-band {
  display: none !important;
}

/* MANZANA BAR (above plano) */
.lmi-mz-bar {
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-end;
}
.lmi-mz-bar .lmi-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
.lmi-mz-bar .lmi-select:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
}
.lmi-mz-bar .lmi-select option { background: var(--color-1); color: #fff; }

/* FILTERS */
.lmi-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  margin-bottom: 1.5rem;
}
.lmi-fchips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.lmi-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  color: var(--neutral-700);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.18s ease;
}
.lmi-chip:hover { border-color: var(--brand-accent); }
.lmi-chip.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.lmi-cdot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.lmi-select {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--brand-primary);
  cursor: pointer;
  outline: none;
}
.lmi-select:focus { border-color: var(--brand-accent); }

/* GRID: plano full width (v4) */
.lmi-section.v4 .lmi-plano-full {
  position: relative;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  padding: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(6, 30, 50, 0.06);
}

/* GRID: plano + detalle */
.lmi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: flex-start;
}
.lmi-plano-wrap {
  position: relative;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(6, 30, 50, 0.06);
}
.lmi-canvas-fit {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.lmi-canvas-fit::after {
  content: '';
  position: absolute;
  left: 0;
  top: 90%;
  width: 26%;
  height: 11%;
  background: #fff;
  pointer-events: none;
  z-index: 1;
}
.lmi-plano-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  pointer-events: none;
}
.lmi-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-500);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  z-index: 10;
}

/* PINS (proporcionales al plano) */
.lmi-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 1.5%;
  aspect-ratio: 1 / 1;
  min-width: 14px;
  min-height: 14px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  padding: 0;
  margin: 0;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.45vw;
  line-height: 1;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.30);
  transition: filter 0.15s ease, box-shadow 0.15s ease;
  z-index: 2;
}
@media (min-width: 1280px) {
  .lmi-pin { font-size: 0.62rem; }
}
@media (max-width: 991px) {
  .lmi-pin { font-size: 1.4vw; }
}
.lmi-pin.interactive { cursor: pointer; }
.lmi-pin.interactive:hover,
.lmi-pin.hover.interactive {
  filter: brightness(1.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.40), 0 0 0 3px rgba(255, 255, 255, 0.65);
  z-index: 5;
}
.lmi-pin.selected {
  box-shadow: 0 6px 18px rgba(246, 128, 44, 0.55), 0 0 0 4px var(--brand-accent-soft);
  z-index: 6;
}
.lmi-pin-num { pointer-events: none; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); }
.lmi-pin-ring {
  position: absolute;
  inset: -28%;
  border-radius: 50%;
  background: var(--brand-accent);
  opacity: 0.30;
  pointer-events: none;
  animation: lmiPinPulse 1.8s ease-out infinite;
  z-index: -1;
}
@keyframes lmiPinPulse {
  0%   { transform: scale(0.85); opacity: 0.55; }
  100% { transform: scale(1.7);  opacity: 0; }
}

/* DETAIL panel inline (sticky) */
.lmi-detail {
  position: sticky;
  top: 5.5rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  box-shadow: 0 8px 28px rgba(6, 30, 50, 0.06);
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
}

/* MOBILE LEGEND */
.lmi-mobile-legend {
  display: none;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--neutral-700);
}
.lmi-mobile-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.lmi-mobile-legend i {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}

@media (max-width: 991px) {
  .lmi-section { padding: 4rem 0; }
  .lmi-counts { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .lmi-count { padding: 0.85rem 1rem; }
  .lmi-count strong { font-size: 1.55rem; }
  .lmi-grid { grid-template-columns: 1fr; }
  .lmi-detail { position: relative; top: auto; max-height: none; }
  .lmi-plano-wrap { padding: 1rem; }
  .lmi-mobile-legend { display: flex; }
}
@media (max-width: 640px) {
  .lmi-filters { padding: 0.6rem 0.7rem; }
  .lmi-chip { padding: 0.35rem 0.7rem; font-size: 0.74rem; }
  .lmi-count { gap: 0.55rem; padding: 0.7rem 0.85rem; }
  .lmi-count strong { font-size: 1.3rem; }
  .lmi-count span:not(.lmi-dot) { font-size: 0.68rem; }
}


/* ============================================== */
/* ===== LOT MAP V4 — Plano fullwidth + drawer == */
/* ============================================== */

.lmi-section.v4 .lmi-canvas-fit {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: visible;
  background: #fff;
}
.lmi-section.v4 .lmi-pin {
  width: 1.3%;
  min-width: 16px;
  min-height: 16px;
  font-size: 0.45vw;
}
@media (min-width: 1280px) {
  .lmi-section.v4 .lmi-pin { font-size: 0.62rem; min-width: 18px; min-height: 18px; }
}
@media (max-width: 991px) {
  .lmi-section.v4 .lmi-pin { font-size: 1.3vw; min-width: 14px; min-height: 14px; }
}

/* TOOLTIP que sigue al cursor */
.lmi-tooltip {
  position: absolute;
  transform: translate(12px, -50%);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(6, 30, 50, 0.28), 0 0 0 1px rgba(6, 30, 50, 0.06);
  padding: 0.85rem 1.05rem;
  min-width: 200px;
  max-width: 290px;
  pointer-events: none;
  z-index: 50;
  animation: lmiTipIn 0.15s ease;
}
.lmi-tooltip.is-sticky {
  pointer-events: auto;
  z-index: 70;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 18px 48px rgba(6, 30, 50, 0.35), 0 0 0 1px rgba(6, 30, 50, 0.08);
}
.lmi-tt-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(6, 64, 96, 0.06);
  border: none;
  color: var(--brand-deep, #062e44);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.lmi-tt-close:hover { background: rgba(6, 64, 96, 0.14); transform: rotate(90deg); }
.lmi-tt-close .icon-font { font-size: 0.95rem; }
@keyframes lmiTipIn {
  from { opacity: 0; transform: translate(8px, -50%); }
  to { opacity: 1; transform: translate(12px, -50%); }
}
.lmi-tt-tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.lmi-tt-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 0.55rem;
}
.lmi-tt-title strong { font-weight: 700; color: var(--brand-deep); }
.lmi-tt-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--neutral-500);
  margin-bottom: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}
.lmi-tt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.45rem;
  margin: 0.4rem 0 0.65rem;
}
.lmi-tt-cell {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  padding: 0.4rem 0.5rem;
  background: rgba(6, 64, 96, 0.04);
  border-radius: 7px;
}
.lmi-tt-label {
  font-size: 0.6rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--neutral-500);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.lmi-tt-val {
  font-size: 0.78rem;
  color: var(--brand-deep, #062e44);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.lmi-tt-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.lmi-tt-hint {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--neutral-200);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--brand-accent);
  font-weight: 600;
}
.lmi-tt-hint .icon-font { font-size: 0.9rem; }
.lmi-tt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 1rem;
  background: var(--brand-accent, #f6802c);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(246, 128, 44, 0.35);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.lmi-tt-cta:hover {
  background: var(--brand-accent-dark, #aa3706);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(246, 128, 44, 0.45);
}
.lmi-tt-cta .icon-font { font-size: 0.95rem; }
.lmi-tt-cta-secondary {
  background: rgba(244, 196, 48, 0.18);
  color: #946a00;
  box-shadow: none;
}
.lmi-tt-cta-secondary:hover {
  background: rgba(244, 196, 48, 0.28);
  box-shadow: none;
}
.lmi-tt-msg {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: var(--neutral-500);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .lmi-tooltip { min-width: 220px; max-width: 280px; }
  .lmi-tooltip.is-sticky { min-width: 240px; }
  .lmi-tt-grid { grid-template-columns: 1fr 1fr; }
}

/* LEGEND + FILTER + COUNTER OVERLAY sobre el plano (bottom-right) */
.lmi-overlay-legend {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.85rem 0.85rem 0.75rem;
  background: rgba(14, 30, 46, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  box-shadow: 0 14px 36px rgba(6, 16, 28, 0.30);
  z-index: 6;
  min-width: 200px;
}
.lmi-overlay-title {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.45rem;
  padding-left: 0.25rem;
}
.lmi-leg-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.55rem;
  background: transparent;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  color: #fff;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: background 0.16s ease;
}
.lmi-leg-row:hover {
  background: rgba(255, 255, 255, 0.06);
}
.lmi-leg-row.active {
  background: rgba(246, 128, 44, 0.18);
  outline: 1px solid rgba(246, 128, 44, 0.55);
}
.lmi-leg-row i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.lmi-leg-allmix {
  background: linear-gradient(135deg, #f6802c 0% 25%, #f4c430 25% 50%, #2e9d4f 50% 75%, #9aa4ad 75% 100%);
}
.lmi-leg-label {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.lmi-leg-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.lmi-leg-row.active .lmi-leg-count { color: var(--color-two, #f6802c); }

@media (max-width: 720px) {
  .lmi-overlay-legend {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 1rem;
    min-width: 0;
  }
}

/* DRAWER lateral derecho */
.lmi-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 30, 50, 0.55);
  backdrop-filter: blur(4px);
  z-index: 9990;
  animation: lmiBackdropIn 0.25s ease;
}
@keyframes lmiBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lmi-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  background: #ffffff;
  z-index: 9995;
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  overflow-y: auto;
  box-shadow: -18px 0 48px rgba(6, 30, 50, 0.28);
  animation: lmiDrawerIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes lmiDrawerIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.lmi-drawer-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--neutral-200);
  background: #fff;
  color: var(--brand-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.15s ease;
}
.lmi-drawer-close:hover {
  background: var(--brand-accent);
  color: #fff;
  border-color: var(--brand-accent);
}

.lmi-drawer-status {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lmi-drawer-head { display: flex; flex-direction: column; gap: 0.35rem; }
.lmi-drawer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--brand-primary);
  letter-spacing: -0.03em;
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.lmi-drawer-title strong {
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 2.6rem;
}
.lmi-drawer-mz {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-500);
  margin-top: 0.35rem;
  letter-spacing: 0;
}

.lmi-drawer-price {
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, var(--brand-accent-soft) 0%, #fff 100%);
  border: 1px solid rgba(246, 128, 44, 0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.lmi-drawer-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lmi-drawer-price-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.lmi-drawer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.lmi-drawer-cell {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lmi-drawer-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 1.25rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.40);
  transition: all 0.18s ease;
  margin-top: 0.4rem;
}
.lmi-drawer-cta-wa:hover {
  background: #1ea857;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}
.lmi-drawer-cta-wa img { width: 1.15rem; filter: invert(1); }

/* Primary CTA — Solicitar información (no WhatsApp) */
.lmi-drawer-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.1rem 1.4rem;
  background: linear-gradient(135deg, var(--brand-accent, #f6802c) 0%, var(--brand-accent-dark, #aa3706) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  box-shadow: 0 12px 28px rgba(246, 128, 44, 0.40);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  margin-top: 0.4rem;
  width: 100%;
}
.lmi-drawer-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(246, 128, 44, 0.50);
}
.lmi-drawer-cta-primary .icon-font { font-size: 1.15rem; }

/* Lead modal success state */
.sm-lead-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0.5rem 0.5rem;
  text-align: center;
}
.sm-lead-success-icon .icon-font {
  font-size: 3rem;
  color: #2e9d4f;
}
.sm-lead-success p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--brand-deep, #062e44);
  line-height: 1.55;
  font-family: 'Montserrat', sans-serif;
  max-width: 360px;
}
.sm-lead-success-close {
  margin-top: 0.85rem;
  background: var(--brand-accent, #f6802c);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.sm-lead-success-close:hover {
  background: var(--brand-accent-dark, #aa3706);
  transform: translateY(-1px);
}


.lmi-drawer-cta-second {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.1rem;
  background: transparent;
  border: 1.5px solid var(--brand-primary);
  color: var(--brand-primary);
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.18s ease;
}
.lmi-drawer-cta-second:hover {
  background: var(--brand-primary);
  color: #fff;
}
.lmi-drawer-fine {
  font-size: 0.72rem;
  color: var(--neutral-500);
  line-height: 1.5;
  margin: 0.25rem 0 0;
  font-style: italic;
}

@media (max-width: 640px) {
  .lmi-drawer { padding: 1.5rem 1.25rem 2rem; }
  .lmi-drawer-title { font-size: 1.6rem; }
  .lmi-drawer-title strong { font-size: 2.1rem; }
  .lmi-drawer-price-val { font-size: 1.65rem; }
  .lmi-drawer-grid { grid-template-columns: 1fr; }
  .lmi-overlay-legend { bottom: 0.85rem; right: 0.85rem; font-size: 0.68rem; gap: 0.4rem 0.65rem; padding: 0.45rem 0.7rem; }
  .lmi-tooltip { min-width: 140px; padding: 0.65rem 0.8rem; }
}


/* ============================================================
   PACKAGE A — LIMPIEZA & FUNDAMENTOS (Feb 2026)
   ============================================================ */

/* Hide legacy floating UI (now replaced by single FAB) */
.fixed-promo-bar { display: none !important; }
.floating-contact { display: none !important; }

/* ---- FAB WhatsApp (premium minimal, único elemento flotante) ---- */
.sm-fab-whatsapp {
  position: fixed;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  width: clamp(3.25rem, 3.5vw, 3.75rem);
  height: clamp(3.25rem, 3.5vw, 3.75rem);
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.40),
    0 2px 8px rgba(0, 0, 0, 0.10);
  z-index: 9998;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.25s ease;
  text-decoration: none;
}
.sm-fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.30);
  z-index: -1;
  animation: smFabPulse 2.4s ease-out infinite;
}
.sm-fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 16px 40px rgba(37, 211, 102, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.15);
}
.sm-fab-whatsapp img {
  width: 55%;
  height: auto;
  filter: brightness(0) invert(1);
}
@keyframes smFabPulse {
  0%   { transform: scale(0.95); opacity: 0.55; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---- Section spacing tokens override (consistent vertical rhythm) ---- */
.padding-large {
  padding-top: var(--space-section-lg);
  padding-bottom: var(--space-section-lg);
}
.padding-medium {
  padding-top: var(--space-element-md);
  padding-bottom: var(--space-element-md);
}

/* ---- Ultra-wide grace: subtle vertical guides on >1600px ---- */
@media (min-width: 1600px) {
  .lmi-section,
  .locmap-section,
  .modelos,
  .proyecto {
    position: relative;
  }
}

/* ---- Horizontal scroll strips in hero — visible across all breakpoints to seal the seam ---- */


/* ============================================================
   PACKAGE B — REESTRUCTURA DE SECCIONES (Feb 2026)
   ============================================================ */

/* HERO LIMPIO: 1 CTA + slider restaurado abajo */
.hero-cta-row.hero-cta-single { justify-content: center; }
/* Hero strips de imágenes restauradas — visible en desktop */

/* QUICK FACTS BAND debajo de TrustBand */
.hero-quickfacts-band {
  background: var(--neutral-50);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}
.hero-quickfacts-band .hero-quickfacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1rem;
  margin: 0;
}

/* SUSTENTABLE STRIPE (dentro de Amenidades) */
.sustentable-stripe {
  margin-top: 0;
  margin-bottom: 3rem;
  padding: 3rem clamp(2rem, 4vw, 3.5rem) 3.5rem;
  background: transparent;
  border-radius: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sustentable-stripe::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, var(--color-1) 0%, rgba(6,32,48,0.95) 18%, rgba(6,32,48,0.78) 40%, rgba(6,32,48,0.65) 100%),
    url('/images/real/sm-amenidad-paisaje-02-lg.webp');
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right center;
  background-size: cover, 80% auto;
  opacity: 0.7;
  filter: blur(2px) saturate(0.85);
  pointer-events: none;
  z-index: 0;
}
.sustentable-stripe > * { position: relative; z-index: 1; }
.sustentable-stripe-head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}
.sustentable-stripe-head .sm-h3 { color: #fff; }
.sustentable-stripe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
}
.sustentable-stripe-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.sustentable-stripe-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.sustentable-stripe-item img {
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.sustentable-stripe-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255,255,255,0.92);
}

/* MASTERPLAN INTERACTIVO EDGE-TO-EDGE */
.lmi-section .page-padding {
  padding-left: clamp(1rem, 2vw, 2rem);
  padding-right: clamp(1rem, 2vw, 2rem);
}
.lmi-section .container-large { max-width: 100% !important; }

/* UBICACIÓN ESTRATÉGICA EDGE-TO-EDGE */
.locmap-section .page-padding {
  padding-left: clamp(1rem, 2vw, 2rem);
  padding-right: clamp(1rem, 2vw, 2rem);
}
.locmap-section .container-large { max-width: 100% !important; }
.locmap-v3 .locmap-grid {
  grid-template-columns: minmax(320px, 400px) 1fr;
  max-width: 100%;
}
@media (min-width: 1600px) {
  .locmap-v3 .locmap-canvas-real { min-height: 44rem !important; height: 44rem !important; }
  .locmap-v3 .locmap-controls { max-height: 44rem !important; }
}


/* ============================================================
   PACKAGE C — WOW MOMENTS (Feb 2026)
   ============================================================ */

/* ---- C1) ARCHITECTURAL LED GLOW on Masterplan (subtle, no dimming) ---- */
.lmi-canvas-fit.is-focused .lmi-plano-img {
  /* No dimming on the plano image */
}
.lmi-canvas-fit .lmi-plano-img {
  transition: filter 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lmi-canvas-fit.is-focused .lmi-pin {
  /* No dimming on other pins */
}
.lmi-canvas-fit .lmi-pin {
  transition:
    filter 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lmi-canvas-fit.is-focused .lmi-pin.hover,
.lmi-canvas-fit.is-focused .lmi-pin.selected {
  filter: saturate(1.15) brightness(1.08);
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.95),
    0 0 18px 6px currentColor,
    0 0 38px 14px rgba(246, 128, 44, 0.55),
    0 0 60px 24px rgba(246, 128, 44, 0.30);
  z-index: 50;
}
.lmi-canvas-fit.is-focused .lmi-pin.s-disponible.hover,
.lmi-canvas-fit.is-focused .lmi-pin.s-disponible.selected {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.95),
    0 0 22px 8px rgba(246, 128, 44, 0.9),
    0 0 48px 18px rgba(246, 128, 44, 0.45),
    0 0 80px 30px rgba(246, 128, 44, 0.22);
}
.lmi-canvas-fit.is-focused .lmi-pin.s-apartado.hover,
.lmi-canvas-fit.is-focused .lmi-pin.s-apartado.selected {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.95),
    0 0 22px 8px rgba(245, 197, 24, 0.9),
    0 0 48px 18px rgba(245, 197, 24, 0.42),
    0 0 78px 30px rgba(245, 197, 24, 0.20);
}
/* Keep the mask over "Conjunto Residencial / Escala 1:500" visible even when focused */
.lmi-canvas-fit.is-focused::after { display: block; }

/* ---- C2) DYNAMIC ROUTE PULSE on Ubicación polylines ---- */
.leaflet-overlay-pane svg path {
  transition: stroke-width 0.25s ease, stroke-opacity 0.25s ease;
}
@keyframes locmapDashFlow {
  to { stroke-dashoffset: -24; }
}
.locmap-leaflet .leaflet-overlay-pane svg path[stroke-dasharray]:not([stroke-dasharray="0"]) {
  animation: locmapDashFlow 1.6s linear infinite;
}

/* ---- C3) SERIF TYPOGRAPHIC FADE — toned down, less contrast ---- */
.serif-accent {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  display: inline-block;
  color: var(--brand-accent);
}
[data-reveal] .serif-accent,
.reveal .serif-accent {
  opacity: 0;
  transform: translateY(0.1em);
  animation: smSerifFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
[data-reveal].is-revealed .serif-accent {
  animation: smSerifFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
@keyframes smSerifFade {
  0%   { opacity: 0; transform: translateY(0.1em); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---- C4) TESTIMONIALS EDITORIAL ---- */
.testimonials-editorial .testimonials-grid,
.testimonials-editorial .testimonials-track {
  display: none !important;
}
.testimonials-editorial .editorial-quote {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem);
}
.testimonials-editorial .editorial-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 8vw, 9rem);
  line-height: 0.7;
  color: var(--brand-accent);
  opacity: 0.14;
  position: absolute;
  top: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}
.testimonials-editorial .editorial-quote-text {
  position: relative;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.2vw + 0.85rem, 1.85rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--brand-primary);
}
.testimonials-editorial .editorial-quote-text strong {
  font-weight: 600;
  color: var(--brand-accent);
  font-style: italic;
}
.testimonials-editorial .editorial-quote-attr {
  margin-top: 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.testimonials-editorial .editorial-quote-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--brand-accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.testimonials-editorial .editorial-quote-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
}
.testimonials-editorial .editorial-quote-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--neutral-500);
}
.testimonials-editorial .editorial-quote-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.testimonials-editorial .editorial-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--neutral-300);
  background: transparent;
  color: var(--brand-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.testimonials-editorial .editorial-nav-btn:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
  transform: translateY(-2px);
}
.testimonials-editorial .editorial-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}
.testimonials-editorial .editorial-dots {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.testimonials-editorial .editorial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--neutral-300);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.testimonials-editorial .editorial-dot.active {
  background: var(--brand-accent);
  width: 1.75rem;
  border-radius: 999px;
}
.testimonials-editorial .editorial-quote-content {
  animation: smEditorialFade 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes smEditorialFade {
  from { opacity: 0; transform: translateY(8px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}


/* ============================================================
   LEAD CAPTURE MODAL (GHL integration)
   ============================================================ */
.sm-lead-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 30, 50, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  z-index: 10000;
  animation: smModalFadeIn 0.25s ease;
}
@keyframes smModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.sm-lead-modal {
  position: relative;
  width: 100%;
  max-width: 28rem;
  background: #fff;
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  animation: smModalSlideUp 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes smModalSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.sm-lead-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--brand-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.sm-lead-modal-close:hover { background: var(--neutral-100); }
.sm-lead-modal-head {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sm-lead-modal-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--neutral-500);
  margin: 0.25rem 0 0;
}
.sm-lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sm-lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.sm-lead-field > span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-primary);
}
.sm-lead-field input {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--neutral-200);
  border-radius: 10px;
  background: #fff;
  color: var(--neutral-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sm-lead-field input:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(246, 128, 44, 0.15);
}
.sm-lead-error {
  background: #fee2e2;
  color: #991b1b;
  font-size: 0.82rem;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  border: 1px solid #fecaca;
}
.sm-lead-submit {
  margin-top: 0.5rem;
  background: var(--brand-accent, #f6802c);
  color: #fff;
  border: none;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 8px 22px rgba(246, 128, 44, 0.35);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, opacity 0.2s ease;
}
.sm-lead-submit:hover:not(:disabled) {
  background: var(--brand-accent-dark, #aa3706);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(246, 128, 44, 0.5);
}
.sm-lead-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.sm-lead-submit img { width: 1.1rem; filter: brightness(0) invert(1); }
.sm-lead-privacy {
  margin-top: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--neutral-500);
  text-align: center;
}


/* ===========================================================
   SUNSET GALLERY — Tu Roof Garden Privado (vista al cielo)
   =========================================================== */
.sunset-section {
  background:
    linear-gradient(180deg,
      rgba(247, 251, 255, 0.95) 0%,
      rgba(220, 234, 246, 0.92) 35%,
      rgba(190, 215, 235, 0.88) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(31, 151, 218, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(246, 128, 44, 0.08), transparent 50%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.sunset-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.5) 0px, transparent 2px),
    radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.4) 0px, transparent 2px),
    radial-gradient(circle at 60% 8%, rgba(255, 255, 255, 0.35) 0px, transparent 3px);
  background-size: 220px 180px, 280px 200px, 320px 240px;
  opacity: 0.6;
  pointer-events: none;
}
.sunset-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  max-width: 720px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.sunset-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}
.sunset-tile {
  background-size: cover;
  background-position: center;
  background-color: var(--neutral-200);
  border: none;
  border-radius: 14px;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  padding: 0;
}
.sunset-tile-0 { grid-column: span 7; grid-row: span 2; }
.sunset-tile-1 { grid-column: span 5; grid-row: span 1; }
.sunset-tile-2 { grid-column: span 5; grid-row: span 1; }
.sunset-tile-3 { grid-column: span 4; grid-row: span 1; }
.sunset-tile-4 { grid-column: span 4; grid-row: span 1; }
.sunset-tile-5 { grid-column: span 4; grid-row: span 1; }
.sunset-tile-0:nth-child(n+5),
.sunset-tile-1:nth-child(n+5),
.sunset-tile-2:nth-child(n+5),
.sunset-tile-3:nth-child(n+5) { grid-column: span 4; grid-row: span 1; }

/* Variante de 7 tiles: row 3 con 4 tiles de 3 cols cada uno (12 cols total),
   sin alterar la altura de la sección (sigue siendo 3 filas × 180px). */
.sunset-grid-7 .sunset-tile-3,
.sunset-grid-7 .sunset-tile-4,
.sunset-grid-7 .sunset-tile-5,
.sunset-grid-7 .sunset-tile-6 {
  grid-column: span 3;
  grid-row: span 1;
}
.sunset-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(246, 128, 44, 0.22);
}
.sunset-tile-zoom {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.5rem; height: 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.sunset-tile:hover .sunset-tile-zoom {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .sunset-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .sunset-tile-0, .sunset-tile-1, .sunset-tile-2, .sunset-tile-3 { grid-column: span 1; grid-row: span 1; }
  .sunset-tile-0 { grid-column: span 2; grid-row: span 2; }
  /* 7-tile variant en mobile: todos los tiles secundarios ocupan 1 col */
  .sunset-grid-7 .sunset-tile-4,
  .sunset-grid-7 .sunset-tile-5,
  .sunset-grid-7 .sunset-tile-6 { grid-column: span 1; grid-row: span 1; }
}

/* ===========================================================
   HECHO A MANO — Detalles autorales
   =========================================================== */
.craft-section {
  background: var(--neutral-50);
  padding: 6rem 0;
  position: relative;
}
.craft-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  max-width: 760px;
  margin-bottom: 3rem;
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.craft-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.craft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(6, 30, 50, 0.10);
}
.craft-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--neutral-100);
}
.craft-body {
  padding: 1.75rem 1.75rem 2rem;
}
.craft-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--color-1);
  margin: 0 0 0.5rem;
}
.craft-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--body-font);
  margin: 0;
}
@media (max-width: 768px) {
  .craft-grid { grid-template-columns: 1fr; }
}

/* === Proyecto block — unified hero with subtitle + dual CTA === */
.proyecto-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: rgba(247, 252, 255, 0.88);
  margin: 0.85rem 0 0;
}
.proyecto-subtitle .serif-accent {
  font-family: 'PP Editorial Old', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-accent);
}
.proyecto-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.btn-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.65rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn-ghost-link:hover {
  color: var(--brand-accent);
  border-bottom-color: var(--brand-accent);
}
.btn-ghost-link:hover .icon-font {
  transform: translateX(3px);
}
.btn-ghost-link .icon-font {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

/* === Proyecto: bloque compacto (label + h2 + p juntos) con botón al costado === */
.proyecto-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.proyecto-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.proyecto-text .text-label {
  margin-bottom: 0.4rem;
}
.proyecto-text .sm-h2 {
  margin: 0;
}
.proyecto-paragraph {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(247, 252, 255, 0.85);
  margin: 0.5rem 0 0;
  max-width: 38ch;
}
.proyecto-action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .proyecto-block { align-items: flex-start; }
  .proyecto-action { width: 100%; }
}

/* === Cards modelos — más compactas === */
.modelos .padding-vertical { padding-top: 0; padding-bottom: 6rem; }
.modelos ._2-grid-col { gap: 1.5rem; }
.modelo-card-link {
  max-height: 540px;
}
.modelo-card-link img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.modelo-card-link_leyend {
  padding: 1.25rem 1.5rem !important;
}
.modelo-card-link_leyend .sm-h3 {
  font-size: 1.65rem !important;
}
.modelo-card-link_leyend .modelo-card-specs {
  font-size: 0.78rem !important;
  gap: 0.85rem !important;
}
@media (max-width: 768px) {
  .modelo-card-link { max-height: 420px; }
}

/* ===========================================================
   PILL BUTTONS — Alternativa elegante a los .btn cuadrados
   =========================================================== */

/* PRIMARY pill — naranja, fondo sólido, redondeado completo */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem 0.85rem 1.8rem;
  background: var(--brand-accent, #f6802c);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.28s ease;
  box-shadow: 0 6px 18px rgba(246, 128, 44, 0.22);
  white-space: nowrap;
}
.btn-pill:hover {
  background: #ff8e3c;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(246, 128, 44, 0.38);
}
.btn-pill:active { transform: translateY(0); }
.btn-pill .icon-font {
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  transition: transform 0.22s ease 0s;
}
.btn-pill:hover .icon-font {
  transform: translateX(3px);
  transition-delay: 60ms;   /* bg flashes first, then icon slides */
}

/* GHOST pill — outline blanco translúcido para fondos oscuros */
.btn-pill-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem 0.85rem 1.8rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.btn-pill-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}
.btn-pill-ghost .icon-font {
  font-size: 1.05rem;
  transition: transform 0.22s ease 0s;
}
.btn-pill-ghost:hover .icon-font {
  transform: translateX(3px);
  transition-delay: 60ms;
}

/* OUTLINE pill — borde naranja, fondo blanco — para fondos claros */
.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem 0.85rem 1.8rem;
  background: #ffffff;
  color: var(--brand-accent, #f6802c);
  border: 1.5px solid var(--brand-accent, #f6802c);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.28s ease;
}
.btn-pill-outline:hover {
  background: var(--brand-accent, #f6802c);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(246, 128, 44, 0.32);
}
.btn-pill-outline .icon-font {
  font-size: 1.05rem;
  transition: transform 0.22s ease 0s;
}
.btn-pill-outline:hover .icon-font {
  transform: translateX(3px);
  transition-delay: 60ms;
}

/* Big variant for hero CTA */
.btn-pill.big,
.btn-pill-ghost.big,
.btn-pill-outline.big {
  padding: 1.05rem 2rem 1.05rem 2.2rem;
  font-size: 1rem;
}
/* Slim variant for navbar */
.btn-pill.btn-pill-nav {
  padding: 0.55rem 1.1rem 0.55rem 1.3rem;
  font-size: 0.82rem;
  letter-spacing: 0.005em;
  box-shadow: 0 4px 12px rgba(246, 128, 44, 0.18);
}
.btn-pill.btn-pill-nav .icon-font { font-size: 0.95rem; }

/* ===========================================================
   AMENIDADES — Layout denso con foto + lista compacta
   =========================================================== */
.amenidades-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.amenidades-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}
.amenidades-photo {
  width: 100%;
  height: 26rem;
  background-size: cover;
  background-position: center 45%;
  background-color: var(--color-1);
}
.amenidades-photo-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.1rem;
  background: rgba(6, 32, 48, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.16);
  max-width: max-content;
}
.amenidades-photo-tag .icon-font {
  color: var(--brand-accent);
  font-size: 1.15rem;
}
.amenidades-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.amenidades-content .sm-h2 { margin: 0; }
.amenidades-intro {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(247, 252, 255, 0.82);
  margin: 0.25rem 0 0.75rem;
  max-width: 42ch;
}
.amenidades-intro strong { color: #fff; font-weight: 700; }

.amenidades-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.amenidades-list-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease;
}
.amenidades-list-item:hover {
  transform: translateX(3px);
}
.amenidades-list-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 128, 44, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(246, 128, 44, 0.22);
}
.amenidades-list-icon img {
  width: 1.45rem;
  height: 1.45rem;
  filter: brightness(0) invert(1);
  /* iconos en blanco puro */
  opacity: 0.92;
}
.amenidades-list-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}
.amenidades-list-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.25;
}
.amenidades-list-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .amenidades-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .amenidades-photo { height: 22rem; }
  .amenidades-list { grid-template-columns: 1fr; }
}

/* ===========================================================
   VTOUR — Grid 2 cols: Video (izq, tamaño original) + Specs (der, complemento)
   =========================================================== */
.vtour-grid {
  display: grid;
  grid-template-columns: minmax(0, 980px) 1fr;
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.vtour-grid .vtour-stage {
  margin: 0;
  width: 100%;
  height: 100%;
}
.vtour-specs {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.75rem 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.vtour-specs-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--brand-accent);
  flex-wrap: wrap;
}
.vtour-specs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff !important;
  background-color: var(--color-two);
  border: 2px solid var(--color-two);
  border-radius: 0;
  text-decoration: none;
  transition: filter 0.2s ease-in-out;
  white-space: nowrap;
  line-height: 1;
}
.vtour-specs-cta:hover { filter: brightness(85%); }
.vtour-specs-cta .icon-font { font-size: 0.95rem; }
.vtour-specs-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.vtour-specs-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.vtour-specs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.vtour-specs-list li {
  display: grid;
  grid-template-columns: 1.6rem 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
  transition: background 0.2s ease;
}
.vtour-specs-list li:last-child { border-bottom: none; }
.vtour-specs-list li.highlight {
  margin-top: 0.4rem;
  padding: 0.85rem 0.9rem;
  background: rgba(246, 128, 44, 0.12);
  border: 1px solid rgba(246, 128, 44, 0.32);
  border-radius: 12px;
}
.vtour-specs-list li.highlight .vtour-specs-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-accent);
}
.vtour-specs-icon {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
}
.vtour-specs-list li.highlight .vtour-specs-icon { color: var(--brand-accent); }
.vtour-specs-label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.vtour-specs-list li.highlight .vtour-specs-label { color: #fff; font-weight: 600; }
.vtour-specs-value {
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.vtour-specs-extras {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.vtour-specs-extra {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}
.vtour-specs-extra .icon-font {
  color: var(--brand-accent);
  font-size: 1rem;
}

@media (max-width: 991px) {
  .vtour-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .vtour-grid .vtour-stage { min-height: 320px; }
  .vtour-section::after { display: none; }
}

/* ===========================================================
   LOT MAP — Select de manzanas integrado en la barra de filtros
   =========================================================== */
.lmi-fp-select-wrap {
  cursor: pointer;
  position: relative;
  padding: 0.5rem 0.75rem 0.5rem 0.75rem;
}
.lmi-fp-select-wrap:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.lmi-fp-mz-icon {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
}
.lmi-fp-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: inherit;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  padding-right: 1rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='rgba(255,255,255,0.6)' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 8px;
}
.lmi-fp-select option { background: var(--brand-primary); color: #fff; }

/* ===========================================================
   FLOATING URGENCY CTA — esquina inferior derecha del plano
   =========================================================== */
.lmi-plano-full { position: relative; }
.lmi-floating-cta {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(135deg, #f6802c 0%, #ff9b4c 100%);
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(246, 128, 44, 0.42), 0 2px 6px rgba(6, 30, 50, 0.18);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  z-index: 10;
  animation: lmiFloatIn 0.5s 0.3s ease-out both, lmiPulseGlow 3.5s 1s ease-in-out infinite;
  pointer-events: none;
  max-width: calc(100% - 2.5rem);
}
.lmi-floating-cta strong {
  font-weight: 700;
  color: #ffffff;
}
.lmi-floating-cta-dot {
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
  animation: lmiDotPulse 1.6s ease-in-out infinite;
}
.lmi-floating-cta-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  line-height: 1.3;
}
@keyframes lmiFloatIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lmiPulseGlow {
  0%, 100% { box-shadow: 0 12px 32px rgba(246, 128, 44, 0.42), 0 2px 6px rgba(6, 30, 50, 0.18); }
  50%      { box-shadow: 0 18px 44px rgba(246, 128, 44, 0.62), 0 2px 6px rgba(6, 30, 50, 0.18); }
}
@keyframes lmiDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.7; }
}
@media (max-width: 640px) {
  .lmi-floating-cta {
    bottom: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    max-width: none;
    padding: 0.7rem 1rem;
    font-size: 0.78rem;
    justify-content: center;
    text-align: center;
  }
}

/* Hero subline — force single line */
.hero-subline {
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
}
@media (max-width: 767px) {
  .hero-subline { white-space: normal; }
}


/* ===========================================================
   TYPOGRAPHY UNIFICATION — All section blocks match Proyecto
   Eyebrow + H2 + paragraph share the same scale & spacing
   =========================================================== */

/* All section heads — consistent flex layout & gap */
.modelos-head-text,
.proyecto-block .proyecto-text,
.locmap-head,
.sunset-head,
.craft-head,
.vtour-head,
.calc-head,
.amenidades-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Eyebrow (text-label) — already normalized at line ~4448 */

/* H2 — unified margin */
.locmap-head .sm-h2,
.sunset-head .sm-h2,
.craft-head .sm-h2,
.vtour-head .sm-h2,
.calc-head .sm-h2,
.modelos-head-text .sm-h2,
.amenidades-content .sm-h2 { margin: 0; }

/* Paragraph under H2 — match .proyecto-paragraph */
.locmap-head p,
.sunset-head p,
.craft-head p,
.vtour-head p,
.calc-head p,
.amenidades-content p,
.modelos-intro {
  font-size: 1rem !important;
  line-height: 1.55 !important;
  margin: 0.5rem 0 0 !important;
  max-width: 48ch;
}

/* Dark backgrounds (navy) → softer white text */
.locmap-head p,
.vtour-head p,
.modelos-intro,
.amenidades-content p { color: rgba(247, 252, 255, 0.85) !important; }

/* Light backgrounds → muted neutral */
.sunset-head p,
.craft-head p,
.calc-head p { color: var(--neutral-500) !important; }

@media (max-width: 767px) {
  .locmap-head p,
  .sunset-head p,
  .craft-head p,
  .vtour-head p,
  .calc-head p,
  .amenidades-content p,
  .modelos-intro { font-size: 0.92rem !important; }
}


/* VTour — stage column wraps video + perks so air below video gets filled */
.vtour-stage-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.vtour-stage-col .vtour-perks {
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===========================================================
   MODELO — PLANTAS INTERACTIVAS (sección unificada con tabs)
   =========================================================== */
.mpi-section {
  background: var(--neutral-50);
  padding: 5rem 0 4rem;
  position: relative;
}
.mpi-head {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 760px;
  margin-bottom: 1.25rem;
}
.mpi-head .modelos-intro {
  color: var(--neutral-500) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  margin: 0.25rem 0 0 !important;
}
.mpi-head .modelos-intro strong { color: var(--color-1); font-weight: 600; }
.mpi-head .sm-h2 { margin: 0; }

.mpi-specs-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  box-shadow: 0 6px 22px rgba(6, 30, 50, 0.06);
}
.mpi-spec {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.5rem;
  border-right: 1px solid var(--neutral-200);
}
.mpi-spec:last-child { border-right: none; }
.mpi-spec .icon-font {
  font-size: 1.5rem;
  color: var(--brand-accent);
  background: var(--brand-accent-soft);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mpi-spec-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-1);
  line-height: 1.1;
}
.mpi-spec-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neutral-500);
  margin-top: 0.15rem;
}

.mpi-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.mpi-tab {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--neutral-700);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mpi-tab:hover {
  border-color: var(--tab-accent, var(--brand-accent));
  transform: translateY(-1px);
}
.mpi-tab.active {
  background: var(--color-1);
  border-color: var(--color-1);
  color: #fff;
}
.mpi-tab-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--tab-accent, var(--brand-accent));
  opacity: 0.85;
}
.mpi-tab.active .mpi-tab-num { color: var(--tab-accent, var(--brand-accent)); opacity: 1; }

.mpi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.mpi-plano {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 36px rgba(6, 30, 50, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 420px;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mpi-plano:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(6, 30, 50, 0.14);
}
.mpi-plano img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
}
.mpi-plano-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  background: rgba(6, 30, 50, 0.85);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.mpi-plano-badge .icon-font { font-size: 1rem; }

.mpi-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mpi-list-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--neutral-200);
}
.mpi-list-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: var(--brand-accent);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.mpi-list-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-1);
  margin: 0;
}
.mpi-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mpi-items li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--neutral-700);
  border-bottom: 1px solid var(--neutral-200);
}
.mpi-items li:last-child { border-bottom: none; }
.mpi-items li .icon-font { font-size: 1.15rem; flex-shrink: 0; }

@media (max-width: 991px) {
  .mpi-specs-strip { grid-template-columns: repeat(2, 1fr); padding: 1rem; }
  .mpi-spec { border-right: none; padding: 0.5rem; }
  .mpi-grid { grid-template-columns: 1fr; }
  .mpi-plano { min-height: 320px; padding: 1rem; }
}
@media (max-width: 600px) {
  .mpi-section { padding: 3rem 0; }
  .mpi-specs-strip { grid-template-columns: 1fr 1fr; }
  .mpi-tab { padding: 0.55rem 0.9rem; font-size: 0.8rem; }
}

/* ===========================================================
   MODELO — TOUR 3D INLINE (sección visual premium)
   =========================================================== */
.mt3d-section {
  background:
    radial-gradient(circle at top right, rgba(246,128,44,0.10), transparent 50%),
    linear-gradient(180deg, var(--color-one-dark) 0%, var(--color-1) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.mt3d-head {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 760px;
  margin-bottom: 2rem;
}
.mt3d-head .sm-h2 { color: #fff; margin: 0; }
.mt3d-head .sm-h2 .serif-accent { color: var(--brand-accent); }

.mt3d-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #000;
}
.mt3d-poster {
  position: absolute;
  inset: 0;
  border: none;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
}
.mt3d-poster-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,30,50,0.10) 0%, rgba(6,30,50,0.55) 75%, rgba(6,30,50,0.85) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mt3d-poster:hover .mt3d-poster-overlay { opacity: 0.85; }

.mt3d-play-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--stage-accent, var(--brand-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 12px 40px rgba(246,128,44,0.50), 0 0 0 8px rgba(255,255,255,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mt3d-play-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(246,128,44,0.55);
  animation: vtourPulse 2.2s ease-out infinite;
}
.mt3d-poster:hover .mt3d-play-circle { transform: translate(-50%, -50%) scale(1.08); }

.mt3d-poster-meta {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  text-align: left;
}
.mt3d-poster-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}
.mt3d-poster-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  color: #fff;
}
.mt3d-360-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--color-1);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.mt3d-360-badge .icon-font { font-size: 0.95rem; color: var(--color-two); }

/* ===========================================================
   MODELO — CROSS-LINK (transición Fernanda <-> Mariana)
   =========================================================== */
.modelo-crosslink {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 420px;
  background: var(--color-1);
  color: #fff;
  overflow: hidden;
}
.modelo-crosslink-image {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
.modelo-crosslink-image::after {
  /* sutil viñeta hacia el lado del texto para que la imagen se "derrita" en el navy */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--color-1) 100%);
  pointer-events: none;
}
.modelo-crosslink-image.cta-fernanda { background-image: url('/images/real/sm-fer-hero-card-lg.webp'); }
.modelo-crosslink-image.cta-mariana  { background-image: url('/images/real/sm-mar-hero-card-lg.webp'); }

/* Si la imagen va al lado derecho (Mariana page), invertir la viñeta */
.modelo-crosslink > .modelo-crosslink-image:last-child::after {
  background: linear-gradient(-90deg, transparent 60%, var(--color-1) 100%);
}

.modelo-crosslink-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  padding: 4rem 5%;
  position: relative;
  z-index: 1;
}
.modelo-crosslink-content .sm-h2 { margin: 0; }
.modelo-crosslink-content .text-label { letter-spacing: 0.28em; }

/* Sobrescribir el botón naranja sólido para que se vea elegante sobre navy */
.modelo-crosslink .btn.cta-special.contrast-variant {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  height: 3rem;
  padding: 0;
  border-radius: 999px;
  overflow: hidden;
  align-self: flex-start;
}
.modelo-crosslink .btn.cta-special.contrast-variant .btn-cta-bg {
  background: var(--brand-accent);
}
.modelo-crosslink .btn.cta-special.contrast-variant .icon-btn-container {
  padding: 0 1.4rem;
}
.modelo-crosslink .btn.cta-special.contrast-variant .icon-btn-text {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .modelo-crosslink { grid-template-columns: 1fr; min-height: auto; }
  .modelo-crosslink-image { min-height: 220px; }
  .modelo-crosslink-image::after { display: none; }
  .modelo-crosslink-content { padding: 2.5rem 1.5rem 3rem; }
}

.mt3d-iframe-wrap {
  position: absolute;
  inset: 0;
  background: #000;
}
.mt3d-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.mt3d-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 50%;
  background: rgba(6, 30, 50, 0.85);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  z-index: 5;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mt3d-close:hover { background: var(--brand-accent); transform: scale(1.05); }

.mt3d-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.mt3d-stage-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mt3d-perk {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
}
.mt3d-perk .icon-font {
  color: var(--brand-accent);
  font-size: 1.2rem;
}

/* ---- Layout 2-col: tour + tabla de datos ---- */
.mt3d-layout {
  display: block;
}
.mt3d-layout-split {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(220px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}
.mt3d-specs {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.6rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mt3d-specs-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-accent);
  font-weight: 600;
}
.mt3d-specs-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-top: -0.25rem;
}
.mt3d-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.mt3d-specs-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.mt3d-specs-item:hover {
  background: rgba(246,128,44,0.10);
  border-color: rgba(246,128,44,0.30);
}
.mt3d-specs-icon {
  color: var(--brand-accent);
  font-size: 1.5rem;
  flex: none;
}
.mt3d-specs-text { display: flex; flex-direction: column; line-height: 1.15; }
.mt3d-specs-label {
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
}
.mt3d-specs-sub {
  color: rgba(247,252,255,0.62);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

@media (max-width: 960px) {
  .mt3d-layout-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}



@media (max-width: 768px) {
  .mt3d-section { padding: 3rem 0; }
  .mt3d-stage { aspect-ratio: 4 / 3; }
  .mt3d-play-circle { width: 4rem; height: 4rem; font-size: 2rem; }
  .mt3d-poster-name { font-size: 1.5rem; }
  .mt3d-perks { gap: 1.25rem; }
}




/* ===========================================================
   HERO MODELO V2 — Premium full-bleed para páginas internas
   =========================================================== */
.hero-modelo-v2 {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.hero-modelo-v2__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  animation: heroV2-kb 22s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes heroV2-kb {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.10); }
}
.hero-modelo-v2__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,30,50,0.30) 0%, rgba(6,30,50,0.50) 55%, rgba(6,30,50,0.92) 100%),
    radial-gradient(ellipse at left bottom, rgba(246,128,44,0.22), transparent 55%);
  pointer-events: none;
}
.hero-modelo-v2__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 9rem;
  padding-bottom: 5rem;
}
.hero-modelo-v2__inner { display: flex; align-items: flex-end; }
.hero-modelo-v2__text {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-modelo-v2__eyebrow {
  color: var(--brand-accent) !important;
  letter-spacing: 0.32em !important;
  margin: 0;
}
.hero-modelo-v2__title {
  font-size: var(--fs-h1) !important;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-modelo-v2__title .serif-accent { color: var(--brand-accent); display: inline-block; }
.hero-modelo-v2__lead {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: rgba(247, 252, 255, 0.88);
  margin: 0;
  max-width: 55ch;
  font-weight: 400;
}
.hero-modelo-v2__lead strong { color: #fff; font-weight: 600; }
.hero-modelo-v2__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.5rem 0 1rem;
}
.hero-modelo-v2__meta > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-modelo-v2__meta .icon-font { font-size: 1rem; color: var(--brand-accent); }
.hero-modelo-v2__cta { align-self: flex-start; display: inline-flex !important; margin-top: 0.5rem; }
.hero-modelo-v2__scroll {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: heroV2-scroll 2.4s ease-in-out infinite;
}
@keyframes heroV2-scroll {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50%      { transform: translateY(6px); opacity: 1; }
}
.hero-modelo-v2__scroll .icon-font { font-size: 1.1rem; }

@media (max-width: 991px) {
  .hero-modelo-v2 { min-height: 75vh; }
  .hero-modelo-v2__content { padding-top: 7.5rem; padding-bottom: 3.5rem; }
  .hero-modelo-v2__lead { font-size: 0.95rem; }
}
@media (max-width: 600px) {
  .hero-modelo-v2 { min-height: 88vh; }
  .hero-modelo-v2__bg { background-position: center 30%; }
  .hero-modelo-v2__content { padding-top: 7rem; padding-bottom: 3rem; }
  .hero-modelo-v2__meta > span { font-size: 0.78rem; padding: 0.45rem 0.75rem; }
  .hero-modelo-v2__scroll { display: none; }
}


/* =====================================================
   AI CONCIERGE — Mónica (FAB + Chat Panel)
   ===================================================== */

.sm-concierge-fab {
  position: fixed;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem 0.65rem 0.7rem;
  height: clamp(3rem, 3.3vw, 3.5rem);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #1a4666 0%, #062e44 100%);
  box-shadow:
    0 12px 28px rgba(6, 32, 48, 0.42),
    0 2px 8px rgba(0, 0, 0, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 9998;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
  font-family: 'Montserrat', sans-serif;
}
.sm-concierge-fab:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 38px rgba(6, 32, 48, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.sm-concierge-fab > .icon-font {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent, #f6802c) 0%, var(--brand-accent-dark, #aa3706) 100%);
  font-size: 1.05rem;
  color: #fff;
  flex: none;
}
.sm-concierge-fab-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.sm-concierge-fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: radial-gradient(circle at 12% 50%, rgba(246, 128, 44, 0.40), transparent 60%);
  filter: blur(6px);
  animation: smConciergeFabPulse 3s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes smConciergeFabPulse {
  0%   { opacity: 0.55; transform: scale(0.96); }
  100% { opacity: 0;    transform: scale(1.15); }
}
.sm-concierge-fab-dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--brand-accent, #f6802c);
  border: 2px solid #fff;
}

/* Chat Panel */
.sm-concierge-panel {
  position: fixed;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  width: min(380px, calc(100vw - 2rem));
  height: min(620px, calc(100dvh - 4rem));
  max-height: calc(100dvh - 4rem);
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 30px 70px rgba(6, 32, 48, 0.40),
    0 6px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: 'Montserrat', sans-serif;
}
.sm-concierge-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sm-concierge-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #062e44 0%, #1a4666 100%);
  color: #fff;
  position: relative;
}
.sm-concierge-head-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent, #f6802c) 0%, var(--brand-accent-dark, #aa3706) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: none;
  box-shadow: 0 4px 10px rgba(246, 128, 44, 0.40);
}
.sm-concierge-head-avatar .icon-font { font-size: 1.15rem; }
.sm-concierge-head-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.sm-concierge-head-meta strong {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.sm-concierge-head-meta span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.sm-concierge-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.20);
  display: inline-block;
}
.sm-concierge-close {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease;
}
.sm-concierge-close:hover { background: rgba(255, 255, 255, 0.20); }
.sm-concierge-close .icon-font { font-size: 1.1rem; }

.sm-concierge-scroll {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 0.9rem;
  /* Reasonable bottom padding so when we anchor the latest user msg to the top,
     short replies still appear high in the viewport without crowding the footer. */
  padding-bottom: 22vh;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: linear-gradient(180deg, #f7fafc 0%, #fff 100%);
  scroll-behavior: smooth;
  position: relative;
}
.sm-concierge-more {
  position: sticky;
  bottom: 0.5rem;
  align-self: center;
  margin-top: 0.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(6, 64, 96, 0.12);
  background: #fff;
  color: var(--brand-deep, #062e44);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(6, 32, 48, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 5;
}
.sm-concierge-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6, 32, 48, 0.22);
}
.sm-concierge-more .icon-font { font-size: 1.15rem; }
.sm-concierge-empty {
  color: #6b7785;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem 0;
}
.sm-concierge-msg {
  display: flex;
  flex-direction: column;
}
.sm-concierge-msg.user { align-items: flex-end; }
.sm-concierge-msg.assistant { align-items: flex-start; }
.sm-concierge-bubble {
  max-width: 85%;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
  box-shadow: 0 1px 2px rgba(6, 32, 48, 0.06);
}
.sm-concierge-msg.user .sm-concierge-bubble {
  background: linear-gradient(135deg, var(--brand-accent, #f6802c) 0%, var(--brand-accent-dark, #aa3706) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.sm-concierge-msg.assistant .sm-concierge-bubble {
  background: #fff;
  color: var(--brand-deep, #062e44);
  border: 1px solid rgba(6, 64, 96, 0.08);
  border-bottom-left-radius: 4px;
}
.sm-concierge-bubble strong { font-weight: 700; color: var(--brand-primary, #064060); }
.sm-concierge-bubble em { font-style: italic; }
.sm-concierge-bubble code {
  background: rgba(6, 64, 96, 0.07);
  border-radius: 4px;
  padding: 1px 5px;
  font-family: 'Menlo', monospace;
  font-size: 0.9em;
}

/* Feedback thumbs buttons under assistant messages */
.sm-concierge-feedback {
  display: flex;
  gap: 0.4rem;
  margin: 0.25rem 0 0 2.85rem;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.sm-concierge-msg.assistant:hover .sm-concierge-feedback { opacity: 1; }
.sm-concierge-feedback-btn {
  background: transparent;
  border: 1px solid rgba(6, 64, 96, 0.12);
  border-radius: 999px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(6, 64, 96, 0.45);
  padding: 0;
  transition: all 0.2s ease;
}
.sm-concierge-feedback-btn .icon-font { font-size: 0.85rem; }
.sm-concierge-feedback-btn:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}
.sm-concierge-feedback-btn.active {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
}
.sm-concierge-feedback-btn:disabled:not(.active) {

/* ============ Concierge Knowledge Editor ============ */
.ck-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: #062e44;
  background: #f8fafc;
  min-height: 100vh;
}
.ck-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid rgba(6, 64, 96, 0.12);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.ck-header h1 { margin: 0; font-size: 1.8rem; color: #064060; }
.ck-subtitle { margin: 0.3rem 0 0; color: rgba(6, 64, 96, 0.65); font-size: 0.95rem; }
.ck-header-actions { display: flex; gap: 0.5rem; }
.ck-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.ck-tab {
  background: transparent;
  border: 1px solid rgba(6, 64, 96, 0.15);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: rgba(6, 64, 96, 0.7);
}
.ck-tab.active { background: #064060; color: #fff; border-color: #064060; }
.ck-form-card {
  background: #fff;
  border: 1px solid rgba(6, 64, 96, 0.12);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(6, 64, 96, 0.06);
}
.ck-form-card h2 { margin-top: 0; color: #064060; }
.ck-hint { font-size: 0.9rem; color: rgba(6, 64, 96, 0.7); line-height: 1.5; }
.ck-form-card label { display: block; margin-bottom: 1rem; }
.ck-form-card label span { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.92rem; }
.ck-form-card input,
.ck-form-card textarea {
  width: 100%;
  border: 1px solid rgba(6, 64, 96, 0.20);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font: inherit;
  resize: vertical;
}
.ck-form-card input:focus,
.ck-form-card textarea:focus { outline: 2px solid #f6802c; border-color: transparent; }
.ck-form-actions { display: flex; gap: 0.5rem; }
.ck-btn {
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 0.92rem;
}
.ck-btn-primary { background: #f6802c; color: #fff; }
.ck-btn-primary:hover { background: #d96b1f; }
.ck-btn-ghost { background: transparent; border-color: rgba(6, 64, 96, 0.20); color: #064060; }
.ck-btn-ghost:hover { background: rgba(6, 64, 96, 0.05); }
.ck-btn-danger { background: transparent; border-color: rgba(220, 53, 69, 0.4); color: #dc3545; }
.ck-btn-danger:hover { background: rgba(220, 53, 69, 0.08); }
.ck-list h2 { color: #064060; margin: 1rem 0 1rem; }
.ck-empty { color: rgba(6, 64, 96, 0.6); }
.ck-item {
  background: #fff;
  border: 1px solid rgba(6, 64, 96, 0.10);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 0.85rem;
  transition: opacity 0.2s ease;
}
.ck-item.inactive { opacity: 0.55; }
.ck-item header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; gap: 0.5rem; }
.ck-item h3 { margin: 0; color: #064060; font-size: 1.05rem; }
.ck-badge { font-size: 0.65rem; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 999px; font-weight: 700; }
.ck-badge.active { background: #d4edda; color: #155724; }
.ck-badge.inactive { background: #f1f3f5; color: #6c757d; }
.ck-content {
  white-space: pre-wrap;
  background: rgba(6, 64, 96, 0.04);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  margin: 0.5rem 0;
  font-family: inherit;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #062e44;
}
.ck-item footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.ck-meta { font-size: 0.78rem; color: rgba(6, 64, 96, 0.55); }
.ck-actions { display: flex; gap: 0.35rem; }
.ck-feedback-item {
  background: #fff;
  border: 1px solid rgba(6, 64, 96, 0.10);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.6rem;
}
.ck-feedback-item header { display: flex; justify-content: space-between; margin-bottom: 0.3rem; }
.ck-fb-rating { font-weight: 700; font-size: 0.9rem; }
.ck-fb-rating.up { color: #28a745; }
.ck-fb-rating.down { color: #dc3545; }

@media (max-width: 600px) {
  .ck-header { flex-direction: column; align-items: stretch; }
  .ck-item footer { flex-direction: column; align-items: flex-start; }
}

  cursor: default;
  opacity: 0.4;
}


.sm-concierge-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.sm-concierge-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(6, 32, 48, 0.30);
  animation: smConciergeTyping 1.2s ease-in-out infinite;
}
.sm-concierge-typing span:nth-child(2) { animation-delay: 0.15s; }
.sm-concierge-typing span:nth-child(3) { animation-delay: 0.30s; }
@keyframes smConciergeTyping {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* Suggestions */
.sm-concierge-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem 0.6rem;
  background: #fff;
  border-top: 1px solid rgba(6, 64, 96, 0.06);
}
.sm-concierge-suggestions button {
  background: rgba(6, 64, 96, 0.06);
  border: 1px solid rgba(6, 64, 96, 0.10);
  color: var(--brand-deep, #062e44);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.sm-concierge-suggestions button:hover {
  background: rgba(246, 128, 44, 0.10);
  border-color: rgba(246, 128, 44, 0.35);
}

/* Lead form */
.sm-concierge-leadform {
  background: linear-gradient(180deg, #fdf7f0 0%, #fff 100%);
  border-top: 1px solid rgba(246, 128, 44, 0.18);
  padding: 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sm-concierge-leadform-head {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.25rem;
}
.sm-concierge-leadform-head strong {
  font-size: 0.85rem;
  color: var(--brand-deep, #062e44);
  font-weight: 600;
}
.sm-concierge-leadform-head span {
  font-size: 0.7rem;
  color: #6b7785;
}
.sm-concierge-leadform input {
  border: 1px solid rgba(6, 64, 96, 0.18);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  outline: none;
  color: var(--brand-deep, #062e44);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sm-concierge-leadform input:focus {
  border-color: var(--brand-accent, #f6802c);
  box-shadow: 0 0 0 3px rgba(246, 128, 44, 0.12);
}
.sm-concierge-leadform input::placeholder { color: #9aa4ad; }
.sm-concierge-leadform button {
  margin-top: 0.2rem;
  background: var(--brand-accent, #f6802c);
  border: none;
  color: #fff;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.sm-concierge-leadform button:hover:not(:disabled) {
  background: var(--brand-accent-dark, #aa3706);
  transform: translateY(-1px);
}
.sm-concierge-leadform button:disabled { opacity: 0.5; cursor: not-allowed; }

/* Foot */
.sm-concierge-foot {
  border-top: 1px solid rgba(6, 64, 96, 0.06);
  padding: 0.6rem 0.7rem 0.7rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sm-concierge-leadbadge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  background: rgba(46, 157, 79, 0.10);
  border: 1px solid rgba(46, 157, 79, 0.22);
  color: #1f6b3b;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}
.sm-concierge-leadbadge .icon-font { font-size: 0.95rem; }
.sm-concierge-leadbtn {
  align-self: flex-start;
  background: rgba(246, 128, 44, 0.10);
  border: 1px solid rgba(246, 128, 44, 0.25);
  color: var(--brand-accent-dark, #aa3706);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.sm-concierge-leadbtn:hover:not(:disabled) {
  background: rgba(246, 128, 44, 0.18);
}
.sm-concierge-leadbtn:disabled { opacity: 0.6; cursor: default; color: #2e9d4f; background: rgba(46, 157, 79, 0.10); border-color: rgba(46, 157, 79, 0.25); }
.sm-concierge-leadbtn .icon-font { font-size: 0.95rem; }

.sm-concierge-input {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  background: #f4f7f9;
  border: 1px solid rgba(6, 64, 96, 0.10);
  border-radius: 14px;
  padding: 0.45rem 0.45rem 0.45rem 0.75rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.sm-concierge-input:focus-within {
  border-color: var(--brand-accent, #f6802c);
  box-shadow: 0 0 0 3px rgba(246, 128, 44, 0.12);
}
.sm-concierge-input textarea {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  resize: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--brand-deep, #062e44);
  max-height: 110px;
  padding: 0.35rem 0;
}
.sm-concierge-input textarea::placeholder { color: #9aa4ad; }
.sm-concierge-input button {
  width: 2.3rem;
  height: 2.3rem;
  flex: none;
  border-radius: 50%;
  border: none;
  background: var(--brand-accent, #f6802c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  box-shadow: 0 4px 12px rgba(246, 128, 44, 0.30);
}
.sm-concierge-input button:hover:not(:disabled) {
  background: var(--brand-accent-dark, #aa3706);
  transform: translateY(-1px);
}
.sm-concierge-input button:disabled { opacity: 0.35; cursor: not-allowed; box-shadow: none; }
.sm-concierge-disclaim {
  font-size: 0.62rem;
  color: #9aa4ad;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 640px) {
  .sm-concierge-fab-label { display: none; }
  .sm-concierge-fab { padding: 0.55rem; width: 3.2rem; }
  .sm-concierge-panel {
    right: 0.65rem;
    left: 0.65rem;
    bottom: 0.65rem;
    width: auto;
    height: 80vh;
    max-height: calc(100vh - 1.3rem);
  }
}

/* =====================================================
   AGENDAR VISITA — Native Modal (no GHL embed)
   ===================================================== */

.agendar-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  animation: smAgendarModalIn 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes smAgendarModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.agendar-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 32, 48, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: none;
  cursor: pointer;
}
.agendar-modal-card {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background:
    linear-gradient(135deg, rgba(6, 32, 48, 0.92) 0%, rgba(6, 64, 96, 0.85) 100%),
    url('/images/real/sm-conjunto-04-lg.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 22px;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: smAgendarCardIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes smAgendarCardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.agendar-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  z-index: 2;
}
.agendar-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}
.agendar-modal-close .icon-font { font-size: 1.2rem; }

.agendar-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.agendar-left {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding-right: 0.5rem;
}
.agendar-title {
  color: #fff;
  max-width: 16ch;
  margin: 0;
}
.agendar-title .serif-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
}
.agendar-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.55;
  max-width: 460px;
  margin: 0;
}

.agendar-includes {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.agendar-includes li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}
.agendar-includes .icon-font {
  color: var(--brand-accent, #f6802c);
  font-size: 1.1rem;
}
.agendar-alt {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.agendar-alt > span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.agendar-alt-buttons { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.agendar-alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.18s ease, transform 0.18s ease;
}
.agendar-alt-btn:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-1px); }
.agendar-alt-btn img { width: 1.05rem; height: 1.05rem; }
.agendar-alt-btn.whatsapp {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.30);
}
.agendar-alt-btn.whatsapp:hover { background: #1eb858; }

.agendar-right { width: 100%; }
.agendar-form {
  background: #fff;
  color: var(--brand-deep, #062e44);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.30);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-family: 'Montserrat', sans-serif;
}
.agendar-form-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(6, 64, 96, 0.10);
}
.agendar-form-head strong { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.agendar-form-head span { font-size: 0.72rem; color: #6b7785; }
.agendar-field { display: flex; flex-direction: column; gap: 0.32rem; }
.agendar-field > span { font-size: 0.74rem; font-weight: 600; color: #3c4a5a; }
.agendar-field input,
.agendar-field select,
.agendar-field textarea {
  border: 1px solid rgba(6, 64, 96, 0.18);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: var(--brand-deep, #062e44);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.agendar-field input:focus,
.agendar-field select:focus,
.agendar-field textarea:focus {
  border-color: var(--brand-accent, #f6802c);
  box-shadow: 0 0 0 3px rgba(246, 128, 44, 0.12);
}
.agendar-field input::placeholder,
.agendar-field textarea::placeholder { color: #9aa4ad; }
.agendar-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.agendar-dates,
.agendar-times { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.agendar-chip {
  background: #f4f7f9;
  border: 1px solid rgba(6, 64, 96, 0.12);
  color: var(--brand-deep, #062e44);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  text-transform: capitalize;
}
.agendar-chip:hover { background: #ecf1f4; border-color: rgba(246, 128, 44, 0.40); }
.agendar-chip.active {
  background: var(--brand-accent, #f6802c);
  border-color: var(--brand-accent, #f6802c);
  color: #fff;
  box-shadow: 0 4px 10px rgba(246, 128, 44, 0.30);
  transform: translateY(-1px);
}
.agendar-consent {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.72rem;
  color: #5a6877;
  line-height: 1.4;
  cursor: pointer;
}
.agendar-consent input { margin-top: 0.18rem; flex-shrink: 0; }
.agendar-consent a { color: var(--brand-accent, #f6802c); text-decoration: underline; }
.agendar-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  font-size: 0.76rem;
}
.agendar-submit {
  margin-top: 0.3rem;
  background: var(--brand-accent, #f6802c);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 24px rgba(246, 128, 44, 0.30);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.agendar-submit:hover:not(:disabled) {
  background: var(--brand-accent-dark, #aa3706);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(246, 128, 44, 0.40);
}
.agendar-submit:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }
.agendar-submit .icon-font { font-size: 1.1rem; }
.agendar-disclaim {
  margin: 0;
  font-size: 0.68rem;
  color: #6b7785;
  text-align: center;
  line-height: 1.4;
}
.agendar-disclaim strong { color: var(--brand-deep, #062e44); }

.agendar-success {
  background: #fff;
  color: var(--brand-deep, #062e44);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.30);
  font-family: 'Montserrat', sans-serif;
}
.agendar-success-icon .icon-font { font-size: 2.8rem; color: #2e9d4f; }
.agendar-success h3 { margin: 0; font-size: 1.3rem; font-weight: 600; }
.agendar-success p { margin: 0; color: #5a6877; line-height: 1.5; max-width: 360px; }
.agendar-success-cta {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: background 0.18s ease, transform 0.18s ease;
}
.agendar-success-cta:hover { background: #1eb858; transform: translateY(-2px); }
.agendar-success-cta img { width: 1.1rem; filter: brightness(0) invert(1); }
.agendar-success-close {
  background: none;
  border: none;
  color: #6b7785;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 0.3rem;
}

@media (max-width: 991px) {
  .agendar-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .agendar-left { padding-right: 0; }
  .agendar-includes { gap: 0.4rem; }
}
@media (max-width: 540px) {
  .agendar-modal { padding: 0.7rem; }
  .agendar-modal-card { padding: 1.5rem 1.2rem 1.4rem; border-radius: 16px; }
  .agendar-form { padding: 1.25rem 1rem 1.15rem; }
  .agendar-row { grid-template-columns: 1fr; }
  .agendar-modal-close { top: 0.6rem; right: 0.6rem; }
}




/* ========== LEGAL PAGES (Aviso de privacidad / Términos) ========== */
.legal-wrapper {
  background: #fafaf7;
  color: #1d2733;
}
.legal-hero {
  background: linear-gradient(180deg, #062e44 0%, #0a3d5a 100%);
  color: #fff;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.legal-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 -40% -10%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(246, 128, 44, 0.18), transparent 60%);
  pointer-events: none;
}
.legal-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}
.legal-title {
  margin: 0.65rem 0 0;
  color: #fff;
  max-width: 22ch;
}
.legal-last-update {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.legal-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.legal-subnav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.legal-subnav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.legal-subnav-link.active {
  background: var(--color-two, #f6802c);
  border-color: var(--color-two, #f6802c);
  color: #fff;
}

.legal-body {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
}
.legal-article {
  background: #fff;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3rem);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(6, 30, 50, 0.07);
  border: 1px solid rgba(6, 64, 96, 0.06);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.94rem;
  line-height: 1.75;
  color: #2a3744;
}
.legal-article .legal-lead {
  font-size: 1rem;
  color: #3a4a5a;
  border-left: 3px solid var(--color-two, #f6802c);
  padding-left: 1.1rem;
  margin: 0 0 2rem;
}
.legal-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: #062e44;
  margin: 2.4rem 0 0.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(6, 64, 96, 0.08);
}
.legal-article h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0.6rem;
}
.legal-article p {
  margin: 0 0 1.05rem;
}
.legal-article ul {
  margin: 0.3rem 0 1.3rem;
  padding-left: 1.3rem;
}
.legal-article ul li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}
.legal-article ul li::marker {
  color: var(--color-two, #f6802c);
}
.legal-article strong { color: #062e44; }
.legal-article a {
  color: var(--color-two, #f6802c);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 128, 44, 0.3);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.legal-article a:hover {
  border-bottom-color: var(--color-two, #f6802c);
  color: #aa3706;
}

@media (max-width: 720px) {
  .legal-article { font-size: 0.9rem; line-height: 1.7; }
  .legal-article h2 { font-size: 1.35rem; }
  .legal-subnav-link { padding: 0.5rem 0.9rem; font-size: 0.78rem; }
}


/* ========================================================
   MOBILE RESPONSIVE FIXES — iPhone 17 Pro Max & similar
   ======================================================== */
@media (max-width: 640px) {
  /* MASTER PLAN — Lot Map pins (reduce min-size, hide number for clarity) */
  .lmi-pin {
    min-width: 10px;
    min-height: 10px;
    width: 2.2%;
    font-size: 0;
    border-width: 1px;
  }
  .lmi-pin-num { display: none; }
  .lmi-section.v4 .lmi-pin {
    min-width: 10px;
    min-height: 10px;
  }
  .lmi-canvas-fit {
    max-height: 70vh;
    overflow: hidden;
  }
  /* Lot tooltip → bottom sheet on mobile (avoid horizontal overflow) */
  .lmi-tooltip.is-sticky {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: 1rem !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 2rem) !important;
    max-width: 360px !important;
    min-width: 0 !important;
    z-index: 9000 !important;
    box-shadow: 0 -10px 36px rgba(6, 30, 50, 0.28), 0 0 0 1px rgba(6, 30, 50, 0.08);
  }
  .lmi-tooltip:not(.is-sticky) {
    /* Hover tooltips: hidden on mobile (no hover state) */
    display: none !important;
  }
  .lmi-tt-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.55rem !important; }
  .lmi-tt-cell { min-width: 0; }
  .lmi-tt-val { font-size: 0.85rem; word-break: break-word; }
  .lmi-tt-cta {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 0.85rem;
    font-size: 0.82rem;
  }

  /* VIRTUAL TOUR — keep iframe and tabs inside viewport */
  .vtour-iframe-wrap,
  .vtour-iframe-wrap iframe { width: 100%; max-width: 100%; }
  .vtour-grid .vtour-stage { min-height: 240px; }
  .vtour-grid {
    overflow: hidden;
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
  }
  .vtour-grid > * { min-width: 0 !important; }
  .vtour-specs {
    padding: 1.1rem 1rem;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
    overflow: hidden;
  }
  .vtour-specs-list li {
    padding: 0.55rem 0;
    font-size: 0.78rem;
    gap: 0.4rem;
    grid-template-columns: 1.4rem 1fr auto;
  }
  .vtour-specs-value { font-size: 0.8rem; }
  .vtour-specs-extras { gap: 0.3rem; }
  .vtour-specs-extra {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
  }
  .vtour-specs-header {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }
  .vtour-specs-name { font-size: 1.4rem !important; }
  .vtour-specs-cta {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.74rem !important;
  }

  /* LOCATION MAP — guarantee map visibility on mobile */
  .locmap-v3 .locmap-grid,
  .locmap-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .locmap-v3 .locmap-canvas-real,
  .locmap-canvas-real {
    width: 100% !important;
    min-height: 320px !important;
    height: 55vh !important;
    max-height: 65vh !important;
    order: 1;
  }
  .locmap-v3 .locmap-controls,
  .locmap-controls {
    width: 100% !important;
    max-height: none !important;
    order: 2;
  }
  .locmap-poi-scroll {
    max-height: 360px;
    overflow-y: auto;
  }
}

/* Very small phones (iPhone SE etc.) */
@media (max-width: 380px) {
  .lmi-pin { min-width: 9px; min-height: 9px; }
  .vtour-specs-list li { font-size: 0.74rem; }
}

/* ─────────────── Legal Modal ─────────────── */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 22, 38, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: legalModalFade 0.18s ease-out;
}
@keyframes legalModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.legal-modal-panel {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 880px;
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(6, 22, 38, 0.45);
  animation: legalModalRise 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes legalModalRise {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e8ecf0;
  background: #fafbfc;
}
.legal-modal-tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.legal-modal-tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b7785;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  letter-spacing: 0.01em;
}
.legal-modal-tab:hover { color: var(--brand-primary, #0a2236); }
.legal-modal-tab.active {
  background: var(--brand-primary, #0a2236);
  color: #ffffff;
}
.legal-modal-close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7785;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.legal-modal-close:hover {
  background: #eef1f4;
  color: var(--brand-primary, #0a2236);
}
.legal-modal-close .icon-font { font-size: 1.35rem; }
.legal-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem 2.5rem;
  -webkit-overflow-scrolling: touch;
}
.legal-modal-meta { margin-bottom: 1.25rem; }
.legal-modal-eyebrow { color: var(--brand-accent, #f6802c); }
.legal-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--brand-primary, #0a2236);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.2;
}
.legal-modal-last-update {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  color: #6b7785;
  margin: 0;
}
.legal-modal-article {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #2a3441;
}
.legal-modal-article h2 {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-primary, #0a2236);
  margin: 1.6rem 0 0.6rem;
}
.legal-modal-article p { margin: 0 0 0.85rem; }
.legal-modal-article ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-modal-article ul li { margin-bottom: 0.4rem; }
.legal-modal-article a {
  color: var(--brand-accent, #f6802c);
  text-decoration: underline;
}
.legal-modal-article .legal-lead {
  font-size: 0.98rem;
  color: #1f2a36;
  border-left: 3px solid var(--brand-accent, #f6802c);
  padding-left: 0.9rem;
  margin-bottom: 1.4rem;
}

/* Inline button used inside the consent checkbox label */
.footer-legal-inline-btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: var(--brand-accent, #f6802c);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}
.footer-legal-inline-btn:hover { opacity: 0.85; }

@media (max-width: 640px) {
  .legal-modal-overlay { padding: 0; }
  .legal-modal-panel {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .legal-modal-body { padding: 1.25rem 1.1rem 2rem; }
  .legal-modal-tab { font-size: 0.75rem; padding: 0.5rem 0.7rem; }
}

/* ─────────────── Celosía Shadow Wallpaper (preview) ─────────────── */
/* (removed — user did not want it applied) */

/* ─────────────── Mini divisor cintillo (removido por preferencia del usuario) ─────────────── */

/* ─────────────── Hecho a mano — explorer link + lightbox counter ─────────────── */
.craft-explore-link {
  appearance: none;
  border: 0;
  background: transparent;
  margin-top: 1rem;
  padding: 0.45rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-accent, #f6802c);
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.craft-explore-link .icon-font { font-size: 1.05rem; }
.craft-explore-link::after {
  content: '';
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  margin-left: 0.25rem;
  transition: width 0.22s ease;
}
.craft-explore-link:hover { opacity: 0.85; }
.craft-explore-link:hover::after { width: 2rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.32);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ============================================
   Hero Promo Banner — editable desde admin
   Si no hay promo, el componente devuelve null,
   por lo que no ocupa espacio ni rompe el hero.
   ============================================ */
.hero-promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.4rem auto 1.2rem;
  padding: 0.5rem 1.05rem 0.5rem 0.55rem;
  background: #ffffff;
  border: 2px solid #f6802c;
  color: #0a2236;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(10, 34, 54, 0.18);
  animation:
    heroPromoIn 0.5s cubic-bezier(.2,.7,.2,1) both,
    heroPromoFlashBorder 1.2s ease-in-out 0.5s infinite;
  max-width: min(560px, 92%);
  text-align: left;
  position: relative;
}
.hero-promo-banner::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid #f6802c;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  animation: heroPromoRing 1.2s ease-out 0.5s infinite;
}
.hero-promo-banner.is-link {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-promo-banner.is-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(10, 34, 54, 0.24);
}
/* Detail when clickable (opens terms modal) */
button.hero-promo-detail.is-link {
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.22rem;
  cursor: pointer;
  font-family: inherit;
  color: rgba(10, 34, 54, 0.55);
  font-weight: 500;
  font-size: 0.56rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: none;
  text-decoration: underline;
  text-decoration-color: rgba(10, 34, 54, 0.25);
  text-underline-offset: 2px;
  transition: color .15s ease, text-decoration-color .15s ease;
  width: 100%;
  display: block;
}
button.hero-promo-detail.is-link:hover {
  color: #f6802c;
  text-decoration-color: #f6802c;
}
.hero-promo-detail-icon {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.75rem;
  color: rgba(10, 34, 54, 0.55);
  line-height: 1;
  vertical-align: -1px;
}
button.hero-promo-detail.is-link:hover .hero-promo-detail-icon { color: #f6802c; }
.hero-promo-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  flex-shrink: 0;
  background: #f6802c;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}
.hero-promo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  color: #0a2236;
  line-height: 1.18;
  max-width: 420px;
  min-width: 0;
}
.hero-promo-eyebrow {
  color: rgba(10, 34, 54, 0.62);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  width: 100%;
}
.hero-promo-text strong {
  color: #0a2236;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  line-height: 1.2;
}
.hero-promo-detail {
  color: rgba(10, 34, 54, 0.55);
  font-weight: 500;
  font-size: 0.56rem;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.35;
  width: 100%;
  margin-top: 0.22rem;
}
.hero-promo-arrow {
  margin-left: 0.1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  transition: transform .18s ease;
}
.hero-promo-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.4rem;
  padding: 0.22rem 0.7rem 0.22rem 0.75rem;
  background: #f6802c;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
a.hero-promo-cta-pill:hover {
  background: #de6e1f;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(246, 128, 44, 0.45);
}
a.hero-promo-cta-pill:hover .hero-promo-arrow { transform: translateX(3px); }
.hero-promo-banner.is-link:hover .hero-promo-cta-pill { background: #de6e1f; }
.hero-promo-banner.is-link:hover .hero-promo-arrow { transform: translateX(3px); }

@keyframes heroPromoIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Border itself strobes between bright orange and dimmed */
@keyframes heroPromoFlashBorder {
  0%, 100% { border-color: #f6802c; }
  50%      { border-color: rgba(246, 128, 44, 0.28); }
}
/* Crisp orange ring that expands outward (no blur, like a notification badge edge) */
@keyframes heroPromoRing {
  0%   { inset: -2px; opacity: 0.9; }
  100% { inset: -10px; opacity: 0;  }
}

@media (max-width: 640px) {
  .hero-promo-banner { font-size: 0.78rem; padding: 0.42rem 0.9rem 0.42rem 0.45rem; }
  .hero-promo-spark { width: 20px; height: 20px; font-size: 0.7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-promo-banner,
  .hero-promo-banner::before { animation: none; }
  .hero-promo-banner::before { opacity: 0; }
}

/* ============================================
   Promo Terms Modal — abre desde el banner del hero
   ============================================ */
.promo-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(10, 34, 54, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  animation: promoModalBg .22s ease;
}
.promo-modal-card {
  background: #ffffff;
  border-radius: 18px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(10, 34, 54, 0.35);
  animation: promoModalIn .28s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.promo-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid #e7ebf2;
}
.promo-modal-kicker {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f6802c;
  margin-bottom: 0.45rem;
}
.promo-modal-head h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a2236;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.promo-modal-close {
  background: transparent;
  border: none;
  color: #5a6678;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
  flex-shrink: 0;
}
.promo-modal-close:hover { background: #f1f4f9; color: #0a2236; }
.promo-modal-body {
  padding: 1.2rem 1.6rem 1.4rem;
  overflow-y: auto;
  flex: 1;
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #1d2433;
  white-space: pre-line;
  word-break: break-word;
}
.promo-modal-foot {
  padding: 1rem 1.6rem 1.4rem;
  border-top: 1px solid #e7ebf2;
  display: flex;
  justify-content: flex-end;
  background: #fafbfd;
}
.promo-modal-cta {
  background: #0a2236;
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.promo-modal-cta:hover { background: #15324d; transform: translateY(-1px); }
@keyframes promoModalBg { from { opacity: 0; } to { opacity: 1; } }
@keyframes promoModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 640px) {
  .promo-modal-card { border-radius: 14px; max-height: 92vh; }
  .promo-modal-head { padding: 1.1rem 1.2rem 0.9rem; }
  .promo-modal-head h3 { font-size: 1.1rem; }
  .promo-modal-body { padding: 1rem 1.2rem 1.2rem; font-size: 0.88rem; }
  .promo-modal-foot { padding: 0.85rem 1.2rem 1.2rem; }
}
