:root {
  --petrol-900: #16282e;
  --petrol-800: #1b2e34;
  --petrol-700: #244149;
  --petrol-600: #2f545d;
  --gold-600: #a87e3d;
  --gold-500: #b8924e;
  --gold-400: #c8a868;
  --gold-300: #dcc18d;
  --cream: #f7f3ec;
  --cream-2: #efe8dc;
  --ink: #1c2a2e;
  --muted: #5f7076;
  --line: rgba(28, 42, 46, 0.12);
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1da851;
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 6px 20px rgba(22, 40, 46, 0.08);
  --shadow-md: 0 18px 50px rgba(22, 40, 46, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Jost", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

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

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; letter-spacing: 0.01em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1200;
  background: var(--petrol-900); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold-300); }
.hero-eyebrow { display: inline-block; color: var(--white); background: linear-gradient(120deg, var(--petrol-600), var(--petrol-700)); padding: 0.18em 0.45em; border-radius: 2px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }

.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }

.section-title { font-size: clamp(1.9rem, 4.2vw, 3.1rem); color: var(--petrol-900); }

.section-lead { margin-top: 1.25rem; color: var(--muted); font-size: 1.075rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 0.95rem 1.7rem; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  line-height: 1; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-gold { background: var(--gold-500); color: #1a1305; box-shadow: 0 10px 26px rgba(168, 126, 61, 0.32); }
.btn-gold:hover { background: var(--gold-400); }
.btn-ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }
.btn-dark { background: var(--petrol-800); color: #fff; }
.btn-dark:hover { background: var(--petrol-700); }
.btn-wa { background: var(--wa); color: #053d1c; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 1.1rem 0; transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled { background: var(--petrol-900); padding: 0.6rem 0; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand-logo { height: 126px; width: auto; transform: translateX(-20.6%); transition: height 0.4s var(--ease); }
.site-header.scrolled .brand-logo { height: 72px; }

.nav-menu { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-menu a { color: #fff; font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em; position: relative; transition: color 0.3s; }
.nav-menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold-400); transition: width 0.3s var(--ease);
}
.nav-menu a:not(.btn):hover::after { width: 100%; }
.nav-menu a:not(.btn):hover { color: var(--gold-300); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; position: relative; z-index: 1100;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16, 28, 32, 0.55) 0%, rgba(16, 28, 32, 0.35) 40%, rgba(16, 28, 32, 0.78) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 760px; padding-block: 7rem; text-align: left; }
.hero-title { font-size: clamp(1.5rem, 5.4vw, 3.1rem); font-weight: 700; max-width: 40vw;}
.hero-sub { margin-top: 1.5rem; font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 600px; color: var(--white); font-weight: 500; padding-left: 1.1rem; border-left: 3px solid var(--gold-400); text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.75rem; }
.hero-chips li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.92); }
.hero-chips svg { width: 20px; height: 20px; fill: var(--gold-400); flex-shrink: 0; }

.hero-scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.6); border-radius: 14px; }
.hero-scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }

.section-bairro { background: var(--cream); }
.lifestyle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lifestyle-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem 1.9rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.lifestyle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.lifestyle-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--petrol-700), var(--petrol-900)); margin-bottom: 1.4rem; }
.lifestyle-icon svg { width: 28px; height: 28px; fill: var(--gold-400); }
.lifestyle-card h3 { font-size: 1.3rem; color: var(--petrol-900); margin-bottom: 0.6rem; }
.lifestyle-card p { color: var(--muted); font-size: 0.97rem; }

.section-mobilidade { background: var(--petrol-900); color: #fff; }
.mobilidade-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.section-mobilidade .section-title { color: #fff; }
.section-mobilidade .eyebrow { color: var(--gold-400); }
.section-mobilidade .section-lead { color: rgba(255, 255, 255, 0.8); }
.stats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }
.stats li { border-left: 2px solid var(--gold-500); padding-left: 1.1rem; }
.stats strong { display: block; font-family: var(--font-display); font-size: 1.85rem; font-weight: 400; color: var(--gold-300); }
.stats span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.72); }
.mobilidade-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.mobilidade-media img { width: 100%; height: 100%; object-fit: cover; }
.mobilidade-media figcaption { background: var(--petrol-800); color: rgba(255, 255, 255, 0.7); font-size: 0.82rem; padding: 0.7rem 1rem; text-align: center; }

.section-apartamentos { background: var(--cream); }
.typology-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.typology-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.typology-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.typology-media { aspect-ratio: 16 / 10; overflow: hidden; }
.typology-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.typology-card:hover .typology-media img { transform: scale(1.06); }
.typology-body { padding: 1.6rem 1.7rem 2rem; }
.typology-body h3 { font-size: 1.55rem; color: var(--petrol-900); margin-bottom: 0.5rem; }
.typology-body p { color: var(--muted); font-size: 0.96rem; min-height: 3.2em; }
.typology-tag { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-600); background: rgba(184, 146, 78, 0.12); padding: 0.45rem 0.95rem; border-radius: 100px; }
.feature-pills { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2.75rem; }
.feature-pills li { background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 0.6rem 1.25rem; font-size: 0.88rem; font-weight: 500; color: var(--petrol-700); }

