/* =========================================================
   Residencial Passo Petrópolis · Landing Page (Cintia Schweig)
   Paleta e tipografia extraídas do book Procon/TGD:
   greige #CCC2B6 · creme #F5EDE7 · marrom #564640 · terracota da Cintia
   ========================================================= */
:root {
  --terra: #a5705e;
  --terra-2: #bb8672;
  --terra-3: #8c5a48;
  --terra-l: #d8ac99;
  --taupe: #ccc2b6;
  --taupe-2: #dad2c8;
  --taupe-3: #b8ada0;
  --cream: #f5ede7;
  --cream-2: #fbf8f4;
  --brown: #564640;
  --ink: #3b322c;
  --muted: #7a6d65;
  --line: rgba(59, 50, 44, .16);
  --line-light: rgba(245, 237, 231, .2);

  --sans: "Montserrat", "Helvetica Neue", Arial, system-ui, sans-serif;
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --radius: 2px;
  --radius-lg: 10px;
  --shadow: 0 40px 80px -42px rgba(59, 44, 36, .5);
  --container: 1240px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
strong { font-weight: 600; }
figure { margin: 0; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: clamp(18px, 4vw, 36px); }
.skip { position: absolute; left: -9999px; top: 0; background: var(--brown); color: var(--cream); padding: 10px 16px; z-index: 999; }
.skip:focus { left: 12px; top: 12px; }

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px;
  font-size: 10.5px; font-weight: 500; letter-spacing: .38em; text-transform: uppercase; color: var(--terra);
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; opacity: .8; }
.eyebrow--light { color: var(--terra-l); }
/* Títulos: geométrico fino em caixa alta, como as aberturas do book */
.title {
  font-family: var(--sans); font-weight: 200; font-size: clamp(28px, 3.5vw, 46px); line-height: 1.16;
  letter-spacing: .055em; text-transform: uppercase; margin: 0 0 24px; color: var(--brown);
}
.title em { font-style: normal; color: var(--terra); }
.title--light { color: var(--cream); }
.title--light em { color: var(--terra-l); }
/* Frases de marca: serifada em itálico, como as citações do book */
.quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.2vw, 42px); line-height: 1.22; letter-spacing: -.01em; color: var(--brown); margin: 0 0 22px;
}
.quote--light { color: var(--cream); }
.quote em { font-style: italic; color: var(--terra); }
.lead { font-size: clamp(16px, 1.4vw, 18px); font-weight: 300; line-height: 1.85; margin: 0 0 20px; }
p { margin: 0 0 16px; }
.caps { font-size: 11px; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; }
.sub { color: var(--muted); max-width: 660px; margin-inline: auto; }
.section__head { text-align: center; max-width: 820px; margin: 0 auto clamp(40px, 5vw, 66px); }
.section__head .eyebrow::after { content: ""; width: 38px; height: 1px; background: currentColor; opacity: .8; }

.section { padding-block: clamp(72px, 10vw, 132px); position: relative; }
.section--taupe { background: var(--taupe); }
.section--cream2 { background: var(--cream-2); }
.section--brown { background: var(--brown); color: var(--cream); }

