:root {
  --red: #ef2b24;
  --red-dark: #d81f18;
  --text: #111111;
  --line: #dfdfdf;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  --font-main: Gotham, 'Montserrat', Arial, sans-serif;
  --gotham-black: Gotham, 'Montserrat', Arial, sans-serif;
  --gotham-bold: Gotham, 'Montserrat', Arial, sans-serif;
  --gotham-light: Gotham, 'Montserrat', Arial, sans-serif;
  --gotham-book: Gotham, 'Montserrat', Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: #ffffff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e8e8;
}
.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 0; }
.brand-logo { width: 260px; }
.brand-pin { display: none; }
.main-nav { display: flex; justify-content: center; gap: 34px; align-items: center; }
.main-nav a { font-size: 13px; font-weight: 700; letter-spacing: 0.07em; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; margin-left: auto; }
.menu-toggle span { display: block; height: 2px; background: #111; margin: 6px 0; border-radius: 999px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 10px;
  padding: 14px 22px; font-size: 12px; font-family: var(--gotham-book); font-weight: 400; letter-spacing: 0.02em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-dark { background: #111; color: #fff; }
.btn-block { width: 100%; }
.header-cta { padding-inline: 22px; white-space: nowrap; }
.hero {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  width: 100%;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(620px, 57.324vw, 860px);
  min-height: 620px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #f5f7f7;
  opacity: 0;
  transition: opacity .6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-shell {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 18px;
}
.hero-panel {
   width: min(610px, calc(100% - 260px)) !important;
  margin: 0 0 70px 90px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 34px;
  padding: 28px 34px 28px;
  box-shadow: none;
}
.hero-panel h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 82px);
  line-height: .95;
  font-weight: 900;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0 22px;
  white-space: nowrap;
}
.hero-title-red { color: var(--red); font-family: var(--gotham-black); font-weight: 900; }
.hero-title-dark { color: #111; font-size: .72em; font-family: var(--gotham-bold); font-weight: 700; }
.hero-preventa {
  margin: 14px 0 10px;
  color: var(--red);
  font-size: clamp(28px, 3vw, 46px);
  font-family: var(--gotham-light);
  font-weight: 300;
}
.hero-text {
  margin: 0 0 22px;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.35;
  font-family: var(--gotham-book);
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn { padding: 12px 15px; font-size: 11px; }
.hero-dots { align-self: center; display: flex; gap: 7px; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: #fff; opacity: .7; padding: 0; }
.hero-dots button.active { background: var(--red); opacity: 1; }

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 7;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow-prev { left: 22px; }
.hero-arrow-next { right: 22px; }

.floating-form-btn, .small-form-btn {
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; color: var(--red);
  background: #fff; border: 1px solid #d7d7d7; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,.08);
  padding: 11px 18px; font-family: var(--gotham-book); font-weight: 400;
}
.floating-form-btn { position: absolute; right: 34px; bottom: 18px; }
.section { padding: 52px 0; }
.quick-features {
  background: #ffffff;
  border-top: 0;
  border-bottom: 0;
  padding: 28px 0 22px;
}

.feature-grid,
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.feature-grid article,
.amenity-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.feature-grid img {
  height: 80px;
  width: auto;
}

.amenity-grid img {
  height: 100px;
  width: auto;
}

.feature-grid p,
.amenity-grid p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}
.section-heading { text-align: center; margin-bottom: 30px; }
.section-heading.left { text-align: center; margin-bottom: 0; }
.section-heading span, .kicker {
  color: var(--red); font-size: 24px; letter-spacing: .04em; font-weight: 300; text-transform: uppercase; display: block; margin-bottom: 6px;
}
.section-heading h2, .location-copy h2, .gallery-intro h2, .contact-copy h2 {
  margin: 0; font-size: clamp(28px, 2.8vw, 40px); font-weight: 900; line-height: 1.12; text-transform: uppercase;
}

.location-copy h2 {
  font-family: var(--gotham-bold);
  font-weight: 700;
  text-transform: none;
  font-size: 34px;
  line-height: 1.15;
}
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: stretch; }
.model-card { display: grid; grid-template-columns: 46% 54%; gap: 20px; align-items: start; }
.model-card.reverse { grid-template-columns: 54% 46%; }
.model-card.reverse .model-image-wrap { order: 2; }
.model-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.model-content { padding-top: 4px; }
.model-name { margin: 0 0 6px; font-size: 19px; font-weight: 700; }
.model-name strong { font-weight: 800; }
.model-content h3 { margin: 0 0 18px; font-size: clamp(34px, 3vw, 44px); line-height: 1; color: var(--red); font-weight: 800; }
.spec-list { list-style: none; padding: 0; margin: 0 0 18px; }
.spec-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0;  font-size: 17px; }
.spec-list img { width: 23px; flex: 0 0 23px; }
.model-cta-stack { display: grid; gap: 10px; margin: 18px 0 18px; }
.price-wrap span { display: block; font-size: 18px; font-weight: 600; color: #111; text-transform: lowercase; }
.price-wrap strong { display: block; font-size: clamp(32px, 3.1vw, 46px); line-height: 1; color: var(--red); font-weight: 800; }
.section-topline { display: flex; justify-content: center; align-items: center; gap: 30px; margin-bottom: 28px; position: relative; }
.small-form-btn { position: absolute; right: 0; top: 0; }
.amenity-grid { grid-template-columns: repeat(6, 1fr); gap: 8px; }
.location-grid { display: grid; grid-template-columns: 26% 33% 41%; gap: 26px; align-items: center; }
.location-copy p { font-size: 19px; line-height: 1.4; margin: 16px 0 22px; color: #1f1f1f; }
.services-map img { width: 100%; border-radius: 8px; }
.location-map-card {
  position: relative; background: #fff; border: 1px solid #dddddd; border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; min-height: 320px;
}
.location-map-card iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.location-map-btn { position: absolute; right: 16px; bottom: 16px; }
.gallery-grid { display: grid; grid-template-columns: 36% 64%; gap: 28px; align-items: center; }
.gallery-window { overflow: hidden; }
.gallery-track { display: flex; gap: 18px; will-change: transform; }
.gallery-track figure { flex: 0 0 calc(33.333% - 12px); margin: 0; border-radius: 30px 0 0 0; overflow: hidden; background: #eee; }
.gallery-track img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.contact-card {
  background: #070707; color: #fff; border-radius: 34px; padding: 26px 48px; display: grid; grid-template-columns: 1fr 360px; gap: 34px; align-items: center;
}
.contact-copy span { display: block; margin-bottom: 10px; color: var(--red); font-size: 15px; font-weight: 700; text-transform: uppercase; }
.contact-copy h2 { text-transform: none; margin-bottom: 24px; }
.contact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 22px; font-weight: 500; }
.contact-row svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.6; flex: 0 0 auto; }
.lead-form { background: #fff; border-radius: 8px; padding: 22px; color: #111; }
.lead-form input { width: 100%; border: 1px solid #808080; border-radius: 8px; padding: 13px 14px; font-size: 14px; margin-bottom: 10px; }
.form-message { margin: 10px 0 0; font-size: 13px; text-align: center; color: #3b7d26; min-height: 18px; }
.site-footer { background: #000; color: #fff; padding-top: 32px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr 1.05fr 1fr; gap: 34px; align-items: start; }
.footer-brand img { width: 280px; }
.footer-col h3 { margin: 10px 0 18px; font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.footer-col a, .footer-col span { display: block; margin: 7px 0; font-size: 14px; line-height: 1.45; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255,255,255,.9); display: inline-flex; align-items: center; justify-content: center;
}
.socials svg { width: 18px; height: 18px; fill: #fff; }
.copyright { text-align: center; margin: 24px 0 0; padding: 0 0 22px; font-size: 14px; }
.float-whatsapp {
  position: fixed; right: 16px; bottom: 14px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; box-shadow: 0 10px 24px rgba(0,0,0,.24);
}
.float-whatsapp img { width: 100%; height: 100%; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.open {
  display: flex;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}
.video-modal-card {
  position: relative;
  width: min(960px, 100%);
  background: #070707;
  color: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.video-modal-card h3 {
  margin: 0 44px 16px 0;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}
.video-modal-card video,
.video-modal-card iframe {
  width: 100%;
  max-height: min(72vh, 680px);
  border-radius: 14px;
  background: #000;
  display: block;
}
.video-modal-card iframe {
  aspect-ratio: 16 / 9;
  height: min(72vh, 680px);
  border: 0;
}
.video-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 560px) {
  .video-modal {
    padding: 12px;
  }
  .video-modal-card {
    padding: 16px;
    border-radius: 16px;
  }
  .video-modal-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .location-grid, .gallery-grid, .model-grid, .footer-grid, .contact-card { grid-template-columns: 1fr; }
  .small-form-btn { position: static; }
  .section-topline { flex-direction: column; }
  .model-card, .model-card.reverse { grid-template-columns: 1fr; }
  .model-card.reverse .model-image-wrap { order: 0; }
  .gallery-track figure { flex-basis: calc(50% - 9px); }
}
@media (max-width: 860px) {
  .header-inner { grid-template-columns: auto auto auto; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); background: #fff; border: 1px solid #e6e6e6;
    box-shadow: var(--shadow); border-radius: 18px; padding: 18px; display: none; flex-direction: column; gap: 14px;
  }
  .main-nav.open { display: flex; }
  .header-cta { display: none; }
  .brand-logo { width: 210px; }
  .brand-pin { display: none; }
  .hero-slider { min-height: 620px; height: 620px; }
  .hero-panel { margin-left: 20px; width: calc(100% - 40px); padding: 28px 26px 26px; }
  .hero-shell { padding-inline: 0; }
  .floating-form-btn { position: static; align-self: flex-end; margin-top: 12px; }
  .feature-grid, .amenity-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .gallery-track figure { flex-basis: 80%; }
  .contact-card { padding: 26px 22px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1240px); }
  .header-inner { min-height: 80px; gap: 8px; }
  .brand { gap: 10px; }
  .brand-logo { width: 170px; }
  .brand-pin { display: none; }
  .hero-panel { padding: 18px 18px 16px; }
  .hero-panel h1 { font-size: clamp(40px, 12vw, 58px); flex-wrap: wrap; white-space: normal; gap: 0 12px; }
  .hero-arrow { width: 42px; height: 42px; font-size: 32px; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
  .hero-text { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .section { padding: 42px 0; }
  .gallery-track figure { flex-basis: 100%; }
  .contact-row { font-size: 18px; }
}


/* Logo actualizado: imagen completa MANAHAL + pin */
.brand { gap: 0; }
.brand-logo { width: 260px; max-width: 100%; }
.brand-pin { display: none !important; }
@media (max-width: 860px) { .brand-logo { width: 210px; } }
@media (max-width: 560px) { .brand-logo { width: 170px; } }


/* Ajuste solicitado: panel hero mas transparente y CON TODO mas pequeno */
.hero-panel { background: rgba(255,255,255,0.36); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.hero-title-dark { font-size: .72em; font-family: var(--gotham-bold); font-weight: 700; }

/* === Ajustes finales solicitados en conversaci贸n === */
:root {
  --gotham-black: 'Gotham Black', 'Montserrat', Arial, sans-serif;
  --gotham-bold: 'Gotham Bold', 'Montserrat', Arial, sans-serif;
  --gotham-book: 'Gotham Book', 'Montserrat', Arial, sans-serif;
  --gotham-light: 'Gotham Light', 'Montserrat', Arial, sans-serif;
}

.site-header .container {
  width: 100%;
  max-width: none;
}

.header-inner {
  width: 100%;
  max-width: none;
  min-height: 125px;
  padding: 0 42px;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
}

.brand {
  justify-self: start;
  gap: 0;
}

.brand-logo {
  width: 335px;
  max-width: 100%;
}

.header-cta {
  justify-self: end;
  font-family: var(--gotham-book);
  font-weight: 400;
  padding-inline: 24px;
}

.main-nav {
  justify-content: center;
  gap: 62px;
}

.main-nav a {
  font-family: var(--gotham-bold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero {
  width: 100%;
}

.hero-slider {
  width: 100%;
  height: clamp(620px, 56vw, 790px);
  min-height: 620px;
}

.hero-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #eef4f6;
}

.hero-panel {
  width: min(700px, calc(100% - 220px));
  margin: 0 0 70px 90px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 34px;
  padding: 28px 34px 28px;
  box-shadow: none;
}

.hero-panel h1 {
  font-family: var(--gotham-black);
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: .95;
  font-weight: 900;
  gap: 0 18px;
  white-space: nowrap;
}

.hero-title-red {
  font-family: var(--gotham-black);
  font-weight: 900;
}

.hero-title-dark {
  font-family: var(--gotham-bold);
  font-size: .60em;
  font-weight: 700;
}

.hero-preventa {
  font-family: var(--gotham-light);
  font-weight: 300;
}

.hero-text {
  font-family: var(--gotham-book);
  font-weight: 400;
}

.btn,
.hero-actions .btn,
.floating-form-btn,
.small-form-btn {
  font-family: var(--gotham-book);
  font-weight: 400;
}

.hero-arrow {
  z-index: 8;
}

@media (max-width: 1200px) {
  .header-inner {
    padding: 0 30px;
  }
  .brand-logo {
    width: 290px;
  }
  .main-nav {
    gap: 36px;
  }
  .main-nav a {
    font-size: 14px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 96px;
    padding: 0 18px;
  }
  .brand-logo {
    width: 225px;
  }
  .hero-slider {
    height: 620px;
    min-height: 620px;
  }
  .hero-panel {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 28px 26px 26px;
  }
  .hero-panel h1 {
    font-size: clamp(42px, 9vw, 68px);
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 190px;
  }
  .hero-slider {
    height: 560px;
    min-height: 560px;
  }
  .hero-panel {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-bottom: 18px;
    padding: 22px 18px 20px;
  }
  .hero-panel h1 {
    white-space: normal;
    font-size: clamp(38px, 11vw, 52px);
  }
  .hero-title-dark {
    font-size: .64em;
  }
}
.models .section-heading span {
  font-family: var(--gotham-light);
  font-weight: 300;
  font-size: 24px;
}

.models .section-heading h2 {
  font-family: var(--gotham-bold);
  font-weight: 700;
}

/* === MODELOS DISPONIBLES - AJUSTE FINAL SIN TOCAR OTRAS SECCIONES === */
.models {
  padding-top: 54px;
  padding-bottom: 56px;
}

.models .section-heading {
  margin-bottom: 28px;
}

.models .section-heading span {
  font-family: var(--gotham-light);
  font-weight: 300;
  font-size: 24px;
  color: var(--red);
  letter-spacing: 0.04em;
}

.models .section-heading h2 {
  font-family: var(--gotham-bold);
  font-weight: 700;
  font-size: clamp(26px, 2.2vw, 36px);
  letter-spacing: 0.02em;
}

.models .model-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.models .model-card,
.models .model-card.reverse {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 18px;
  align-items: start;
}

.models .model-card.reverse .model-image-wrap,
.models .model-card.reverse .model-visual,
.models .model-card.reverse .model-content {
  order: 0;
}

.models .model-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.models .model-image-wrap {
  width: 100%;
  overflow: hidden;
}

.models .model-image-wrap img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
}

.models .model-content {
  padding-top: 0;
}

.models .model-name {
  margin: 0 0 5px;
  font-family: var(--gotham-bold);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.05;
  color: #111;
}

.models .model-name strong {
  font-family: var(--gotham-bold);
  font-weight: 700;
}

.models .model-content h3 {
  margin: 0 0 18px;
  font-family: var(--gotham-black);
  font-weight: 900;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
  color: var(--red);
}

.models .spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.models .spec-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;

  font-family: var(--gotham-book);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.18;
  color: #111;
}

.models .spec-list img {
 width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 38px;
}

.models .model-cta-stack {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.models .model-cta-stack .btn {
  height: 44px;
  border-radius: 8px;
  font-family: var(--gotham-book);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.models .price-wrap {
  margin-top: 20px;
}

.models .price-wrap span {
  display: block;
  font-family: var(--gotham-bold);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #111;
}

.models .price-wrap strong {
  display: block;
  margin-top: 4px;
  font-family: var(--gotham-black);
  font-weight: 900;
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: .95;
  color: var(--red);
}

@media (max-width: 1100px) {
  .models .model-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .models .model-card,
  .models .model-card.reverse {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  }
}

@media (max-width: 720px) {
  .models .model-card,
  .models .model-card.reverse {
    grid-template-columns: 1fr;
  }

  .models .model-image-wrap img {
    height: auto;
    aspect-ratio: 1.1 / 1;
  }
}

/* === Ajuste modelos: iconos grandes y compactos === */
.models .model-content h3 {
  font-size: clamp(28px, 2.35vw, 38px);
}

.models .spec-list li {
  display: flex;
  align-items: center;
  gap: 8px !important;
  padding: 2px 0 !important;
  line-height: 1.05 !important;
  border-bottom: 0 !important;
}

.models .spec-list img {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  object-fit: contain;
}

.models .price-wrap strong {
  font-size: clamp(30px, 2.65vw, 42px);
}

@media (max-width: 560px) {
  .models .model-content h3 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .models .price-wrap strong {
    font-size: clamp(30px, 10vw, 42px);
  }

  .models .spec-list li {
    gap: 7px !important;
    padding: 1px 0 !important;
    line-height: 1.05 !important;
  }

.models .spec-list img {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
}


}

.amenities .section-heading h2 {
  font-family: var(--gotham-bold);
  font-weight: 700;
}

/* Mapa de servicios clickeable */
.services-map {
  margin: 0;
  overflow: visible;
}

.map-open-btn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 100%;
}

.map-open-btn img {
  width: 115%;
  max-width: none;
  transform: translateX(-4%);
  transition: transform 0.25s ease;
}

.map-open-btn:hover img {
  transform: translateX(-4%) scale(1.03);
}

/* Popup imagen grande */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.image-modal.open {
  display: flex;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.image-modal-content {
  position: relative;
  z-index: 1;
  width: min(1200px, 96vw);
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.image-modal-content img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.image-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.gallery-intro h2 {
  font-family: var(--gotham-bold);
  font-weight: 700;
  text-transform: none;
}

.contact-copy span {
  font-family: var(--gotham-bold);
  font-weight: 700;
}

.contact-copy h2 {
  font-family: var(--gotham-bold);
  font-weight: 700;
}

.contact-row {
  font-family: var(--gotham-bold);
  font-weight: 700;
}

.footer-contact-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-family: var(--gotham-book);
  font-weight: 400;
}

.footer-contact-row img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
}

/* === Carrusel hero ajustado para im谩genes 1955 x 804 === */
.hero-slider {
  height: clamp(560px, 41.1vw, 804px) !important;
  min-height: 560px !important;
  max-height: 804px !important;
}

.hero-slide {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: #eef4f6 !important;
}

/* Mantiene el panel encima del carrusel */
.hero-shell {
  padding-bottom: 18px !important;
}

.footer-legal {
  text-align: center;
  margin: 24px 0 0;
  padding: 0 0 22px;
}

.footer-legal .copyright {
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px;
}

.footer-legal a {
  display: inline-block;
  color: #ffffff;
  font-family: var(--gotham-book);
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--red);
}

/* === AJUSTE FINAL MÓVIL: HERO + CONTACTO === */
@media (max-width: 560px) {
  /* Header móvil */
  .header-inner {
    min-height: 96px !important;
    padding: 0 20px !important;
    grid-template-columns: auto auto !important;
  }

  .brand-logo {
    width: 250px !important;
    max-width: 72vw !important;
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
  }

  /* Carrusel móvil */
  .hero-slider {
    height: 720px !important;
    min-height: 720px !important;
    max-height: none !important;
  }

  .hero-slide {
    background-size: cover !important;
    background-position: center center !important;
  }

  /* Panel hero móvil */
  .hero-shell {
    justify-content: flex-end !important;
    padding-bottom: 18px !important;
  }

  .hero-panel {
    width: calc(100% - 44px) !important;
    margin: 0 auto 72px !important;
    padding: 28px 28px 30px !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.34) !important;
  }

  .hero-panel h1 {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: baseline !important;
    gap: 0 10px !important;
    white-space: normal !important;
    font-size: 48px !important;
    line-height: .95 !important;
  }

  .hero-title-red {
    font-size: 1em !important;
  }

  .hero-title-dark {
    font-size: .58em !important;
  }

  .hero-preventa {
    font-size: 38px !important;
    margin: 18px 0 16px !important;
  }

  .hero-text {
    font-size: 22px !important;
    line-height: 1.35 !important;
    margin-bottom: 24px !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  .hero-actions .btn {
    width: auto !important;
    min-width: 132px !important;
    padding: 14px 14px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    border-radius: 10px !important;
  }

  .floating-form-btn {
    position: absolute !important;
    right: 18px !important;
    bottom: 20px !important;
    font-size: 13px !important;
    padding: 14px 18px !important;
  }

  .hero-arrow {
    width: 48px !important;
    height: 48px !important;
    font-size: 36px !important;
  }

  .hero-arrow-prev {
    left: 12px !important;
  }

  .hero-arrow-next {
    right: 12px !important;
  }

  /* Contacto móvil */
  .contact-section {
    overflow: hidden !important;
  }

  .contact-card {
    width: calc(100% - 28px) !important;
    margin: 0 auto !important;
    padding: 34px 24px !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    border-radius: 30px !important;
    overflow: hidden !important;
  }

  .contact-copy span {
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  .contact-copy h2 {
    font-size: 42px !important;
    line-height: 1.08 !important;
  }

  .contact-row {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .contact-row svg {
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    margin-top: 2px !important;
  }

  .lead-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px !important;
    overflow: hidden !important;
  }

  .lead-form input {
    width: 100% !important;
    font-size: 18px !important;
    padding: 16px 18px !important;
  }

  .lead-form .btn {
    width: 100% !important;
    font-size: 16px !important;
    padding: 18px 14px !important;
    white-space: normal !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-brand img {
    width: 260px !important;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 225px !important;
  }

  .hero-panel h1 {
    font-size: 42px !important;
  }

  .hero-preventa {
    font-size: 34px !important;
  }

  .hero-text {
    font-size: 19px !important;
  }

  .hero-actions .btn {
    min-width: 120px !important;
    font-size: 10px !important;
  }

  .contact-copy h2 {
    font-size: 36px !important;
  }

  .contact-row {
    font-size: 19px !important;
  }
}
