:root {
  --green: #23453c;
  --green-2: #3e6b59;
  --beige: #f5f2ec;
  --white: #ffffff;
  --gray: #f7f7f7;
  --gold: #c8b38a;
  --text: #1c2723;
  --muted: #5c6a64;
  --shadow: 0 24px 60px rgba(35, 69, 60, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(62, 107, 89, 0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(200, 179, 138, 0.08), transparent 24%),
    var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  padding: 18px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(245, 242, 236, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(22, 34, 30, 0.08);
}

.site-header:not(.scrolled) .brand-logo {
  filter: brightness(0) invert(1);
}

.site-header:not(.scrolled) .main-nav a {
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.site-header:not(.scrolled) .main-nav a:hover {
  color: var(--white);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-image {
  min-width: auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 84px;
  object-fit: contain;
}

.brand-logo-nikolas {
  height: 290px;
  margin-top: -97px;
  margin-bottom: -97px;
}

.brand-nikolas {
  min-width: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-text {
  display: grid;
}

.brand-text strong,
.footer h3,
.tech-grid strong,
.stats-list strong,
.location-points strong,
.hero-stats strong,
.info-card h3 {
  font-weight: 800;
}

.brand-text small {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.94rem;
  color: rgba(28, 39, 35, 0.84);
}

.main-nav a:hover {
  color: var(--green);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 12px 25px rgba(35, 69, 60, 0.2);
}

.button.ghost {
  border: 1px solid rgba(35, 69, 60, 0.18);
  background: rgba(255, 255, 255, 0.8);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(35, 69, 60, 0.18);
}
.nav-cta,
.button,
.showcase-card,
.whatsapp-float {
  will-change: transform;
}

.nav-cta:active,
.button:active,
.whatsapp-float:active {
  transform: translateY(0) scale(0.98);
}

.whatsapp-link {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.site-header:not(.scrolled) .nav-toggle {
  color: var(--white);
  background: rgba(17, 27, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f7a4f, #2b5d49);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(35, 69, 60, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(35, 69, 60, 0.32);
}

.whatsapp-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-text {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 40px;
}

.hero-media,
.cta-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.18s linear;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.1), transparent 38%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero,
.section,
.cta-section,
.maquete-section,
.footer {
  overflow-x: clip;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 27, 24, 0.78) 0%, rgba(17, 27, 24, 0.44) 38%, rgba(17, 27, 24, 0.12) 70%, rgba(17, 27, 24, 0.35) 100%),
    linear-gradient(180deg, rgba(17, 27, 24, 0.12) 0%, rgba(17, 27, 24, 0.36) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
}

.hero-copy {
  max-width: 620px;
  color: var(--white);
  padding-bottom: 10px;
}

.hero .eyebrow {
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.79rem;
  font-weight: 800;
  color: var(--gold);
}

.hero h1,
.section h2,
.cta-panel h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.85rem, 5.6vw, 5.3rem);
  max-width: 11ch;
  text-wrap: balance;
}

.lead {
  font-size: 1.02rem;
  max-width: 42ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero-badges,
.inline-list,
.pill-list,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: start;
}

.hero-financing {
  width: min(100%, 620px);
  margin-top: 28px;
  padding: 20px 22px 18px;
  border: 1px solid rgba(200, 179, 138, 0.62);
  background:
    linear-gradient(115deg, rgba(200, 179, 138, 0.18), transparent 48%),
    rgba(17, 27, 24, 0.82);
  box-shadow: 0 22px 46px rgba(7, 14, 12, 0.35);
  backdrop-filter: blur(14px);
}

.hero-financing-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 179, 138, 0.32);
}

.hero-financing-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-financing-heading > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-financing-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 12px 0 16px;
}

.hero-financing-highlight {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 8px;
  margin: 0;
}

.hero-financing-highlight span,
.hero-financing-highlight small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-financing-highlight span {
  grid-column: 1 / -1;
}

.hero-financing-highlight strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4.4vw, 3.8rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.hero-financing-copy {
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(200, 179, 138, 0.42);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-financing-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(200, 179, 138, 0.32);
}

.hero-financing-options span {
  min-height: 58px;
  display: grid;
  align-content: center;
  padding: 10px 14px 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}

.hero-financing-options span + span {
  border-left: 1px solid rgba(200, 179, 138, 0.32);
}

.hero-financing-options strong {
  display: block;
  color: var(--gold);
  font-size: 1.02rem;
}