.section-plantas { background: #fff; }
.plantas-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.plantas-tab {
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em;
  color: var(--petrol-700); background: var(--cream); border: 1.5px solid var(--line);
  padding: 0.75rem 1.75rem; border-radius: 100px; cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plantas-tab:hover { border-color: var(--gold-400); color: var(--petrol-900); }
.plantas-tab.is-active { background: var(--petrol-900); color: #fff; border-color: var(--petrol-900); box-shadow: var(--shadow-sm); }
.plantas-tab:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
.plantas-panel { display: none; }
.plantas-panel.is-active { display: block; animation: plantasFade 0.5s var(--ease); }
@keyframes plantasFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.planta-carousel { position: relative; max-width: 1120px; margin: 0 auto; }
.planta-viewport { position: relative; padding: 0 58px; }
.planta-track {
  display: flex; gap: 1.5rem; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none; padding: 0.9rem 1.3rem 1.9rem;
}
.planta-track::-webkit-scrollbar { display: none; }
.planta-slide { flex: 0 0 calc((100% - 3rem) / 3); scroll-snap-align: start; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: var(--petrol-900); color: #fff; box-shadow: var(--shadow-md);
  transition: background 0.3s var(--ease), opacity 0.3s var(--ease);
}
.carousel-btn:hover { background: var(--gold-600); }
.carousel-btn:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
.carousel-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }
.carousel-btn[disabled] { opacity: 0.3; cursor: default; }
.carousel-status { text-align: center; margin-top: 1.4rem; font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.12em; color: var(--muted); }
.carousel-status b { color: var(--petrol-900); font-weight: 500; }
.planta-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; width: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.planta-card:hover { border-color: var(--gold-400); box-shadow: 0 10px 26px -6px rgba(22, 40, 46, 0.22); }
.planta-card:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
.planta-media { position: relative; background: var(--cream); overflow: hidden; }
.planta-media img { width: 100%; height: auto; transition: transform 0.5s var(--ease); }
.planta-card:hover .planta-media img { transform: scale(1.05); }
.planta-media::after {
  content: ""; position: absolute; top: 0.65rem; right: 0.65rem; width: 36px; height: 36px; border-radius: 50%;
  background-color: rgba(22, 40, 46, 0.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.5' y2='16.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 18px;
  opacity: 0; transform: scale(0.85); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); pointer-events: none;
}
.planta-card:hover .planta-media::after { opacity: 1; transform: scale(1); }
.planta-card figcaption {
  padding: 0.85rem 1rem; text-align: center; border-top: 1px solid var(--line);
  font-family: var(--font-display); font-size: 0.88rem; color: var(--muted);
  display: flex; flex-direction: column; gap: 0.1rem; margin-top: auto;
}
.planta-card figcaption span { font-size: 1.05rem; font-weight: 500; color: var(--petrol-900); }

.section-lazer { background: #fff; }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 1.1rem; }
.amenity { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 4 / 3; }
.amenity-lg { grid-column: span 2; grid-row: span 2; }
.amenity img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.amenity:hover img { transform: scale(1.07); }
.amenity::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(16, 28, 32, 0.82)); transition: opacity 0.3s; }
.amenity figcaption { position: absolute; left: 1.1rem; bottom: 0.95rem; z-index: 2; color: #fff; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; }
.amenity-lg figcaption { font-size: 1.5rem; }

.section-galeria { background: var(--cream); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.video-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #000; }
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.video-card figcaption { background: #fff; color: var(--petrol-800); font-weight: 500; font-size: 0.92rem; padding: 0.85rem 1.2rem; text-align: center; }
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.strip-item { aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.strip-item:hover img { transform: scale(1.07); }

.section-construtora { background: var(--petrol-900); color: #fff; }
.construtora-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.section-construtora .section-title { color: #fff; }
.section-construtora .eyebrow { color: var(--gold-400); }
.section-construtora .section-lead { color: rgba(255, 255, 255, 0.8); }
.stats-row { grid-template-columns: repeat(3, 1fr); margin-bottom: 0; }
.construtora-badge { display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; padding: clamp(2rem, 5vw, 3.5rem); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius); background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)); }
.construtora-badge img { width: 100%; height: auto; max-width: 320px; }

.section-contato { background: var(--petrol-800); color: #fff; }
.contato-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.section-contato .section-title { color: #fff; }
.section-contato .section-lead { color: rgba(255, 255, 255, 0.82); }
.contato-info { list-style: none; margin: 2rem 0; display: grid; gap: 1.2rem; }
.contato-info li { display: flex; flex-direction: column; }
.ci-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-400); }
.ci-value { font-size: 1.05rem; color: #fff; }
.contato-form { background: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.5rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--petrol-800); margin-bottom: 0.45rem; }
.field input, .field select { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.98rem; line-height: 1.5; color: var(--ink); background: #fff; transition: border-color 0.3s, box-shadow 0.3s; }
.field select { appearance: none; -webkit-appearance: none; -moz-appearance: none; padding-right: 2.75rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f7076' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 15px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(184, 146, 78, 0.18); }
.field-check { display: flex; align-items: flex-start; gap: 0.6rem; }
.field-check input { width: auto; margin-top: 0.25rem; accent-color: var(--gold-600); }
.field-check label { font-weight: 400; font-size: 0.85rem; color: var(--muted); margin: 0; }
.field-check a { color: var(--gold-600); text-decoration: underline; }
.field.invalid input, .field.invalid select { border-color: #d4584f; box-shadow: 0 0 0 3px rgba(212, 88, 79, 0.15); }
.form-feedback { margin-top: 1rem; font-size: 0.92rem; font-weight: 500; text-align: center; min-height: 1.2em; }
.form-feedback.success { color: var(--wa-dark); }
.form-feedback.error { color: #d4584f; }

.site-footer { background: var(--petrol-900); color: rgba(255, 255, 255, 0.7); padding-top: 3.5rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand img { height: 72px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; align-content: flex-start; }
.footer-nav a { font-size: 0.9rem; transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold-300); }
.footer-legal { padding: 2rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-legal p { font-size: 0.74rem; line-height: 1.7; color: rgba(255, 255, 255, 0.5); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; padding: 1.75rem 0 2.5rem; font-size: 0.82rem; }
.footer-credit strong { color: var(--gold-300); font-weight: 600; }
.footer-credit a:hover strong { text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold-300); }

.wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45); transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

.lightbox { position: fixed; inset: 0; z-index: 1300; background: rgba(12, 20, 23, 0.94); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox-figure { max-width: min(92vw, 1100px); text-align: center; }
.lightbox-figure img { max-height: 82vh; width: auto; margin: 0 auto; border-radius: 8px; }
.lightbox-figure figcaption { color: #fff; font-family: var(--font-display); margin-top: 1rem; font-size: 1.1rem; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255, 255, 255, 0.12); border: 0; color: #fff; cursor: pointer; border-radius: 50%; transition: background 0.3s; }
.lightbox-close { top: 1.25rem; right: 1.5rem; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, 0.28); }

.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: none; }

body.menu-open { overflow: hidden; }

@media (max-width: 980px) {
  .mobilidade-inner, .construtora-inner, .contato-inner { grid-template-columns: 1fr; }
  .construtora-badge { max-width: 320px; }
  .lifestyle-grid, .typology-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-lg { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 9; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .planta-slide { flex: 0 0 calc((100% - 1.5rem) / 2); }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); background: var(--petrol-900);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.75rem;
    padding: 4rem 2.25rem; transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.1rem; }
  .nav-cta { margin-top: 0.5rem; }
  .brand-logo { height: 88px; }
  .site-header.scrolled .brand-logo { height: 56px; }
  .hero-content { padding-block: 6rem; }
  .video-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .planta-viewport { padding: 0 46px; }
  .carousel-btn { width: 40px; height: 40px; }
  .carousel-btn svg { width: 19px; height: 19px; }
}

@media (max-width: 520px) {
  .lifestyle-grid, .typology-grid, .amenities-grid, .gallery-strip { grid-template-columns: 1fr; }
  .amenity-lg { grid-column: span 1; }
  .hero-chips { gap: 0.85rem; }
  .brand-logo { height: 64px; }
  .site-header.scrolled .brand-logo { height: 46px; }
  .hero-actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .planta-slide { flex: 0 0 100%; }
  .planta-viewport { padding: 0 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

.legal-header { background: var(--petrol-900); padding: 1.1rem 0; }
.legal-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.legal-brand { display: inline-flex; }
.legal-logo { height: 56px; width: auto; }
.legal-back { color: var(--gold-300); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; transition: color 0.3s var(--ease); }
.legal-back:hover { color: var(--gold-400); }

.legal-main { background: var(--cream); padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem); }
.legal-content { max-width: 820px; margin-inline: auto; }
.legal-content h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--petrol-900); margin-bottom: 1.75rem; }
.legal-content h2 { font-size: clamp(1.45rem, 3.2vw, 2rem); color: var(--petrol-800); margin-top: 3rem; margin-bottom: 1.1rem; }
.legal-content h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--petrol-700); margin-top: 2rem; margin-bottom: 0.6rem; }
.legal-content p { color: var(--ink); margin-bottom: 1.15rem; }
.legal-content a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--gold-500); }
.legal-list { list-style: none; display: grid; gap: 1.25rem; margin: 0.5rem 0 1.5rem; padding: 0; }
.legal-list li { position: relative; padding-left: 1.5rem; color: var(--ink); }
.legal-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); }
.legal-list li strong { display: block; font-family: var(--font-display); font-weight: 500; color: var(--petrol-800); margin-bottom: 0.3rem; }
.legal-contact { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--line); color: var(--muted); }
.legal-contact p { margin-bottom: 0.35rem; }

@media (max-width: 520px) {
  .legal-logo { height: 46px; }
  .legal-back { font-size: 0.82rem; }
}