/* ---------- Botões ---------- */
.btn {
  --bg: var(--terra); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; position: relative;
  min-height: 54px; padding: 0 30px; border-radius: 40px; background: var(--bg); color: var(--fg);
  font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; text-decoration: none;
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { --bg: var(--terra-3); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible, .tab:focus-visible, .chip:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--terra-2); outline-offset: 3px; }
.btn--sm { min-height: 42px; padding: 0 22px; font-size: 10px; }
.btn--block { width: 100%; }
.btn--line { --bg: transparent; --fg: var(--brown); box-shadow: inset 0 0 0 1px var(--line); }
.btn--line:hover { --bg: var(--brown); --fg: var(--cream); }
.btn--brown { --bg: var(--brown); }
.btn--brown:hover { --bg: var(--terra); }
.btn--ghost { --bg: transparent; --fg: var(--cream); box-shadow: inset 0 0 0 1px rgba(245, 237, 231, .5); }
.btn--ghost:hover { --bg: var(--cream); --fg: var(--ink); }
.btn__spinner { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(245, 237, 231, .4); border-top-color: var(--cream); animation: spin .8s linear infinite; }
.btn.is-loading .btn__label { opacity: .5; }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.link-arrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; text-decoration: none; color: var(--terra); margin-top: 10px; }
.link-arrow::after { content: "→"; font-size: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover::after { transform: translateX(6px); }

/* ---------- Selo Pronto para morar ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--terra); color: var(--cream);
  padding: 9px 20px; border-radius: 40px; font-size: 10px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; margin-bottom: 22px; align-self: flex-start;
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cream); }
.badge--solid { background: var(--brown); }

/* ---------- Header ---------- */
.header { position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h); background: rgba(245, 237, 231, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease); }
.header.is-scrolled { box-shadow: 0 1px 0 var(--line); --header-h: 68px; }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.header__logo img { height: 46px; width: auto; transition: height .4s var(--ease); }
.header.is-scrolled .header__logo img { height: 40px; }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a { font-size: 10.5px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; text-decoration: none; position: relative; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--terra); transition: right .35s var(--ease); }
.nav a:hover::after { right: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--taupe); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr) minmax(376px, .72fr); min-height: max(760px, 100svh); }
.hero__copy { padding: calc(var(--header-h) + clamp(30px, 5vh, 66px)) clamp(18px, 3vw, 54px) 54px max(clamp(18px, 4vw, 36px), calc((100vw - 1440px) / 2 + 36px)); display: flex; flex-direction: column; justify-content: center; }
.hero__title {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(42px, 4.8vw, 76px); line-height: 1.04; letter-spacing: -.015em; margin: 0 0 24px; color: var(--brown);
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: var(--terra); }
.hero__lead { font-size: 11px; font-weight: 500; letter-spacing: .3em; line-height: 2.2; text-transform: uppercase; color: var(--brown); max-width: 480px; margin: 0 0 32px; }
.specbar { display: inline-grid; grid-template-columns: repeat(4, auto); align-items: center; align-self: flex-start; list-style: none; margin: 0; padding: 18px 4px; background: var(--cream-2); border-radius: var(--radius-lg); box-shadow: 0 20px 44px -34px rgba(59, 44, 36, .6); }
.specbar li { display: flex; align-items: center; gap: 10px; padding: 0 14px; font-size: 12.5px; line-height: 1.3; font-weight: 500; white-space: nowrap; }
.specbar li + li { border-left: 1px solid var(--line); }
.specbar svg { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--terra); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.specbar small { display: block; font-size: 10.5px; font-weight: 400; color: var(--muted); }
.address { display: flex; align-items: center; gap: 14px; margin-top: 28px; font-size: 13.5px; line-height: 1.55; }
.address svg { width: 24px; height: 32px; fill: var(--terra); flex: none; }
.hero__media { position: relative; min-height: 100%; }
.hero__media picture, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 38% 50%; }
.hero__form { background: var(--cream-2); padding: calc(var(--header-h) + 20px) clamp(20px, 2.6vw, 44px) 36px; display: flex; flex-direction: column; justify-content: center; }
.hero__form .card-form { background: transparent; box-shadow: none; padding: 0; backdrop-filter: none; -webkit-backdrop-filter: none; max-width: 420px; }

