/*
 * LVN Imobiliária - base visual moderna.
 * Site estático com navegação minimalista, imagens grandes e seções editoriais.
 */

:root {
  --ink: #111111;
  --ink-soft: #2f3237;
  --paper: #ffffff;
  --mist: #f5f6f7;
  --line: #dfe3e6;
  --muted: #6c737c;
  --accent: #c8ff2f;
  --accent-strong: #a6db12;
  --teal: #047c7a;
  --clay: #c8562c;
  --shadow: 0 20px 60px rgba(17, 17, 17, 0.12);
  --header-height: 72px;
  --max-width: 1180px;
  --button-flow-space: 1.25rem;
  --button-group-space: 1.5rem;
  --button-hero-space: 2rem;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  transition: background-color var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.08);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 196px;
  min-width: 164px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.desktop-nav ul,
.mobile-nav ul,
.footer-col ul {
  list-style: none;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav a,
.mobile-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.85rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background-color var(--transition), color var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
  background: var(--ink);
  color: var(--paper);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform var(--transition), background-color var(--transition);
}

.nav-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  width: min(92%, var(--max-width));
  margin: 0 auto;
  padding: 0.75rem 0 1rem;
  display: grid;
  gap: 0.25rem;
}

main {
  overflow: hidden;
}

.home-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 5rem) 0 4rem;
  color: var(--paper);
  background: var(--ink);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 45%);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero .eyebrow,
.service-band .eyebrow,
.final-cta .eyebrow {
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: 4.9rem;
  line-height: 0.96;
  font-weight: 800;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.hero-actions,
.final-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: var(--button-hero-space);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

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

main :where(p, ul, ol, .feature-list) + .btn {
  display: flex;
  width: fit-content;
  margin-top: var(--button-flow-space);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--paper);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-accent {
  background: var(--accent);
  color: var(--ink);
}

.btn-accent:hover {
  background: var(--accent-strong);
}

.btn-dark,
.btn-secondary {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark:hover,
.btn-secondary:hover {
  background: var(--teal);
}

.hero-search {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-search label,
.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-search input,
.hero-search select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.78rem 0.85rem;
  outline: none;
}

.hero-search input:focus,
.hero-search select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(4, 124, 122, 0.12);
}

.signal-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid div {
  min-height: 132px;
  padding: 1.6rem 1.4rem;
  display: grid;
  align-content: center;
  gap: 0.3rem;
  border-left: 1px solid var(--line);
}

.signal-grid div:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid strong {
  font-size: 1.05rem;
}

.signal-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.showcase-section,
.portfolio-section,
.contact-section,
.properties {
  padding: 6rem 0;
  background: var(--paper);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.story-copy h2,
.owner-copy h2,
.service-copy h2,
.final-cta h2,
.properties h2,
.contact-section h2,
.property-hero h1 {
  max-width: 760px;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 800;
}

.section-description {
  max-width: 640px;
  margin: 0.8rem auto 2rem;
  color: var(--muted);
  text-align: center;
}

.path-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.path-card {
  min-height: 360px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--mist);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: var(--shadow);
}

.path-card-dark {
  background:
    linear-gradient(160deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.82)),
    url("images/house.jpg") center / cover;
  color: var(--paper);
}

.path-card span,
.property-tag {
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.path-card h3 {
  max-width: 360px;
  margin-bottom: 0.55rem;
  font-size: 1.65rem;
  line-height: 1.12;
}

.path-card p {
  max-width: 360px;
  color: var(--muted);
}

.path-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.path-card i {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.featured-story {
  padding: 6rem 0;
  background: var(--mist);
}

.story-grid,
.owner-grid,
.property-info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.story-media {
  position: relative;
}

.story-media img,
.owner-photo img,
.property-info-grid .gallery img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  min-width: 190px;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.story-badge strong {
  display: block;
  font-size: 1.1rem;
}

.story-badge span,
.story-copy p,
.owner-copy p,
.service-item p,
.final-cta p,
.property-details p,
.contact-details p,
.property-info-grid .details p,
.property-info-grid .details li {
  color: var(--muted);
}

.story-copy p,
.owner-copy p {
  max-width: 600px;
  margin-bottom: 1.4rem;
  font-size: 1.04rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 1.4rem 0 1rem;
}

.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 700;
}

.portfolio-section {
  background: var(--paper);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.property-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow: var(--shadow);
}

.property-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.property-details {
  padding: 1rem;
}

.property-details h3 {
  min-height: 3rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.24;
}

.price {
  color: var(--teal);
  font-weight: 850;
}

.owner-section {
  padding: 6rem 0;
  background: #101010;
  color: var(--paper);
}

.owner-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-weight: 800;
}