.hero-financing-options small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.hero-badges span,
.inline-list span,
.pill-list span,
.feature-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-badges span:hover,
.inline-list span:hover,
.pill-list span:hover,
.feature-list span:hover {
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-copy .hero-actions {
  max-width: 560px;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-stats article,
.location-points article,
.stats-list article,
.tech-grid article,
.info-card,
.map-card,
.section-media,
.cta-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 69, 60, 0.08);
  box-shadow: var(--shadow);
}

.hero-stats article {
  border-radius: 24px;
  padding: 18px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--green);
}

.hero-stats span {
  color: var(--muted);
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--beige), #fff);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.reverse .section-copy {
  order: 2;
}

.reverse .section-media {
  order: 1;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 16ch;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading {
  margin-bottom: 34px;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-copy > p:not(.eyebrow) {
  max-width: 60ch;
}

.profile-copy h2 {
  max-width: 12ch;
}

.profile-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}

.profile-main-image {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(35, 69, 60, 0.18);
  border: 1px solid rgba(35, 69, 60, 0.08);
  transform: translateY(-4px);
}

.profile-main-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.profile-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(35, 69, 60, 0.14);
  border: 1px solid rgba(35, 69, 60, 0.08);
}

.section-media,
.map-card {
  border-radius: 32px;
  overflow: hidden;
}

.section-media img,
.map-card img,
.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.framed-image {
  min-height: 480px;
}

.framed-image img {
  min-height: 480px;
}

.inline-list {
  margin-top: 22px;
}

.inline-list span {
  background: rgba(35, 69, 60, 0.08);
  border-color: rgba(35, 69, 60, 0.08);
  color: var(--green);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-badges span:hover,
.inline-list span:hover,
.pill-list span:hover,
.feature-list span:hover {
  transform: translateY(-2px);
}

.small span {
  font-size: 0.94rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  border-radius: 24px;
  padding: 24px;
}

.info-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(35, 69, 60, 0.08);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.showcase-card {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--green);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-card:hover img {
  transform: scale(1.02);
}
.showcase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(35, 69, 60, 0.14);
}

