
:root {
  --navy:#0b57a4;
  --navy-deep:#083b75;
  --sky:#2b6fbe;
  --sand:#dce9f8;
  --sand-soft:#eff4fa;
  --stone:#f5f8fc;
  --ink:#1b2430;
  --muted:#5d6878;
  --line:rgba(15,43,78,.12);
  --white:#ffffff;
  --shadow:0 18px 48px rgba(17,35,68,.12);
  --radius:22px;
  --container:min(1180px, calc(100vw - 32px));
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg, #f5f8fc 0%, #fff 26%, #f6f9fd 100%);
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
button, input, select, textarea { font:inherit; }
.container { width:var(--container); margin:0 auto; }
.section { padding:88px 0; }
.eyebrow { display:inline-block; padding:8px 12px; border-radius:999px; background:rgba(22,59,108,.08); color:var(--navy); font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.section-head { max-width:760px; margin-bottom:28px; }
.section-head h2 { margin:14px 0 10px; font-size:clamp(30px, 4vw, 54px); line-height:1.05; font-family: Georgia, 'Times New Roman', serif; color:var(--navy-deep); }
.section-head p { margin:0; font-size:18px; line-height:1.7; color:var(--muted); }
.kicker { font-size:14px; letter-spacing:.12em; text-transform:uppercase; color:var(--navy); font-weight:700; }
.header {
  position:sticky; top:0; z-index:70;
  backdrop-filter:saturate(180%) blur(18px);
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(15,43,78,.08);
}
.header-inner { min-height:74px; display:flex; align-items:center; justify-content:space-between; gap:18px; }
.brand { display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.04em; }
.brand-mark {
  width:42px; height:42px; border-radius:14px;
  background:linear-gradient(180deg, var(--navy) 0%, #234f87 100%);
  color:#fff; display:grid; place-items:center; font-size:15px; font-weight:800;
  box-shadow:0 10px 22px rgba(22,59,108,.26);
}
.brand-text small { display:block; font-size:11px; text-transform:uppercase; letter-spacing:.16em; color:var(--muted); font-weight:700; }
.brand-text strong { display:block; font-size:17px; color:var(--navy-deep); }
.nav { display:flex; gap:18px; align-items:center; }
.nav-links { display:flex; gap:18px; align-items:center; }
.nav a { font-size:14px; color:var(--muted); }
.nav a:hover { color:var(--navy-deep); }
.lang-switch { display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.lang-switch a {
  display:inline-flex; align-items:center; justify-content:center; min-width:38px; height:34px; padding:0 10px;
  border-radius:999px; border:1px solid rgba(15,43,78,.1); font-size:12px; color:var(--muted); background:#fff;
}
.lang-switch a.active { background:var(--navy); color:#fff; border-color:var(--navy); }
.hero { position:relative; overflow:hidden; background:linear-gradient(135deg, #083b75 0%, #0b57a4 48%, #0d67bf 100%); color:#fff; }
.hero::after {
  content:''; position:absolute; inset:auto 0 0 0; height:180px;
  background:linear-gradient(180deg, rgba(10,22,40,0) 0%, rgba(250,248,245,1) 100%);
}
.hero-inner {
  min-height:min(900px, 100svh);
  display:grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  align-items:center; gap:28px; padding:80px 0 96px; position:relative; z-index:1;
}
.hero-copy { max-width:720px; }
.hero-copy .eyebrow { background:rgba(255,255,255,.14); color:#fff; }
.hero h1 {
  margin:18px 0 14px; font-size:clamp(42px, 8vw, 82px); line-height:.95; letter-spacing:-.03em;
  font-family: Georgia, 'Times New Roman', serif;
}
.hero p { max-width:640px; margin:0 0 26px; font-size:clamp(18px, 2vw, 22px); line-height:1.7; color:rgba(255,255,255,.88); }
.hero-badges { display:flex; flex-wrap:wrap; gap:12px; margin:22px 0 28px; }
.hero-badges span {
  display:inline-flex; align-items:center; gap:8px; padding:11px 14px; border-radius:999px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); font-size:14px;
}
.cta-row { display:flex; gap:14px; flex-wrap:wrap; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:54px;
  padding:0 22px; border-radius:999px; border:1px solid transparent; font-weight:700; transition:.2s transform, .2s box-shadow, .2s background;
}
.btn:hover { transform:translateY(-1px); }
.btn-primary { background:#fff; color:var(--navy-deep); box-shadow:0 16px 40px rgba(0,0,0,.16); }
.btn-secondary { background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.28); }
.hero-card, .card {
  background:rgba(255,255,255,.96); color:var(--ink); border:1px solid rgba(255,255,255,.42); box-shadow:var(--shadow);
  border-radius:28px;
}
.hero-card { padding:24px; align-self:end; }
.hero-card h3 { margin:4px 0 8px; font-size:28px; font-family:Georgia, 'Times New Roman', serif; color:var(--navy-deep); }
.hero-card p { margin:0 0 16px; font-size:15px; color:var(--muted); line-height:1.6; }
.form-grid { display:grid; gap:12px; }
.field label { display:block; margin-bottom:6px; font-size:13px; font-weight:700; color:var(--navy-deep); }
.field input, .field select, .field textarea {
  width:100%; min-height:52px; padding:14px 16px; border-radius:16px; border:1px solid rgba(15,43,78,.12); background:#fff;
}
.field textarea { min-height:110px; resize:vertical; }
.form-note { font-size:12px; line-height:1.55; color:var(--muted); }
.stats-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; margin-top:28px; }
.stat { padding:24px; border-radius:24px; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow); }
.stat strong { display:block; font-size:40px; line-height:1; color:var(--navy-deep); font-family:Georgia, 'Times New Roman', serif; }
.stat span { display:block; margin-top:8px; font-size:14px; color:var(--muted); }
.split { display:grid; grid-template-columns: 1fr 1fr; gap:30px; align-items:center; }
.image-card img { border-radius:26px; box-shadow:var(--shadow); }
.feature-list { display:grid; gap:14px; }
.feature-item {
  padding:18px 18px 18px 62px; position:relative; border-radius:22px; background:#fff; border:1px solid var(--line);
}
.feature-item::before {
  content:'•'; position:absolute; left:20px; top:18px; width:28px; height:28px; border-radius:50%; background:rgba(22,59,108,.09);
  color:var(--navy); display:grid; place-items:center; font-weight:700;
}
.feature-item h3 { margin:0 0 6px; font-size:18px; color:var(--navy-deep); }
.feature-item p { margin:0; color:var(--muted); line-height:1.65; }
.typology-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.typology-card { overflow:hidden; border-radius:26px; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow); }
.typology-card img { aspect-ratio: 1.1 / 0.85; object-fit:cover; width:100%; }
.typology-body { padding:20px; }
.typology-body h3 { margin:0 0 8px; font-size:26px; color:var(--navy-deep); font-family:Georgia, 'Times New Roman', serif; }
.typology-body .area { color:var(--navy); font-weight:700; font-size:14px; text-transform:uppercase; letter-spacing:.05em; }
.typology-body p { margin:10px 0 0; color:var(--muted); line-height:1.65; }
.typology-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.btn-chip {
  min-height:42px; padding:0 16px; border-radius:999px; background:rgba(22,59,108,.08); color:var(--navy-deep); border:none; font-weight:700; cursor:pointer;
}
.gallery-grid {
  display:grid; grid-template-columns:1.15fr .85fr; gap:18px;
}
.gallery-column { display:grid; gap:18px; }
.gallery-grid img, .gallery-column img { border-radius:26px; box-shadow:var(--shadow); width:100%; object-fit:cover; }
.gallery-grid .tall { height:100%; min-height:540px; }
.gallery-grid .small { min-height:260px; }
.amenities {
  display:grid; grid-template-columns:1.1fr .9fr; gap:26px; align-items:start;
}
.amenity-panel { padding:26px; border-radius:28px; background:linear-gradient(180deg, rgba(22,59,108,.06), rgba(255,255,255,1)); border:1px solid var(--line); }
.amenity-list { display:grid; grid-template-columns:repeat(2, 1fr); gap:14px; margin-top:18px; }
.amenity-list div {
  padding:16px; border-radius:20px; background:#fff; border:1px solid var(--line); min-height:92px;
}
.amenity-list strong { display:block; color:var(--navy-deep); margin-bottom:6px; }
.facts-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; }
.fact-card { padding:22px; border-radius:24px; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow); }
.fact-card h3 { margin:0 0 8px; font-size:20px; color:var(--navy-deep); }
.fact-card p { margin:0; color:var(--muted); line-height:1.65; }
.notice {
  margin-top:18px; padding:18px 20px; border-radius:22px; background:rgba(22,59,108,.05); border:1px solid rgba(22,59,108,.08); color:var(--muted); font-size:14px; line-height:1.65;
}
.faq { display:grid; gap:12px; }
.faq details { padding:20px 22px; border-radius:20px; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow); }
.faq summary { cursor:pointer; font-weight:700; color:var(--navy-deep); }
.faq p { margin:12px 0 0; color:var(--muted); line-height:1.65; }
.contact-panel {
  display:grid; grid-template-columns:.95fr 1.05fr; gap:24px;
  padding:26px; border-radius:30px; background:linear-gradient(135deg, #083b75 0%, #0b57a4 52%, #0d67bf 100%); color:#fff;
  box-shadow:0 24px 56px rgba(10,21,39,.22);
}
.contact-panel h2 { margin:16px 0 10px; color:#fff; font-family:Georgia, 'Times New Roman', serif; font-size:clamp(34px, 4vw, 54px); line-height:1.02; }
.contact-panel p { color:rgba(255,255,255,.84); line-height:1.75; }
.contact-panel .hero-card { background:#fff; align-self:stretch; }
.footer {
  padding:26px 0 92px; color:var(--muted); font-size:14px;
}
.footer-grid { display:grid; gap:10px; }
.sticky-mobile {
  position:fixed; left:12px; right:12px; bottom:12px; z-index:80; display:none; gap:10px;
  padding:10px; border-radius:22px; background:rgba(255,255,255,.94); backdrop-filter: blur(18px); box-shadow:0 16px 40px rgba(0,0,0,.14);
}
.sticky-mobile .btn { flex:1; min-height:48px; padding:0 12px; font-size:14px; }
.whats-float {
  position:fixed; right:22px; bottom:24px; width:60px; height:60px; border-radius:50%; z-index:90;
  display:grid; place-items:center; background:#18c45d; color:#fff; box-shadow:0 18px 36px rgba(24,196,93,.34); font-size:27px;
}
@media (max-width: 1100px) {
  .hero-inner, .split, .amenities, .contact-panel { grid-template-columns:1fr; }
  .hero-card { max-width:620px; }
  .typology-grid, .stats-grid, .facts-grid { grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-links { display:none; }
  .gallery-grid, .amenity-list { grid-template-columns:1fr; }
  .gallery-grid .tall, .gallery-grid .small { min-height:auto; height:auto; }
}
@media (max-width: 680px) {
  .section { padding:72px 0; }
  .header-inner { padding:8px 0; align-items:flex-start; }
  .header-inner, .brand, .nav { flex-wrap:wrap; }
  .lang-switch { width:100%; justify-content:flex-start; }
  .stats-grid, .typology-grid, .facts-grid { grid-template-columns:1fr; }
  .hero-inner { min-height:auto; padding:52px 0 86px; }
  .hero h1 { font-size:48px; }
  .hero p { font-size:18px; }
  .contact-panel { padding:22px; }
  .sticky-mobile { display:flex; }
  .whats-float { display:none; }
}


.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.brand{gap:14px}
.brand-mark{display:none}
.brand-text{display:none}
.site-logo{display:block;width:168px;height:auto}
.hero-logo{display:block;width:min(520px,100%);height:auto;margin:0 0 18px 0}
.hero-copy .eyebrow{background:rgba(255,255,255,.16)}
.hero-copy p strong{font-size:clamp(22px,2.8vw,30px);font-family:Georgia,'Times New Roman',serif;display:block;margin-bottom:8px;color:#fff}
.gallery-disclaimer,.inline-note{margin-top:18px;font-size:13px;line-height:1.6;color:var(--muted);padding:16px 18px;border-radius:18px;background:rgba(11,55,107,.05);border:1px solid rgba(11,55,107,.08)}
.location-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:22px}
.location-card{background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);border-radius:22px;padding:18px}
.location-card strong{display:block;color:var(--navy-deep);font-size:18px;margin-bottom:6px}
.location-card span{display:block;color:var(--muted);line-height:1.55}
.cta-link{display:inline-flex;align-items:center;gap:10px;color:#fff;text-decoration:underline;text-underline-offset:4px;font-weight:700;margin-top:16px}
@media (max-width: 860px){.site-logo{width:144px}.hero-logo{width:min(420px,100%)}.location-grid{grid-template-columns:1fr 1fr}}
@media (max-width: 640px){.location-grid{grid-template-columns:1fr}}

.hero-media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero::before{content:'';position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(5,22,43,.84) 0%,rgba(5,22,43,.61) 35%,rgba(5,22,43,.22) 65%,rgba(5,22,43,.08) 100%)}
.hero::after{z-index:1}
.hero-inner{z-index:2}
.site-logo{object-fit:contain}
.hero-logo{object-fit:contain}
.seo-figure{margin:0}
.seo-figure img{width:100%}
.seo-figure figcaption{margin-top:10px;color:var(--muted);font-size:13px;line-height:1.55}


.header{box-shadow:0 8px 24px rgba(8,59,117,.06)}
.header-inner{min-height:82px;gap:24px}
.site-logo{width:240px;max-width:42vw;height:auto;display:block}
.nav{margin-left:auto;display:flex;align-items:center;gap:22px}
.nav-links{gap:24px;flex-wrap:wrap;justify-content:flex-end}
.nav a{font-size:15px}
.lang-switch{display:block;position:relative;flex:0 0 auto}
.lang-switch details{position:relative}
.lang-switch summary{list-style:none;display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;border:1px solid rgba(8,59,117,.14);background:#fff;color:var(--navy-deep);font-size:13px;font-weight:700;cursor:pointer;box-shadow:0 10px 24px rgba(8,59,117,.08)}
.lang-switch summary::-webkit-details-marker{display:none}
.lang-switch .flag{font-size:18px;line-height:1}
.lang-switch .caret{font-size:11px;opacity:.75}
.lang-switch ul{position:absolute;right:0;top:calc(100% + 12px);margin:0;padding:10px;list-style:none;min-width:230px;border-radius:20px;background:#fff;border:1px solid rgba(8,59,117,.12);box-shadow:0 18px 48px rgba(8,59,117,.16)}
.lang-switch li + li{margin-top:6px}
.lang-switch ul a{display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:14px;color:var(--ink);white-space:nowrap}
.lang-switch ul a:hover,.lang-switch ul a.active{background:rgba(11,87,164,.08);color:var(--navy-deep)}
.lang-switch .lang-name{font-size:14px;font-weight:600}
.hero-copy .eyebrow{background:rgba(255,255,255,.18);color:#fff}
.hero h1{display:block;margin:18px 0 12px;font-size:clamp(38px,5vw,68px);line-height:1.02;letter-spacing:-.035em;color:#fff;text-wrap:balance;max-width:780px}
.hero p{font-size:clamp(18px,1.8vw,21px);max-width:760px}
.hero-logo{display:none!important}
.image-card,.typology-card,.seo-figure{overflow:hidden}
.image-card img{width:100%;aspect-ratio:4/3;object-fit:cover;object-position:center center}
.typology-card img{display:block;width:100%;aspect-ratio:16/11;object-fit:cover;object-position:center center}
.gallery-grid .tall{display:block;width:100%;aspect-ratio:4/5;height:auto!important;min-height:0!important;object-fit:cover;object-position:center center}
.gallery-grid .small{display:block;width:100%;aspect-ratio:16/10;height:auto!important;min-height:0!important;object-fit:cover;object-position:center center}
.seo-figure img{display:block;width:100%;height:auto}
.hero-card{padding:28px}
.btn-primary{background:#fff;color:var(--navy-deep)}
.btn-secondary{background:rgba(255,255,255,.16)}
@media (max-width: 1100px){.site-logo{width:210px}.nav{gap:16px}.nav-links{gap:16px}}
@media (max-width: 880px){.header-inner{align-items:center}.nav{gap:12px}.nav-links{display:none}.lang-switch ul{right:0;left:auto}.site-logo{width:190px;max-width:52vw}}
@media (max-width: 680px){.header-inner{padding:10px 0;align-items:center}.nav{margin-left:auto}.site-logo{width:168px;max-width:56vw}.lang-switch summary{padding:9px 12px}.lang-switch .lang-name{font-size:13px}.hero h1{font-size:42px;line-height:1.06}.hero p{font-size:18px}}


/* FINAL MOBILE-FIRST REVIEW — Vista Joá */
:root{
  --brand-blue:#0d539c;
  --brand-blue-dark:#214060;
  --brand-blue-deep:#12314f;
  --brand-blue-bright:#1473c9;
  --brand-blue-soft:#eaf3fc;
}
html{scroll-padding-top:92px;overflow-x:hidden}
body{overflow-x:hidden;background:linear-gradient(180deg,#f4f8fc 0%,#fff 25%,#f6f9fd 100%)}
.container{width:min(1180px,calc(100vw - 40px))}
.header{position:sticky;top:0;z-index:100;background:var(--brand-blue-dark);border-bottom:1px solid rgba(255,255,255,.12);box-shadow:0 10px 34px rgba(7,31,55,.16);backdrop-filter:none}
.header-inner{min-height:86px;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:28px}
.brand{display:flex;align-items:center;justify-content:flex-start;min-width:185px}
.site-logo{display:block;width:210px;max-height:66px;object-fit:contain;object-position:left center}
.nav{display:flex;align-items:center;justify-content:flex-end;gap:20px;margin:0}
.nav-links{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap}
.nav-links a{color:rgba(255,255,255,.86);font-size:15px;font-weight:500;white-space:nowrap}
.nav-links a:hover{color:#fff}
.mobile-menu{display:none;position:relative}
.mobile-menu summary,.lang-switch summary{list-style:none;cursor:pointer;-webkit-tap-highlight-color:transparent}
.mobile-menu summary::-webkit-details-marker,.lang-switch summary::-webkit-details-marker{display:none}
.mobile-menu summary{width:44px;height:44px;border-radius:14px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.08)}
.hamburger{width:21px;height:15px;display:flex;flex-direction:column;justify-content:space-between}
.hamburger i{display:block;height:2px;border-radius:2px;background:#fff}
.mobile-menu-panel{position:absolute;left:0;top:calc(100% + 12px);width:min(320px,calc(100vw - 24px));padding:12px;border-radius:20px;background:#fff;border:1px solid rgba(13,83,156,.12);box-shadow:0 22px 55px rgba(7,31,55,.22)}
.mobile-menu-panel a{display:block;padding:13px 14px;border-radius:13px;color:var(--brand-blue-deep);font-size:15px;font-weight:650}
.mobile-menu-panel a:hover{background:var(--brand-blue-soft)}
.lang-switch{display:block;position:relative;justify-self:end}
.lang-switch summary{display:inline-flex;align-items:center;gap:8px;height:44px;padding:0 13px;border-radius:14px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.08);color:#fff;font-size:13px;font-weight:700}
.lang-switch .flag{font-size:19px;line-height:1}
.lang-switch .caret{font-size:10px;opacity:.78}
.lang-switch ul{position:absolute;right:0;top:calc(100% + 12px);z-index:120;margin:0;padding:10px;list-style:none;min-width:230px;max-height:min(520px,70vh);overflow:auto;border-radius:20px;background:#fff;border:1px solid rgba(13,83,156,.12);box-shadow:0 22px 55px rgba(7,31,55,.22)}
.lang-switch li+li{margin-top:5px}
.lang-switch ul a{display:flex;align-items:center;gap:12px;padding:11px 12px;border-radius:13px;color:#24364b;font-size:14px;font-weight:600;white-space:nowrap}
.lang-switch ul a:hover,.lang-switch ul a.active{background:var(--brand-blue-soft);color:var(--brand-blue-deep)}
.hero{background:var(--brand-blue-deep)}
.hero-picture{position:absolute;inset:0;z-index:0;display:block}
.hero-media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 48%}
.hero::before{background:linear-gradient(90deg,rgba(5,25,44,.88) 0%,rgba(5,25,44,.65) 38%,rgba(5,25,44,.28) 70%,rgba(5,25,44,.12) 100%)}
.hero::after{background:linear-gradient(180deg,rgba(10,22,40,0) 0%,rgba(244,248,252,1) 100%)}
.hero-inner{min-height:min(900px,calc(100svh - 86px));padding:74px 0 104px;grid-template-columns:minmax(0,1.2fr) minmax(330px,420px);gap:36px}
.hero h1{display:block;margin:16px 0 18px;max-width:780px;font-size:clamp(44px,5.4vw,76px);line-height:.99;letter-spacing:-.04em;color:#fff;text-wrap:balance}
.hero p{max-width:720px;font-size:clamp(18px,1.7vw,21px);line-height:1.66}
.hero-copy .eyebrow{padding:9px 13px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.14)}
.hero-badges{gap:10px;margin:22px 0 28px}
.hero-badges span{font-size:13px;background:rgba(255,255,255,.11)}
.hero-card{align-self:center;padding:27px;border-radius:26px}
.btn{min-height:52px}
.section{padding:82px 0}
.section-head h2{text-wrap:balance}
.image-card,.seo-figure,.typology-card{overflow:hidden}
.image-card img{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;object-position:center;border-radius:26px}
.typology-card img{display:block;width:100%;height:auto;aspect-ratio:16/11;object-fit:cover;object-position:center}
.gallery-grid .tall{display:block;width:100%;height:auto!important;min-height:0!important;aspect-ratio:4/5;object-fit:cover;object-position:center}
.gallery-grid .small{display:block;width:100%;height:auto!important;min-height:0!important;aspect-ratio:16/10;object-fit:cover;object-position:center}
.field input,.field select,.field textarea{font-size:16px}
.sticky-mobile{z-index:95}
@media(max-width:1080px){
  .header-inner{gap:18px}.site-logo{width:185px}.nav-links{gap:16px}.nav-links a{font-size:14px}
  .hero-inner{grid-template-columns:1fr;min-height:auto;padding:72px 0 94px}.hero-card{max-width:650px;width:100%}
}
@media(max-width:820px){
  html{scroll-padding-top:72px}
  .container{width:min(100% - 24px,720px)}
  .header-inner{min-height:68px;display:grid;grid-template-columns:44px minmax(0,1fr) 44px;gap:10px;padding:0}
  .mobile-menu{display:block;grid-column:1;grid-row:1;justify-self:start}
  .brand{grid-column:2;grid-row:1;justify-self:center;min-width:0;width:100%;justify-content:center}
  .site-logo{width:auto;max-width:min(180px,56vw);height:52px;max-height:52px;object-fit:contain;object-position:center}
  .nav{display:none}
  .lang-switch{grid-column:3;grid-row:1;justify-self:end}
  .lang-switch summary{width:44px;padding:0;justify-content:center}
  .lang-switch summary .lang-name,.lang-switch summary .caret{display:none}
  .lang-switch ul{right:0;min-width:220px}
  .hero-inner{padding:48px 0 88px;gap:28px}
  .hero::before{background:linear-gradient(180deg,rgba(5,25,44,.72) 0%,rgba(5,25,44,.69) 44%,rgba(5,25,44,.78) 100%)}
  .hero-media{object-position:center center}
  .hero h1{font-size:clamp(38px,10.8vw,55px);line-height:1.03;margin:14px 0 17px}
  .hero p{font-size:18px;line-height:1.58}
  .hero-badges{display:grid;grid-template-columns:1fr;gap:8px}
  .hero-badges span{width:100%;justify-content:flex-start;padding:10px 12px}
  .cta-row{display:grid;grid-template-columns:1fr;gap:10px}
  .cta-row .btn{width:100%}
  .hero-card{padding:22px;border-radius:22px}
  .hero-card h3{font-size:25px}
  .section{padding:64px 0}
  .section-head{margin-bottom:24px}
  .section-head h2{font-size:clamp(31px,9vw,44px);line-height:1.06}
  .section-head p{font-size:17px;line-height:1.62}
  .stats-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .stat{padding:18px;border-radius:20px}
  .stat strong{font-size:clamp(27px,7.7vw,36px);overflow-wrap:anywhere}
  .stat span{font-size:13px;line-height:1.42}
  .typology-grid,.facts-grid{grid-template-columns:1fr}
  .typology-body{padding:19px}
  .gallery-grid{grid-template-columns:1fr;gap:14px}
  .gallery-column{gap:14px}
  .gallery-grid .tall{aspect-ratio:4/3}
  .gallery-grid .small{aspect-ratio:16/10}
  .amenities,.split,.contact-panel{grid-template-columns:1fr}
  .amenity-list{grid-template-columns:1fr 1fr}
  .contact-panel{padding:20px;border-radius:24px}
  .footer{padding-bottom:112px}
  .sticky-mobile{display:flex}
  .whats-float{display:none}
}
@media(max-width:430px){
  .container{width:calc(100vw - 20px)}
  .site-logo{max-width:150px;height:48px}
  .hero-inner{padding-top:40px}
  .hero h1{font-size:39px}
  .hero p{font-size:17px}
  .stats-grid{grid-template-columns:1fr 1fr}
  .amenity-list{grid-template-columns:1fr}
  .sticky-mobile{left:8px;right:8px;bottom:8px;padding:8px;gap:8px;border-radius:18px}
  .sticky-mobile .btn{min-height:46px;font-size:13px;padding:0 10px}
}
@media(max-width:350px){
  .site-logo{max-width:132px}.hero h1{font-size:35px}.stats-grid{grid-template-columns:1fr}
}


/* ===== Vista Joá final brand and image lightbox overrides ===== */
:root {
  --navy:#062951;
  --navy-deep:#062951;
  --sky:#0c3a70;
  --sand:#e7eef7;
  --sand-soft:#f3f6fb;
  --brand-blue:#062951;
  --brand-blue-deep:#062951;
  --brand-blue-soft:rgba(6,41,81,.10);
}
body { background:linear-gradient(180deg, #f4f7fb 0%, #ffffff 24%, #f5f8fc 100%); }
.header { background:rgba(6,41,81,.96); border-bottom:1px solid rgba(255,255,255,.08); }
.brand { justify-self:center; }
.site-logo { width:auto; height:58px; max-width:min(260px,42vw); object-fit:contain; object-position:center; }
.nav-links a { color:rgba(255,255,255,.88); }
.nav-links a:hover { color:#fff; }
.hero { background:linear-gradient(135deg, rgba(6,41,81,1) 0%, rgba(8,49,94,1) 48%, rgba(15,70,128,1) 100%); }
.primary-btn, .submit-btn { background:#062951; }
.secondary-btn { color:#062951; border-color:rgba(6,41,81,.18); }
.eyebrow, .kicker { color:#062951; }
.section-head h2 { color:#062951; }
figure.zoomable-figure { position:relative; }
.zoomable-media { cursor:zoom-in; }
.zoom-chip { position:absolute; right:14px; bottom:54px; z-index:3; border:0; border-radius:999px; padding:9px 12px; background:rgba(6,41,81,.82); color:#fff; font-size:12px; font-weight:700; letter-spacing:.02em; box-shadow:0 10px 24px rgba(0,0,0,.18); cursor:pointer; }
.zoom-chip:hover { background:rgba(6,41,81,.95); }
.lightbox { position:fixed; inset:0; z-index:300; display:none; align-items:center; justify-content:center; padding:22px; background:rgba(4,15,29,.86); backdrop-filter: blur(8px); }
.lightbox.is-open { display:flex; }
.lightbox-inner { max-width:min(1200px, calc(100vw - 34px)); max-height:calc(100vh - 34px); display:flex; flex-direction:column; align-items:center; gap:14px; }
.lightbox-image { display:block; max-width:100%; max-height:calc(100vh - 120px); width:auto; height:auto; border-radius:18px; box-shadow:0 24px 60px rgba(0,0,0,.34); background:#fff; }
.lightbox-caption { color:#fff; text-align:center; max-width:860px; font-size:14px; line-height:1.6; }
.lightbox-close { position:absolute; top:18px; right:18px; width:46px; height:46px; border:0; border-radius:999px; background:rgba(255,255,255,.12); color:#fff; font-size:30px; line-height:1; cursor:pointer; }
.lightbox-close:hover { background:rgba(255,255,255,.18); }
@media (max-width: 880px) {
  .header-inner { min-height:70px; grid-template-columns:44px minmax(0,1fr) 44px; gap:10px; }
  .site-logo { max-width:min(178px,54vw); height:50px; margin:0 auto; }
  .zoom-chip { bottom:46px; right:10px; padding:8px 10px; }
  .lightbox { padding:14px; }
  .lightbox-image { max-height:calc(100vh - 140px); border-radius:14px; }
  .lightbox-caption { font-size:13px; }
}
@media (max-width: 540px) {
  .site-logo { max-width:min(164px,52vw); height:46px; }
  .zoom-chip { font-size:11px; }
}
.zoomable-card{position:relative}
.zoomable-card > img.zoomable-media{cursor:zoom-in}
.zoomable-card .card-zoom-chip{position:absolute;right:14px;top:14px;bottom:auto;z-index:3}

/* ===== Final user adjustment: logo almost header height ===== */
.header-inner{min-height:96px !important}
.site-logo{
  width:auto !important;
  height:84px !important;
  max-height:84px !important;
  max-width:min(460px,52vw) !important;
  object-fit:contain;
  object-position:center;
}
@media (max-width: 1100px){
  .header-inner{min-height:90px !important;}
  .site-logo{
    height:80px !important;
    max-height:80px !important;
    max-width:min(390px,50vw) !important;
  }
}
@media (max-width: 880px){
  .header-inner{
    min-height:82px !important;
    grid-template-columns:44px minmax(0,1fr) 44px !important;
    gap:8px !important;
  }
  .site-logo{
    height:68px !important;
    max-height:68px !important;
    max-width:min(280px,74vw) !important;
    margin:0 auto;
  }
}
@media (max-width: 540px){
  .header-inner{min-height:78px !important;}
  .site-logo{
    height:64px !important;
    max-height:64px !important;
    max-width:min(250px,74vw) !important;
  }
}