/* ---------- Card de formulário ---------- */
.card-form { background: var(--cream-2); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow); color: var(--ink); }
.card-form__kicker { font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--terra); margin: 0 0 10px; }
.card-form__title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(25px, 2.3vw, 32px); line-height: 1.12; margin: 0 0 20px; color: var(--brown); }
.lead-form { display: grid; gap: 12px; }
.field { display: grid; gap: 4px; position: relative; }
.field label { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.field input, .field select {
  width: 100%; min-height: 46px; padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink); font: inherit; font-weight: 400; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23a5705e' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(165, 112, 94, .16); }
.field.is-invalid input { border-color: #b3261e; }
.field__error { font-size: 12px; color: #b3261e; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 11.5px; line-height: 1.55; color: var(--muted); }
.consent input { accent-color: var(--terra); margin-top: 2px; }
.form-msg { font-size: 13px; margin: 0; min-height: 0; }
.form-msg.is-ok { color: #3f6b3a; }
.form-msg.is-error { color: #b3261e; }
.form-msg a { color: inherit; font-weight: 600; }

/* ---------- Faixa de números ---------- */
.numbers { background: var(--brown); color: var(--cream); padding-block: clamp(38px, 5vw, 58px); }
.numbers__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.num { text-align: center; padding-inline: 8px; }
.num + .num { border-left: 1px solid var(--line-light); }
.num strong { display: block; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(32px, 3.4vw, 46px); line-height: 1; color: var(--terra-l); margin-bottom: 10px; }
.num strong small { font-size: .42em; margin-left: 3px; font-style: normal; }
.num span { display: block; font-size: 10px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: rgba(245, 237, 231, .78); line-height: 1.7; }

/* ---------- Conceito ---------- */
.concept__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 104px); align-items: center; }
.concept__photos { position: relative; padding: 0 16% 20% 0; }
.concept__photos .main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.concept__photos .main img { width: 100%; height: 100%; object-fit: cover; }
.concept__photos .alt { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; border: 9px solid var(--cream); box-shadow: var(--shadow); }
.concept__photos .alt img { width: 100%; height: 100%; object-fit: cover; }
.concept__photos::before { content: ""; position: absolute; left: -26px; top: 16%; width: 32%; height: 72%; background: var(--terra); border-radius: var(--radius-lg); z-index: -1; }
.concept blockquote { margin: 30px 0 0; padding: 20px 0 0 26px; border-left: 1px solid var(--terra); font-family: var(--serif); font-size: clamp(21px, 1.9vw, 26px); font-style: italic; line-height: 1.38; color: var(--terra-3); }
.mark { width: 40px; height: 40px; stroke: var(--terra); fill: none; stroke-width: 1.1; margin-bottom: 18px; }

/* ---------- Imagem larga ---------- */
.wide { position: relative; }
.wide img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.wide figcaption, .caption { font-size: 11px; letter-spacing: .1em; color: var(--muted); margin-top: 10px; }
.wide--overlay figcaption { position: absolute; left: clamp(18px, 4vw, 36px); bottom: 16px; margin: 0; color: rgba(255, 255, 255, .88); }

/* ---------- Entregue pronto (diferenciais) ---------- */
.ready { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(34px, 4vw, 52px); }
.ready__item { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; }
.ready__item svg { width: 34px; height: 34px; fill: none; stroke: var(--terra); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 18px; }
.ready__item h3 { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 10px; color: var(--brown); }
.ready__item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.7; }

/* ---------- Apartamento ---------- */
.apt__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(36px, 6vw, 84px); align-items: start; margin-top: clamp(30px, 4vw, 48px); }
.checks { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 0; }
.checks li { display: flex; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.checks li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--terra); flex: none; }
.section--brown .checks li { border-color: var(--line-light); }
.apt__pics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.apt__pics button { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 10; position: relative; background: var(--taupe-2); }
.apt__pics button:first-child { grid-column: 1 / -1; aspect-ratio: 21 / 10; }
.apt__pics img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.apt__pics button:hover img { transform: scale(1.04); }

.tag { position: absolute; left: 14px; bottom: 14px; background: rgba(59, 50, 44, .6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: var(--cream); padding: 6px 13px; border-radius: 30px; font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }

/* ---------- Abas (apartamentos e plantas) ---------- */
.tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.tab { padding: 12px 24px; border-radius: 40px; border: 1px solid var(--line); font-size: 10.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; transition: all .3s var(--ease); }
.tab:hover { border-color: var(--terra); color: var(--terra); }
.tab.is-active { background: var(--terra); border-color: var(--terra); color: var(--cream); }

/* ---------- Plantas ---------- */
.plan { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: center; background: var(--cream-2); border-radius: var(--radius-lg); padding: clamp(18px, 3vw, 42px); }
.plan__img { display: block; width: 100%; position: relative; background: #efe9e2; border-radius: var(--radius); overflow: hidden; }
.plan__img img { width: 100%; max-height: 620px; object-fit: contain; margin: 0 auto; }
.zoom { position: absolute; right: 12px; bottom: 12px; background: var(--brown); color: var(--cream); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; padding: 7px 13px; border-radius: 30px; }
.plan__floor { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.plan__info h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(30px, 3vw, 44px); line-height: 1.06; margin: 0 0 20px; color: var(--brown); }
.plan__info h3 em { font-style: italic; color: var(--terra); }
.note { font-size: 13px; color: var(--muted); }
.disclaimer { font-size: 11.5px; color: var(--muted); text-align: center; max-width: 880px; margin: 26px auto 0; line-height: 1.7; }
.disclaimer--light { color: rgba(245, 237, 231, .6); }

/* ---------- Tipologias ---------- */
.types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.type { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; background: var(--cream-2); display: flex; flex-direction: column; }
.type__n { font-size: 10.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--terra); }
.type h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 30px; line-height: 1.06; margin: 12px 0 6px; color: var(--brown); }
.type p { color: var(--muted); font-size: 13.5px; flex: 1; margin-bottom: 6px; }
.type--main { background: var(--terra); color: var(--cream); border-color: var(--terra); }
.type--main .type__n { color: var(--terra-l); }
.type--main h3 { color: var(--cream); }
.type--main p { color: rgba(245, 237, 231, .88); }