.showcase-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.showcase-caption {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(16, 22, 20, 0.55);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.showcase-caption h3,
.showcase-caption p {
  margin: 0;
}

.maquete-section {
  background: linear-gradient(180deg, #fff, var(--beige));
}

.maquete-frame-wrap {
  position: relative;
  display: grid;
  gap: 0;
  background: rgba(245, 242, 236, 0.92);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(35, 69, 60, 0.08);
}

.maquete-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(35, 69, 60, 0.08);
  color: var(--green);
  font-weight: 800;
}

.maquete-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.maquete-expand-button,
.maquete-close-button {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(35, 69, 60, 0.16);
}

.maquete-expand-button:hover,
.maquete-close-button:hover {
  background: var(--green-2);
}

.maquete-close-button {
  display: none;
  background: #7d302d;
}

.maquete-frame-wrap.expanded {
  position: fixed;
  inset: 16px;
  z-index: 70;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(10, 16, 14, 0.38);
}

body.maquete-open .maquete-section .split.reveal {
  transform: none !important;
}

.maquete-frame-wrap.expanded .maquete-toolbar {
  background: var(--green);
  color: var(--white);
}

.maquete-frame-wrap.expanded .maquete-expand-button {
  display: none;
}

.maquete-frame-wrap.expanded .maquete-close-button {
  display: inline-flex;
}

.maquete-frame-wrap.expanded .maquete-frame {
  min-height: 0;
  height: 100%;
}

.maquete-frame-wrap.collapsed .maquete-frame,
.maquete-frame-wrap.collapsed .maquete-fallback {
  display: none;
}

.maquete-frame-wrap.collapsed .maquete-toolbar {
  min-height: 82px;
}

.maquete-toolbar a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.maquete-frame {
  width: 100%;
  min-height: 720px;
  border: 0;
  background: var(--white);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.maquete-frame:hover {
  filter: saturate(1.04) contrast(1.02);
}

.maquete-fallback {
  margin: 0;
  padding: 16px 18px 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

.maquete-section .section-copy {
  max-width: 540px;
}

.showcase-caption p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 16, 14, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  margin: 0;
  width: min(1100px, 100%);
  max-height: min(86vh, 920px);
  display: grid;
  gap: 12px;
}

.lightbox-frame img {
  width: 100%;
  max-height: calc(86vh - 72px);
  object-fit: contain;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-frame figcaption {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.location-points article,
.tech-grid article,
.stats-list article {
  border-radius: 22px;
  padding: 18px 20px;
}

.location-points strong,
.location-points span,
.tech-grid span,
.tech-grid strong,
.stats-list span,
.stats-list strong {
  display: block;
}

.location-points strong,
.tech-grid strong,
.stats-list strong {
  color: var(--green);
}

.map-card {
  min-height: 560px;
}

.map-card img {
  min-height: 560px;
}

.feature-list,
.pill-list {
  margin-top: 22px;
}

.feature-list span,
.pill-list span {
  background: rgba(35, 69, 60, 0.08);
  color: var(--green);
  border-color: rgba(35, 69, 60, 0.08);
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.tech-grid article {
  text-align: center;
}

.cta-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 29, 26, 0.12) 0%, rgba(20, 29, 26, 0.75) 100%);
}

.cta-panel {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  margin-top: 240px;
  padding: 32px;
  border-radius: 34px;
  max-width: 720px;
  background: rgba(245, 242, 236, 0.94);
}

.cta-panel h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
}

.cta-panel p {
  color: var(--muted);
  max-width: 58ch;
}

.footer {
  padding: 36px 0 50px;
  background: var(--green);
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer .brand-mark {
  background: rgba(255, 255, 255, 0.12);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer h3 {
  margin-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.visible {
  animation: heroLift 0.9s ease both;
}

@keyframes heroLift {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}
.hero-copy.visible {
  animation: heroLift 0.9s ease both;
}

@keyframes heroLift {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: rgba(35, 69, 60, 0.12);
    color: var(--green);
    font-weight: 800;
  }

  .site-header.scrolled .nav-toggle {
    color: var(--green);
    background: rgba(35, 69, 60, 0.12);
    border-color: transparent;
  }

  .hero-grid,
  .split,
  .footer-grid,
  .tech-grid,
  .card-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1,
  .section h2,
  .cta-panel h2 {
    max-width: none;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 14px 12px 12px;
  }

  .whatsapp-text {
    font-size: 0.92rem;
  }

  .brand-logo {
    height: 68px;
  }

  .brand-logo-nikolas {
    height: 235px;
    margin-top: -78px;
    margin-bottom: -78px;
  }

  .location-points,
  .stats-list {
    grid-template-columns: 1fr;
  }

  .reverse .section-copy,
  .reverse .section-media {
    order: initial;
  }

  .cta-panel {
    margin-top: 0;
  }

  .maquete-frame {
    min-height: 620px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 14px;
    display: block;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.4rem);
    line-height: 0.88;
    max-width: 7ch;
    letter-spacing: 0;
  }

  .hero-copy {
    max-width: none;
    width: 100%;
    padding-bottom: 0;
  }

  .hero .eyebrow {
    font-size: 0.95rem;
    line-height: 1.3;
    letter-spacing: 0.08em;
  }

  .lead,
  .section-copy p,
  .profile-copy p,
  .showcase-caption p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-copy .lead,
  .section-copy > p:nth-of-type(n + 2),
  .profile-copy p:nth-of-type(n + 2),
  .showcase-caption p {
    display: none;
  }

  .hero-copy .lead {
    display: block;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  }

  .hero-financing {
    margin-top: 20px;
    padding: 14px;
  }

  .hero-financing-heading {
    padding-bottom: 8px;
  }

  .hero-financing-label {
    font-size: 0.72rem;
  }

  .hero-financing-heading > span {
    font-size: 0.64rem;
  }

  .hero-financing-main {
    gap: 14px;
    padding: 10px 0 12px;
  }

  .hero-financing-copy {
    padding-left: 12px;
    font-size: 0.75rem;
  }

  .hero-financing-highlight {
    margin-bottom: 12px;
  }

  .hero-financing-highlight strong {
    font-size: 3.25rem;
  }

  .hero-financing-highlight span,
  .hero-financing-highlight small {
    font-size: 0.75rem;
  }

  .hero-financing-options {
    gap: 0;
  }

  .hero-financing-options span {
    min-height: 58px;
    padding: 8px;
  }

  .hero-financing-options strong {
    font-size: 0.92rem;
  }

  .section-copy > p:first-of-type,
  .profile-copy p:first-of-type {
    display: block;
  }

  main .section {
    display: block;
  }

  .hero-badges {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-badges span {
    font-size: 0.82rem;
    padding: 10px 12px;
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .brand-logo {
    height: 56px;
  }

  .brand-logo-nikolas {
    height: 193px;
    margin-top: -64px;
    margin-bottom: -64px;
  }

  .section {
    padding: 38px 0;
  }

  .section#nikolas,
  .section#diferenciais,
  .section#parque-linear,
  .section#localizacao,
  .section#cbl,
  .section#cta-final {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section#infraestrutura {
    display: none;
  }

  .profile-copy p:nth-of-type(n + 3) {
    display: none;
  }

  .profile-gallery {
    display: none;
  }

  .section#cbl .stats-list {
    display: none;
  }

  .section#cbl .section-media,
  .section#cbl .section-media img {
    min-height: 260px;
  }

  .section#localizacao .inline-list {
    display: none;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading .eyebrow {
    margin-bottom: 20px;
  }

  .section-heading h2 {
    line-height: 1.02;
    letter-spacing: 0;
  }

  .card-grid,
  .showcase-grid {
    gap: 26px;
  }

  .card-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 10px 18px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pinch-zoom;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .card-grid::-webkit-scrollbar {
    display: none;
  }

  .card-grid .info-card {
    flex: 0 0 min(86vw, 350px);
    scroll-snap-align: start;
  }

  .showcase-grid.mobile-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 10px 18px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pinch-zoom;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .showcase-grid.mobile-gallery::-webkit-scrollbar {
    display: none;
  }

  .showcase-grid.mobile-gallery .showcase-card {
    flex: 0 0 min(86vw, 350px);
    min-height: 300px;
    scroll-snap-align: start;
  }

  .section h2 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
    max-width: none;
  }

  .hero-stats {
    display: none;
  }

  .hero .lead,
  .section-copy p,
  .profile-copy p,
  .info-card p,
  .location-points span,
  .stats-list span,
  .tech-grid span {
    font-size: 1rem;
    line-height: 1.55;
  }

  .inline-list,
  .pill-list,
  .feature-list,
  .location-points,
  .stats-list,
  .tech-grid {
    display: grid;
    gap: 12px;
  }

  .location-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .inline-list,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(35, 69, 60, 0.1);
    border-radius: 20px;
    background: rgba(35, 69, 60, 0.04);
  }

  .pill-list span {
    padding: 7px 10px;
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .maquete-fallback {
    display: block;
  }

  .hero-stats article {
    padding: 10px 8px 10px;
    min-height: 94px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    gap: 4px;
    text-align: center;
  }

  .hero-stats strong {
    display: block;
    font-size: clamp(1.8rem, 6vw, 2.3rem);
    line-height: 0.9;
    margin-bottom: 2px;
    letter-spacing: -0.05em;
  }

  .hero-stats span {
    display: block;
    font-size: 0.68rem;
    line-height: 1.1;
    text-align: center;
    width: 100%;
  }

  .button,
  .nav-cta {
    width: 100%;
    min-height: 52px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 0.96rem;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
    justify-content: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .ghost {
    display: none;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    position: relative;
    padding-right: 0;
  }

  .info-card,
  .location-points article,
  .tech-grid article,
  .stats-list article,
  .cta-panel {
    border-radius: 24px;
  }

  .framed-image,
  .map-card {
    min-height: 340px;
  }

  .framed-image img,
  .map-card img {
    min-height: 340px;
  }

  .cta-section {
    min-height: 700px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .showcase-card {
    min-height: 220px;
    border-radius: 18px;
  }

  .showcase-card img {
    filter: saturate(1.05);
  }

  .showcase-card:hover {
    transform: translateY(-2px);
  }

  .showcase-caption {
    inset: auto 8px 8px 8px;
    padding: 10px 12px;
  }

  .showcase-caption h3 {
    font-size: 0.8rem;
  }

  .showcase-caption p {
    display: none;
  }

  .section#hero {
    min-height: auto;
    padding-top: 84px;
  }

  .section#lazer {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .section#lazer .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    max-width: none;
    line-height: 1.08;
  }

  .section#lazer .section-heading {
    margin-bottom: 12px;
  }

  .section#lazer .eyebrow {
    margin-bottom: 8px;
  }

  .mobile-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-card {
    min-height: 180px;
    border-radius: 18px;
  }

  .maquete-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .maquete-toolbar-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .maquete-expand-button,
  .maquete-close-button {
    min-height: 46px;
  }

  .maquete-frame-wrap.expanded {
    inset: 8px;
  }

  .maquete-frame {
    min-height: 540px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}