.owner-photo {
  justify-self: end;
  width: min(100%, 420px);
}

.owner-photo img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.service-band {
  padding: 6rem 0;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(4, 124, 122, 0.82)),
    url("images/house.jpg") center / cover;
  color: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-item {
  min-height: 240px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.service-item i {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.45rem;
}

.service-item h3 {
  margin-bottom: 0.5rem;
}

.service-item p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta {
  padding: 6rem 0;
  background: var(--ink);
  color: var(--paper);
}

.final-cta-inner {
  justify-content: space-between;
  gap: 2rem;
}

.final-cta h2 {
  max-width: 700px;
}

.final-cta .eyebrow {
  width: 100%;
}

.site-footer {
  background: #f0f2f3;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.listing-hero {
  min-height: 76vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 5rem) 0 4rem;
  background: var(--ink);
  color: var(--paper);
}

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

.listing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 50%);
}

.rent-hero .listing-hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 124, 122, 0.84), rgba(0, 0, 0, 0.5) 52%, rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 50%);
}

.listing-hero-content {
  position: relative;
  z-index: 2;
}

.listing-hero .eyebrow {
  color: var(--accent);
}

.listing-hero-content h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 850;
}

.listing-hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.listing-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.listing-metrics span {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.listing-section {
  padding: 5rem 0 6rem;
  background: var(--paper);
}

.listing-filter {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 0.9fr auto;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 3rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.listing-filter label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.listing-filter input,
.listing-filter select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 0 0.8rem;
  color: var(--ink);
  outline: none;
}

.listing-filter input:focus,
.listing-filter select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(4, 124, 122, 0.12);
}

.listing-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.listing-toolbar h2 {
  font-size: 2.7rem;
  line-height: 1;
}

.listing-toolbar > p {
  color: var(--muted);
  font-weight: 700;
}

.listing-grid {
  align-items: stretch;
}

.listing-card {
  display: block;
}

.listing-card.is-hidden {
  display: none;
}

.listing-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.listing-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
}

.listing-specs li {
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.empty-state {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.empty-state.is-visible {
  display: block;
}

.property-detail-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: var(--mist);
}

.property-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.property-hero-copy h1,
.contact-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 0.8rem;
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 850;
}

.property-hero-copy > p:not(.eyebrow):not(.price),
.contact-hero-copy > p:not(.eyebrow),
.finance-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.08rem;
}