/* ---------- Lazer ---------- */
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(150px, 16vw, 228px); gap: 14px; }
.mosaic__item { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--taupe-3); }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.mosaic__item:hover img { transform: scale(1.05); }
.mosaic__item--a { grid-column: span 7; grid-row: span 2; }
.mosaic__item--b { grid-column: span 5; grid-row: span 1; }
.mosaic__item--c { grid-column: span 5; grid-row: span 1; }
.mosaic__item--d { grid-column: span 12; grid-row: span 1; }
.mosaic__item--e { grid-column: span 4; grid-row: span 1; }
.mosaic__item--f { grid-column: span 4; grid-row: span 1; }
.mosaic__item--g { grid-column: span 4; grid-row: span 1; }
.amenities { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 0; margin: 42px 0 0; }
.amenities li { border: 1px solid var(--line); border-radius: 40px; padding: 8px 18px; font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }

/* ---------- Implantação ---------- */
.floors { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.floor { background: rgba(245, 237, 231, .06); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: clamp(18px, 2.5vw, 30px); }
.floor h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 28px; margin: 0 0 16px; color: var(--cream); }
.floor__img { display: block; width: 100%; border-radius: var(--radius); overflow: hidden; background: #efe9e2; }
.floor ol { columns: 2; gap: 18px; padding: 0; margin: 20px 0 0; list-style: none; counter-reset: f; }
.floor li { counter-increment: f; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 0; break-inside: avoid; color: rgba(245, 237, 231, .85); display: flex; gap: 10px; align-items: center; }
.floor li::before { content: counter(f, decimal-leading-zero); width: 24px; height: 24px; border-radius: 50%; background: var(--terra); color: var(--cream); display: grid; place-items: center; font-size: 9.5px; letter-spacing: 0; flex: none; }

/* ---------- CTA intermediário ---------- */
.band { position: relative; color: var(--cream); text-align: center; padding-block: clamp(92px, 13vw, 164px); overflow: hidden; isolation: isolate; }
.band__bg, .band__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::after { content: ""; position: absolute; inset: 0; background: rgba(46, 38, 33, .58); z-index: -1; }
.band .band__title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(36px, 4.8vw, 64px); line-height: 1.08; margin: 0 0 18px; max-width: 16ch; margin-inline: auto; color: var(--cream); }
.band .band__title em { font-style: italic; color: var(--terra-l); }
.band p { max-width: 640px; margin: 0 auto 30px; font-weight: 300; font-size: 17px; color: rgba(245, 237, 231, .9); }

/* ---------- Localização ---------- */
.location__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--taupe); display: block; width: 100%; }
.near { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; }
.near li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; display: flex; gap: 12px; align-items: center; }
.near li b { font-weight: 600; color: var(--terra); font-size: 12px; letter-spacing: .06em; flex: none; min-width: 52px; }
.near svg { width: 16px; height: 16px; flex: none; fill: none; stroke: var(--terra); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Ficha técnica ---------- */
.signatures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 10px; }
.sig { border-top: 1px solid var(--terra); padding-top: 22px; }
.sig dt { font-size: 10px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.sig dd { margin: 0; font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.16; color: var(--brown); }
.sig p { font-size: 13px; color: var(--muted); margin-top: 10px; }
.builder { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; margin-top: clamp(52px, 7vw, 86px); }
.builder__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.builder__stats div { background: var(--terra); color: var(--cream); border-radius: var(--radius-lg); padding: 26px; }
.builder__stats strong { display: block; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 44px; line-height: 1; margin-bottom: 8px; }
.builder__stats span { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; line-height: 1.7; display: block; }

/* ---------- CTA final ---------- */
.final { position: relative; color: var(--cream); overflow: hidden; isolation: isolate; padding-block: clamp(80px, 10vw, 136px); }
.final__bg, .final__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.final__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43, 35, 30, .93) 0%, rgba(43, 35, 30, .74) 55%, rgba(43, 35, 30, .44) 100%); z-index: -1; }
.final__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 86px); align-items: center; }
.final__logo { width: 210px; margin-bottom: 32px; }
.final p { color: rgba(245, 237, 231, .88); font-weight: 300; font-size: 16.5px; }
.broker { display: flex; align-items: center; gap: 20px; margin: 32px 0 24px; padding-top: 26px; border-top: 1px solid var(--line-light); }
.broker img { height: 58px; width: auto; }
.wa-link { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 400; letter-spacing: .04em; color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(245, 237, 231, .4); padding-bottom: 4px; }
.wa-link svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(245, 237, 231, .75); padding-block: 58px 110px; font-size: 13px; }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.footer__brand img { height: 50px; width: auto; margin-bottom: 14px; }
.footer__creci { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; }
.footer__contact { justify-self: end; text-align: right; }
.footer__contact a { color: var(--cream); }
.footer__legal { grid-column: 1 / -1; font-size: 10.5px; line-height: 1.8; color: rgba(245, 237, 231, .5); border-top: 1px solid var(--line-light); padding-top: 26px; margin: 0; }

/* ---------- WhatsApp flutuante / barra mobile ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .45); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.mobile-bar { display: none; }

/* ---------- Modal ---------- */
.modal { width: min(460px, calc(100vw - 32px)); border: 0; padding: 34px; border-radius: var(--radius-lg); background: var(--cream-2); color: var(--ink); box-shadow: var(--shadow); }
.modal::backdrop { background: rgba(46, 38, 33, .68); backdrop-filter: blur(4px); }
.modal__close { position: absolute; right: 14px; top: 10px; font-size: 30px; line-height: 1; color: var(--muted); width: 40px; height: 40px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(28, 24, 21, .95); display: grid; place-items: center; padding: 60px 70px; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 120px); object-fit: contain; border-radius: var(--radius); background: #efe9e2; }
.lightbox button { position: absolute; color: var(--cream); font-size: 40px; width: 56px; height: 56px; }
.lightbox__close { top: 12px; right: 16px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1280px) {
  .nav { gap: 20px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, .75fr) minmax(356px, .8fr); }
  .ready { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .nav { display: none; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { padding: calc(var(--header-h) + 34px) clamp(18px, 4vw, 36px) 38px; }
  .hero__media { min-height: 0; padding: 0 clamp(18px, 4vw, 36px); }
  .hero__media picture { position: relative; display: block; height: 66vh; max-height: 640px; border-radius: var(--radius-lg); overflow: hidden; }
  .hero__form { background: transparent; padding: 0 clamp(18px, 4vw, 36px) 54px; }
  .hero__form .card-form { background: var(--cream-2); box-shadow: var(--shadow); padding: clamp(22px, 4vw, 34px); max-width: 560px; margin: -110px auto 0; position: relative; }
  .numbers__grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .num:nth-child(4) { border-left: 0; }
  .concept__grid, .apt__grid, .location__grid, .final__grid, .builder { grid-template-columns: 1fr; }
  .plan { grid-template-columns: 1fr; }
  .types { grid-template-columns: 1fr 1fr; }
  .signatures { grid-template-columns: 1fr 1fr; }
  .floors { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  :root { --header-h: 66px; }
  .header__logo img { height: 36px; }
  .header .btn { display: none; }
  .specbar { grid-template-columns: 1fr 1fr; gap: 14px 0; padding: 16px 4px; width: 100%; }
  .specbar li { flex-direction: column; text-align: center; gap: 6px; padding: 0 8px; font-size: 11.5px; }
  .specbar li:nth-child(3) { border-left: 0; }
  .specbar small { font-size: 10.5px; }
  .hero__lead { font-size: 10.5px; letter-spacing: .24em; }
  .hero__media picture { height: 56vh; }
  .hero__form .card-form { margin-top: -70px; }
  .field-row { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  .num { border-left: 0 !important; }
  .num:last-child { grid-column: 1 / -1; }
  .ready { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
  .mosaic__item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .mosaic__item--a, .mosaic__item--d { grid-column: span 2 !important; grid-row: span 2 !important; }
  .tag { left: 8px; bottom: 8px; padding: 4px 10px; font-size: 9px; letter-spacing: .14em; }
  .wide img { aspect-ratio: 4 / 3; }
  .apt__pics { grid-template-columns: 1fr; }
  .apt__pics button:first-child { aspect-ratio: 16 / 10; }
  .near { grid-template-columns: 1fr; }
  .types { grid-template-columns: 1fr; }
  .signatures { grid-template-columns: 1fr; }
  .floor ol { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__contact { justify-self: start; text-align: left; }
  .wa-float { display: none; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1.4fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(245, 237, 231, .96); backdrop-filter: blur(10px); box-shadow: 0 -1px 0 var(--line); transform: translateY(110%); transition: transform .4s var(--ease); }
  .mobile-bar.is-visible { transform: none; }
  .mobile-bar.no-wa { grid-template-columns: 1fr; }
  .mobile-bar .btn { min-height: 48px; padding: 0 12px; }
  .mobile-bar .btn--ghost { --fg: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
  .lightbox { padding: 50px 10px; }
  .modal { padding: 28px 22px; }
}