.property-hero-copy .price {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.property-hero-image img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.property-overview {
  background: var(--ink);
  color: var(--paper);
}

.property-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.overview-item {
  min-height: 150px;
  padding: 1.35rem;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.overview-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.overview-item i {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 1.35rem;
}

.overview-item strong {
  font-size: 1.5rem;
}

.overview-item span {
  color: rgba(255, 255, 255, 0.7);
}

.property-detail-section {
  padding: 6rem 0;
  background: var(--paper);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0.8rem;
}

.gallery-grid img {
  min-height: 260px;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.detail-block h2,
.finance-copy h2 {
  max-width: 720px;
  margin-bottom: 0.85rem;
  font-size: 2.6rem;
  line-height: 1.04;
}

.detail-block > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benefit-grid div {
  min-height: 210px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.benefit-grid i {
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 1.35rem;
}

.benefit-grid h3 {
  margin-bottom: 0.45rem;
}

.benefit-grid p {
  color: var(--muted);
}

.detail-aside {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.detail-aside h2 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.detail-aside ul {
  list-style: none;
  margin-bottom: 1.1rem;
}

.detail-aside li {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-aside span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: var(--ink);
  color: var(--paper);
}

.contact-hero-grid,
.finance-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.contact-hero .eyebrow {
  color: var(--accent);
}

.contact-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-portrait {
  justify-self: end;
  width: min(100%, 460px);
}

.contact-portrait img {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.contact-method {
  display: flex;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-method i {
  color: var(--teal);
  font-size: 1.1rem;
  line-height: 1.5;
}

.contact-method strong {
  display: block;
  margin-bottom: 0.15rem;
}

.contact-hours {
  margin-top: 1.4rem;
}

.contact-form select,
.finance-calculator input,
.finance-calculator select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.78rem 0.85rem;
  outline: none;
}

.contact-form select:focus,
.finance-calculator input:focus,
.finance-calculator select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(4, 124, 122, 0.12);
}

.contact-form button {
  margin-top: var(--button-flow-space);
}

.finance-section {
  padding: 6rem 0;
  background: var(--mist);
}

.finance-grid {
  align-items: start;
}

.finance-calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.finance-calculator label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.finance-result {
  grid-column: 1 / -1;
  padding: 1.2rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.finance-result span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-result strong {
  font-size: 2rem;
}

.financing-hero {
  padding: calc(var(--header-height) + 5rem) 0 5rem;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(4, 124, 122, 0.8)),
    url("images/house.jpg") center / cover;
  color: var(--paper);
}

.financing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 3rem;
  align-items: end;
}

.financing-hero .eyebrow {
  color: var(--accent);
}

.financing-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: 4.4rem;
  line-height: 0.98;
  font-weight: 850;
}

.financing-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.financing-panel {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.financing-panel span,
.advanced-finance-results span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.financing-panel strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-size: 2.2rem;
}

.financing-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.finance-guide,
.advanced-finance-section,
.amortization-section,
.source-section,
.contact-finance-cta {
  padding: 6rem 0;
  background: var(--paper);
}

.advanced-finance-section,
.contact-finance-cta {
  background: var(--mist);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.guide-card,
.amortization-card {
  min-height: 280px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.guide-card i {
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 1.45rem;
}

.guide-card h3,
.amortization-card h2 {
  margin-bottom: 0.55rem;
}

.guide-card p,
.amortization-card p:not(.eyebrow),
.source-box p {
  color: var(--muted);
}

.advanced-finance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}

.advanced-finance-form,
.advanced-finance-results,
.source-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.advanced-finance-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding: 1rem;
}

.form-group label,
.advanced-finance-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.advanced-finance-form input,
.advanced-finance-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 0.8rem;
  outline: none;
}

.advanced-finance-form input:focus,
.advanced-finance-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(4, 124, 122, 0.12);
}

.finance-disclaimer {
  grid-column: 1 / -1;
  padding: 0.85rem;
  border-radius: 8px;
  background: var(--mist);
  color: var(--muted);
  font-size: 0.88rem;
}

.advanced-finance-results {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: #101010;
  color: var(--paper);
}

.advanced-finance-results .eyebrow {
  color: var(--accent);
}

.main-result {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
}

.main-result span,
.result-grid span {
  color: rgba(17, 17, 17, 0.66);
}

.main-result strong {
  font-size: 2.3rem;
  line-height: 1;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.result-grid div {
  min-height: 108px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.result-grid span {
  color: rgba(255, 255, 255, 0.62);
}

.result-grid strong {
  font-size: 1.05rem;
}

.result-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.btn-report {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  border: 1px solid rgba(206, 255, 61, 0.42);
  background: var(--accent);
  color: var(--ink);
}

.btn-report:hover {
  background: #bff216;
}

.amortization-section {
  background: var(--ink);
  color: var(--paper);
}

.amortization-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.amortization-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.amortization-card .eyebrow {
  color: var(--accent);
}

.amortization-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.source-box {
  padding: 1.4rem;
}

.source-box h2 {
  max-width: 760px;
  margin-bottom: 0.7rem;
  font-size: 2.4rem;
  line-height: 1.05;
}

.source-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: var(--button-group-space);
}

.footer-content {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  margin-bottom: 0.9rem;
}

.footer-col p,
.footer-col a {
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-col li + li,
.footer-col p + p {
  margin-top: 0.35rem;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.84rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

/* Pages shared by sale, rent, property and contact */
.properties,
.property-hero {
  padding-top: calc(var(--header-height) + 4rem);
}

.properties h2,
.contact-section h2 {
  margin: 0 auto;
  text-align: center;
}

.properties .property-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.btn-secondary {
  width: fit-content;
  min-height: 40px;
  margin-top: 0.5rem;
  padding: 0 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
}

.property-hero {
  padding-bottom: 2rem;
  background: var(--mist);
}

.property-hero .price {
  margin-top: 0.65rem;
  font-size: 1.6rem;
}

.property-info-section {
  padding: 4rem 0 6rem;
  background: var(--paper);
}

.property-info-grid {
  align-items: start;
}

.property-info-grid .details h2,
.contact-details h3 {
  margin-bottom: 0.6rem;
  color: var(--ink);
  font-size: 1.35rem;
}

.property-info-grid .details h2:not(:first-child) {
  margin-top: 1.4rem;
}

.property-info-grid .details ul {
  list-style: none;
  margin-bottom: 1rem;
}

.property-info-grid .details li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  align-items: stretch;
}

.contact-details,
.contact-form-wrapper {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem;
  background: var(--mist);
}

.contact-form-wrapper,
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form {
  min-height: 100%;
}

.contact-details h3:not(:first-child) {
  margin-top: 1.4rem;
}

.contact-form label:not(:first-child) {
  margin-top: 0.85rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  border: 0;
}

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

  .hero-layout,
  .story-grid,
  .owner-grid,
  .service-grid,
	  .property-info-grid,
	  .contact-grid,
	  .property-hero-grid,
	  .detail-layout,
	  .contact-hero-grid,
	  .finance-grid,
	  .financing-hero-grid,
	  .advanced-finance-layout {
	    grid-template-columns: 1fr;
	  }

  .hero-copy h1 {
    font-size: 3.8rem;
  }

	  .listing-hero-content h1,
	  .property-hero-copy h1,
	  .contact-hero-copy h1,
	  .financing-hero-copy h1 {
	    font-size: 3.2rem;
	  }

  .hero-search {
    max-width: 520px;
  }

  .path-grid,
  .property-grid,
  .service-items,
  .footer-content,
	  .listing-filter,
	  .property-overview-grid,
	  .benefit-grid,
	  .guide-grid,
	  .amortization-grid {
	    grid-template-columns: 1fr 1fr;
	  }

	  .advanced-finance-results {
	    position: static;
	  }

  .owner-photo {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .home-hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 3rem) 0 2rem;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent);
  }

  .hero-copy h1,
	  .listing-hero-content h1,
	  .property-hero-copy h1,
	  .contact-hero-copy h1,
	  .financing-hero-copy h1,
	  .section-heading h2,
  .story-copy h2,
  .owner-copy h2,
  .service-copy h2,
  .final-cta h2,
  .properties h2,
  .contact-section h2,
  .property-hero h1 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-search {
    width: 100%;
  }

  .signal-grid,
  .path-grid,
  .property-grid,
  .service-items,
  .footer-content,
	  .listing-filter,
	  .property-overview-grid,
	  .benefit-grid,
	  .finance-calculator,
	  .advanced-finance-form,
	  .guide-grid,
	  .amortization-grid,
	  .result-grid {
	    grid-template-columns: 1fr;
	  }

  .signal-grid div,
  .signal-grid div:last-child {
    min-height: auto;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .showcase-section,
  .featured-story,
  .portfolio-section,
  .owner-section,
  .service-band,
  .final-cta,
	  .listing-section,
	  .property-detail-section,
	  .finance-section,
	  .finance-guide,
	  .advanced-finance-section,
	  .amortization-section,
	  .source-section,
	  .contact-finance-cta,
	  .contact-section,
	  .properties {
	    padding: 4rem 0;
	  }

	  .property-detail-hero,
	  .contact-hero,
	  .financing-hero {
	    padding: calc(var(--header-height) + 3rem) 0 3rem;
	  }

  .listing-hero {
    min-height: 68vh;
    padding: calc(var(--header-height) + 3.5rem) 0 3rem;
  }

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

  .properties,
  .property-hero {
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .path-card,
  .service-item {
    min-height: 260px;
  }

  .story-badge {
    position: static;
    margin-top: 0.75rem;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .detail-aside {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .logo {
    width: 168px;
    min-width: 154px;
  }

  .hero-copy h1,
	  .listing-hero-content h1,
	  .property-hero-copy h1,
	  .contact-hero-copy h1,
	  .financing-hero-copy h1,
	  .section-heading h2,
  .story-copy h2,
  .owner-copy h2,
  .service-copy h2,
  .final-cta h2,
  .properties h2,
  .contact-section h2,
  .property-hero h1 {
    font-size: 2rem;
  }

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

  .btn {
    width: 100%;
  }
}

/* Premium LVN redesign based on lvn-video-hero_10.html */
:root {
  --ink: #111827;
  --ink-soft: #2d3748;
  --ink-mid: #4b5563;
  --ink-light: #9ca3af;
  --paper: #fefdf9;
  --mist: #f7f3ed;
  --line: #e7dfd3;
  --muted: #68717d;
  --accent: #b8936a;
  --accent-strong: #9a7553;
  --gold: #b8936a;
  --gold-dk: #9a7553;
  --cream: #fefdf9;
  --cream-2: #f7f3ed;
  --cream-3: #ede8df;
  --teal: #047c7a;
  --shadow: 0 24px 56px rgba(17, 24, 39, 0.14);
  --header-height: 72px;
  --max-width: 1240px;
  --button-flow-space: 1.35rem;
  --button-group-space: 1.5rem;
  --button-hero-space: 2.1rem;
  --transition: 220ms cubic-bezier(.16, 1, .3, 1);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.hero-copy h1,
.section-heading h2,
.story-copy h2,
.owner-copy h2,
.service-copy h2,
.final-cta h2,
.listing-hero-content h1,
.property-hero-copy h1,
.contact-hero-copy h1,
.financing-hero-copy h1,
.contact-section h2,
.property-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  padding-inline: clamp(20px, 4vw, 52px);
}

.site-header {
  height: var(--header-height);
  background: transparent;
  border-bottom-color: transparent;
  color: #fff;
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(254, 253, 249, 0.96);
  border-bottom-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(14px);
  color: var(--ink);
}

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

.nav {
  min-height: var(--header-height);
  gap: 2.25rem;
}

.logo {
  width: 196px;
}

.desktop-nav a,
.mobile-nav a {
  min-height: 36px;
  padding: 0 0.82rem;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 500;
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-scrolled .mobile-nav a {
  color: var(--ink-mid);
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.active,
.site-header.is-scrolled .mobile-nav a:hover {
  background: var(--cream-2);
  color: var(--ink);
}

.nav-cta {
  min-height: 40px;
  padding: 0 1.25rem;
  border-radius: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-cta:hover {
  background: var(--gold-dk);
}

.menu-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header.is-scrolled .menu-toggle {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 950;
  border-top: 1px solid var(--line);
  background: rgba(254, 253, 249, 0.98);
  backdrop-filter: blur(16px);
}

.mobile-nav a {
  color: var(--ink);
  font-size: 1.05rem;
}

.eyebrow {
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 0.5rem;
  height: 0.5rem;
}

.btn {
  min-height: 46px;
  padding: 0 1.6rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-gold,
.btn-accent,
.btn-report {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover,
.btn-accent:hover,
.btn-report:hover {
  background: var(--gold-dk);
  box-shadow: 0 8px 24px rgba(184, 147, 106, 0.32);
}

.btn-dark,
.btn-secondary {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover,
.btn-secondary:hover {
  background: #2d3748;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-outline-light,
.btn-ghost-white {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover,
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
}

.home-hero {
  min-height: 100svh;
  padding: 0;
  align-items: center;
  overflow: hidden;
  background: #080a12;
}

.hero-bg,
.hero-overlay,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: url("images/sale-sobrado-alto-padrao.jpg") 50% 42% / cover no-repeat;
  transform-origin: 50% 42%;
  animation: lvnKenBurns 25s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes lvnKenBurns {
  from {
    transform: scale(1.25);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay,
.hero-shade,
.listing-hero-shade {
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(8, 10, 18, 0.82) 0%, rgba(8, 10, 18, 0.55) 45%, rgba(8, 10, 18, 0.22) 100%),
    linear-gradient(to top, rgba(8, 10, 18, 0.52), transparent 48%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 220px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-layout {
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  align-items: center;
  gap: 4rem;
  padding-top: var(--header-height);
  padding-bottom: 6rem;
}

.hero-copy {
  max-width: 640px;
  opacity: 0;
  transform: translateY(32px);
  animation: lvnHeroIn 0.9s 0.35s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-copy .eyebrow,
.home-hero .eyebrow,
.service-band .eyebrow,
.final-cta .eyebrow,
.listing-hero .eyebrow,
.financing-hero .eyebrow,
.contact-hero .eyebrow,
.property-detail-hero .eyebrow {
  color: var(--gold);
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.04;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-copy h1 em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

.hero-copy p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.78;
}

.hero-search {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2rem 1.75rem;
  border: 0;
  border-radius: 20px;
  background: rgba(254, 253, 249, 0.96);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(32px);
  animation: lvnHeroIn 0.9s 0.6s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes lvnHeroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-search .form-title {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.hero-search label,
.contact-form label,
.advanced-finance-form label,
.listing-filter label,
.finance-calculator label {
  color: var(--ink-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-search input,
.hero-search select,
.contact-form input,
.contact-form textarea,
.contact-form select,
.advanced-finance-form input,
.advanced-finance-form select,
.listing-filter input,
.listing-filter select,
.finance-calculator input,
.finance-calculator select {
  border: 1.5px solid var(--cream-3);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-size: 0.95rem;
}

.hero-search input:focus,
.hero-search select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.advanced-finance-form input:focus,
.advanced-finance-form select:focus,
.listing-filter input:focus,
.listing-filter select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 147, 106, 0.12);
}

.hero-search .btn {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
  transform: translateX(-50%);
  animation: lvnScrollCue 2s ease-in-out infinite 2s;
}

@keyframes lvnScrollCue {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.signal-strip {
  padding: 3.5rem 0;
  border: 0;
  background: var(--ink);
}

.signal-grid {
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid div,
.signal-grid div:last-child {
  min-height: auto;
  padding: 1.7rem 2.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 0;
}

.signal-grid strong {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.signal-grid span {
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

.showcase-section,
.portfolio-section,
.contact-section,
.properties,
.finance-guide,
.advanced-finance-section,
.amortization-section,
.source-section,
.contact-finance-cta,
.property-detail-section,
.featured-story,
.owner-section {
  padding: 6.25rem 0;
}

.showcase-section,
.portfolio-section,
.contact-section,
.advanced-finance-section,
.property-detail-section {
  background: var(--cream);
}

.featured-story,
.finance-guide,
.amortization-section,
.contact-finance-cta,
.owner-section,
.source-section {
  background: var(--cream-2);
}

/* Corrige cores de texto na owner-section com fundo claro */
.owner-section {
  color: var(--ink);
}

.owner-copy p {
  color: var(--muted);
}

.owner-section .eyebrow {
  color: var(--teal);
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.owner-copy h2,
.service-copy h2,
.final-cta h2,
.contact-section h2,
.source-box h2,
.amortization-card h2,
.property-hero-copy h1,
.contact-hero-copy h1,
.financing-hero-copy h1,
.listing-hero-content h1 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
}

.path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.path-card {
  min-height: 300px;
  padding: 2.5rem 2.1rem;
  justify-content: flex-start;
  gap: 0.8rem;
  border: 1.5px solid var(--cream-3);
  border-radius: 20px;
  background: var(--cream-2);
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.14);
}

.path-card-dark {
  border-color: transparent;
  background: var(--ink);
}

.path-card-gold {
  border-color: transparent;
  background: linear-gradient(135deg, #c4a07a, var(--gold-dk));
}

.path-card .tag,
.path-card span,
.property-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.4rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.path-card-dark .tag,
.path-card-dark span,
.path-card-gold .tag,
.path-card-gold span {
  color: rgba(255, 255, 255, 0.82);
}

.path-card h3 {
  flex: 1;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.12;
}

.path-card-dark h3,
.path-card-gold h3 {
  color: #fff;
}

.path-card p {
  color: var(--ink-mid);
  font-size: 0.9rem;
  line-height: 1.65;
}

.path-card-dark p,
.path-card-gold p {
  color: rgba(255, 255, 255, 0.54);
}

.path-card .arrow,
.path-card > i {
  width: 42px;
  height: 42px;
  margin-top: auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--cream-3);
  color: var(--ink);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.path-card-dark .arrow,
.path-card-gold .arrow,
.path-card-dark > i,
.path-card-gold > i {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.path-card:hover .arrow,
.path-card:hover > i {
  background: var(--gold);
  color: #fff;
  transform: translateX(5px);
}

.story-grid,
.owner-grid {
  gap: 5rem;
}

.story-media,
.owner-photo {
  border-radius: 20px;
}

.story-media img {
  height: 520px;
  border-radius: 20px;
  object-fit: cover;
}

.story-badge {
  border-radius: 12px;
  background: rgba(254, 253, 249, 0.96);
}

.story-badge strong,
.price {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.property-grid {
  gap: 1.25rem;
}

.property-card {
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.06);
}

.property-card:hover {
  box-shadow: 0 24px 52px rgba(17, 24, 39, 0.1);
}

.property-card img {
  height: 230px;
}

.property-details {
  padding: 1.45rem 1.5rem;
}

.property-details h3 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.property-tag {
  border: 0;
  background: var(--gold);
  color: #fff;
}

.owner-photo::before {
  background: linear-gradient(135deg, var(--cream-3), var(--cream-2));
  border-radius: 20px;
}

.owner-photo img {
  height: 480px;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.service-band {
  padding: 6.25rem 0;
  background: var(--ink);
}

.service-grid {
  gap: 5rem;
}

.service-copy h2,
.final-cta h2 {
  color: #fff;
}

.service-copy p,
.service-item p {
  color: rgba(255, 255, 255, 0.42);
}

.service-items {
  gap: 1.5rem;
}

.service-item {
  min-height: 220px;
  padding: 1.8rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.service-item i {
  color: var(--gold);
}

.service-item h3 {
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
}

.final-cta {
  padding: 7.5rem 0;
  background: linear-gradient(140deg, #0c0d11, #180f07);
}

.final-cta::before {
  background: radial-gradient(circle, rgba(184, 147, 106, 0.13) 0%, transparent 65%);
}

.final-cta-inner {
  justify-content: center;
  text-align: center;
}

.site-footer {
  background: #090a0d;
}

.footer-content {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.32);
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.46);
}

.footer-col a:hover,
.footer-col i {
  color: var(--gold);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.18);
}

.listing-hero {
  min-height: 82vh;
  align-items: center;
  padding: calc(var(--header-height) + 6rem) 0 5rem;
  background: #080a12;
}

.listing-hero-media img {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.03);
}

.listing-hero-content h1,
.listing-hero-content p {
  color: #fff;
}

.listing-hero-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.listing-metrics span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(6px);
}

.listing-filter,
.contact-details,
.contact-form-wrapper,
.advanced-finance-form,
.advanced-finance-results,
.source-box,
.detail-aside,
.guide-card,
.amortization-card,
.overview-item,
.detail-block,
.benefit-grid > div,
.financing-panel {
  border: 1.5px solid var(--cream-3);
  border-radius: 20px;
  background: rgba(254, 253, 249, 0.92);
  box-shadow: 0 16px 46px rgba(17, 24, 39, 0.07);
}

.listing-filter {
  margin-top: -4.5rem;
  position: relative;
  z-index: 3;
  padding: 1.4rem;
}

.listing-toolbar {
  margin-top: 3.2rem;
}

.listing-toolbar h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.listing-specs li {
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink-mid);
}

.empty-state {
  color: var(--muted);
}

.financing-hero,
.contact-hero,
.property-detail-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 6rem) 0 5.5rem;
  background:
    linear-gradient(110deg, rgba(8, 10, 18, 0.88), rgba(8, 10, 18, 0.62)),
    url("images/sale-apartamento-parque.jpg") center / cover no-repeat;
  color: #fff;
}

.contact-hero {
  background:
    linear-gradient(110deg, rgba(8, 10, 18, 0.9), rgba(8, 10, 18, 0.58)),
    url("images/rent-apartamento-mobiliado.jpg") center / cover no-repeat;
}

.property-detail-hero {
  background:
    linear-gradient(110deg, rgba(8, 10, 18, 0.9), rgba(8, 10, 18, 0.54)),
    url("images/sale-casa-primavera.jpg") center / cover no-repeat;
}

.financing-hero-copy h1,
.financing-hero-copy > p:not(.eyebrow),
.contact-hero-copy h1,
.contact-hero-copy > p:not(.eyebrow),
.property-hero-copy h1,
.property-hero-copy > p:not(.eyebrow) {
  color: #fff;
}

.financing-hero-copy > p:not(.eyebrow),
.contact-hero-copy > p:not(.eyebrow),
.property-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.financing-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(254, 253, 249, 0.96);
}

.financing-panel span {
  color: var(--gold);
}

.financing-panel strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.financing-panel p {
  color: var(--ink-mid);
}

.contact-portrait {
  border-radius: 20px;
}

.contact-portrait img,
.property-hero-image img {
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.22);
}

.contact-grid,
.advanced-finance-layout {
  align-items: stretch;
}

.contact-details,
.contact-form-wrapper,
.advanced-finance-form,
.advanced-finance-results {
  height: 100%;
}

.contact-details h2 {
  margin-bottom: 1.35rem;
}

.contact-method {
  border-bottom-color: var(--cream-3);
}

.contact-method i,
.guide-card i,
.overview-item i,
.benefit-grid i {
  color: var(--gold);
}

.contact-hours {
  color: var(--ink-mid);
}

.contact-form button {
  margin-top: 1.5rem;
}

.advanced-finance-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.9fr);
}

.advanced-finance-results {
  position: sticky;
  top: calc(var(--header-height) + 1.2rem);
  border-color: rgba(255, 255, 255, 0.08);
  background: #0c0d0f;
  color: #fff;
}

.advanced-finance-results .eyebrow {
  color: var(--gold);
}

.advanced-finance-results .main-result {
  border-radius: 12px;
  background: var(--gold);
  color: #fff;
}

.advanced-finance-results .main-result span,
.advanced-finance-results .main-result strong {
  color: #fff;
}

.result-grid > div {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.advanced-finance-results span {
  color: rgba(255, 255, 255, 0.62);
}

.advanced-finance-results strong {
  color: #fff;
}

.result-note {
  color: rgba(255, 255, 255, 0.72);
}

.guide-card h3,
.amortization-card h2,
.detail-block h2,
.detail-aside h2,
.benefit-grid h3 {
  color: var(--ink);
}

.property-overview {
  background: var(--ink);
}

.overview-item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  box-shadow: none;
}

.overview-item span {
  color: rgba(255, 255, 255, 0.54);
}

.gallery-grid img {
  border-radius: 20px;
}

.detail-aside {
  top: calc(var(--header-height) + 1.2rem);
}

.text-link {
  color: var(--gold);
}

.text-link:hover {
  border-color: var(--gold);
}

.js .reveal {
  transform: translateY(26px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.js .reveal.is-visible {
  transform: none;
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    max-width: 660px;
    align-items: center;
  }

  .hero-search {
    max-width: 520px;
  }

  .advanced-finance-layout {
    grid-template-columns: 1fr;
  }

  .advanced-finance-results {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .logo {
    width: 170px;
  }

  .site-header:not(.is-scrolled) .logo img {
    filter: none;
  }

  .site-header:not(.is-scrolled) {
    background: rgba(254, 253, 249, 0.94);
    color: var(--ink);
    backdrop-filter: blur(14px);
  }

  .site-header:not(.is-scrolled) .menu-toggle {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
  }

  .home-hero {
    min-height: 100svh;
  }

  .hero-layout {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 3rem;
  }

  .hero-search {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .signal-grid,
  .path-grid,
  .property-grid,
  .service-items,
  .footer-content,
  .listing-filter,
  .property-overview-grid,
  .benefit-grid,
  .guide-grid,
  .amortization-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid div,
  .signal-grid div:last-child {
    padding: 1.4rem 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .showcase-section,
  .featured-story,
  .portfolio-section,
  .owner-section,
  .service-band,
  .final-cta,
  .listing-section,
  .property-detail-section,
  .finance-guide,
  .advanced-finance-section,
  .amortization-section,
  .source-section,
  .contact-finance-cta,
  .contact-section {
    padding: 4.2rem 0;
  }

  .listing-hero,
  .financing-hero,
  .contact-hero,
  .property-detail-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 4rem) 0 4rem;
  }

  .listing-filter {
    margin-top: -2rem;
  }

  .path-card,
  .service-item {
    min-height: 250px;
  }

  .story-media img,
  .owner-photo img {
    height: 320px;
  }

  .story-grid,
  .owner-grid,
  .service-grid {
    gap: 2.5rem;
  }

  .final-cta-inner {
    align-items: center;
  }
}
