:root {
  --navy: #0D326B;
  --navy-deep: #061B3D;
  --navy-soft: #24518A;
  --orange: #D35427;
  --orange-dark: #B6401D;
  --orange-light: #E9794B;
  --ink: #102A43;
  --text: #34495E;
  --muted: #718296;
  --line: #E3EAF1;
  --soft: #F4F7FA;
  --white: #ffffff;
  --success: #18b862;
  --shadow-sm: 0 8px 24px rgba(6, 27, 61, 0.08);
  --shadow-md: 0 18px 48px rgba(6, 27, 61, 0.12);
  --shadow-lg: 0 28px 80px rgba(6, 27, 61, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: #F7F9FC;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

svg {
  display: block;
}

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

[hidden] {
  display: none !important;
}

/* Cabeçalho */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.965);
  border-bottom: 1px solid rgba(228, 232, 237, 0.9);
  box-shadow: 0 5px 24px rgba(13, 50, 107, 0.07);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: clamp(190px, 19vw, 225px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #40556A;
  font-size: 13px;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 30px 0;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
  transition: right 0.2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--orange-dark);
}

.main-nav > a:not(.button):hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Botões */
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-orange {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 10px 25px rgba(211, 84, 39, 0.24);
}

.button-orange:hover {
  box-shadow: 0 14px 30px rgba(211, 84, 39, 0.32);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.11);
}

.button-small {
  min-height: 38px;
  padding: 0 17px;
  border-radius: 9px;
  font-size: 12px;
}

.button-large {
  min-height: 52px;
  padding-inline: 28px;
}

.button-block {
  width: 100%;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(88, 69, 160, 0.72), transparent 31%),
    radial-gradient(circle at 8% 80%, rgba(211, 84, 39, 0.12), transparent 30%),
    linear-gradient(120deg, #16467F 0%, #0D326B 57%, #061B3D 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 88px;
  padding: 82px 0 90px;
}

.eyebrow,
.partner-eyebrow {
  margin: 0 0 22px;
  color: #D6DEE8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.footer-brand {
  color: var(--navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(52px, 6.1vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-description {
  max-width: 610px;
  margin: 30px 0 32px;
  color: #E5EBF2;
  font-size: 18px;
  line-height: 1.65;
}

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

.stats-card {
  width: 100%;
  max-width: 450px;
  justify-self: end;
  padding: 20px 31px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.stat-row + .stat-row {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.stat-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  color: #F09673;
  border: 1px solid rgba(255, 182, 88, 0.35);
  border-radius: 17px;
  background: rgba(211, 84, 39, 0.13);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.stat-icon-symbol {
  font-family: inherit;
  font-size: 24px;
}

.stat-row strong,
.stat-row small {
  display: block;
}

.stat-row strong {
  color: var(--white);
  font-size: 16px;
}

.stat-row small {
  margin-top: 5px;
  color: #D2DBE5;
  font-size: 12px;
  line-height: 1.45;
}

/* Títulos e seções */
.property-section {
  padding: 86px 0 96px;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.compact-heading {
  align-items: center;
}

.section-kicker,
.details-card-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.brokerage-copy h2,
.partner-content h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 51px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-subtitle {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}

.filter-button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.filter-button.active,
.filter-button:hover {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 7px 16px rgba(211, 84, 39, 0.22);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
}

/* Cards de imóveis */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
  margin-top: 43px;
}

.property-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 227, 233, 0.9);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.property-card:hover {
  transform: translateY(-7px);
  border-color: rgba(211, 84, 39, 0.28);
  box-shadow: var(--shadow-md);
}

.property-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10.7;
  overflow: hidden;
  background: #ECF0F4;
}

.property-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.property-card:hover .property-image {
  transform: scale(1.045);
}

.property-image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 30px;
  color: #7B8B9D;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), transparent),
    #EBEFF4;
  text-align: center;
}

.property-image-fallback svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.property-image-fallback strong {
  color: var(--navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
}

.property-tag,
.details-objective-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  background: rgba(211, 84, 39, 0.95);
  box-shadow: 0 8px 20px rgba(89, 33, 20, 0.17);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.property-tag.tag-aluguel,
.details-objective-badge.tag-aluguel {
  background: rgba(13, 50, 107, 0.94);
}

.property-body {
  padding: 25px 25px 24px;
}

.property-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2.1vw, 27px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.property-location {
  min-height: 21px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
}

.property-location svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.property-price {
  margin-top: 19px;
  color: var(--orange);
  font-size: clamp(25px, 2.6vw, 32px);
  font-weight: 850;
  letter-spacing: -0.035em;
}

.property-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 21px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.property-fact {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-fact + .property-fact {
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.property-fact-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  color: var(--orange);
}

.property-fact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.property-fact-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.property-fact-copy strong {
  overflow: hidden;
  color: #353746;
  font-size: 14px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-fact-copy small {
  color: #8796A7;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.property-actions {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  margin-top: 20px;
}

.property-details-button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 10px 22px rgba(211, 84, 39, 0.18);
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-details-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 27px rgba(211, 84, 39, 0.26);
}

.property-details-button svg,
.property-whatsapp-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.property-whatsapp-button {
  width: 48px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid #bfe8d0;
  border-radius: 11px;
  color: #0b9d4a;
  background: #effbf4;
  transition: transform 0.2s ease, background 0.2s ease;
}

.property-whatsapp-button:hover {
  transform: translateY(-2px);
  background: #e2f8eb;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 68px 24px;
  border: 1px dashed #D8E0E8;
  border-radius: 20px;
  color: #7c8995;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 14px;
}

.property-skeleton {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.skeleton-media,
.skeleton-line,
.skeleton-button {
  position: relative;
  overflow: hidden;
  background: #ECF0F4;
}

.skeleton-media::after,
.skeleton-line::after,
.skeleton-button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  animation: skeleton-shine 1.35s infinite;
}

.skeleton-media {
  aspect-ratio: 16 / 10.7;
}

.skeleton-body {
  padding: 25px;
}

.skeleton-line {
  height: 14px;
  margin-bottom: 13px;
  border-radius: 99px;
}

.skeleton-line-large {
  width: 76%;
  height: 25px;
}

.skeleton-line-medium {
  width: 58%;
}

.skeleton-line-price {
  width: 46%;
  height: 28px;
  margin: 23px 0;
}

.skeleton-button {
  height: 49px;
  margin-top: 25px;
  border-radius: 11px;
}

@keyframes skeleton-shine {
  100% {
    transform: translateX(100%);
  }
}

/* Corretagem e parceiros */
.brokerage-section {
  padding: 95px 0;
  border-top: 1px solid #EEF2F6;
  background: var(--white);
}

.brokerage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 82px;
}

.brokerage-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.check-list {
  padding: 0;
  margin: 30px 0 32px;
  list-style: none;
  color: #485D70;
  font-size: 14px;
}

.check-list li {
  position: relative;
  margin: 15px 0;
  padding-left: 35px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.brokerage-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 25px;
  background: linear-gradient(145deg, #EEF2F6, #ffffff);
  box-shadow: var(--shadow-md);
}

.brokerage-card-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(211, 84, 39, 0.28), transparent 29%),
    radial-gradient(circle at 85% 75%, rgba(13, 50, 107, 0.13), transparent 31%);
}

.brokerage-card-seal {
  position: absolute;
  top: 42px;
  left: 43px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 84, 39, 0.35);
  border-radius: 22px 22px 22px 8px;
  color: var(--white);
  background: linear-gradient(145deg, var(--orange-light), var(--orange-dark));
  box-shadow: 0 18px 35px rgba(211, 84, 39, 0.2);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.brokerage-card-label {
  position: absolute;
  left: 43px;
  right: 43px;
  bottom: 38px;
  color: var(--navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.22;
}

.partner-section {
  padding: 87px 0 91px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 80% 20%, #285C97 0, transparent 33%),
    linear-gradient(115deg, #082753, #0A2D62);
}

.partner-content {
  max-width: 790px;
}

.partner-content h2 {
  color: var(--white);
}

.partner-content p:not(.partner-eyebrow) {
  max-width: 680px;
  margin: 20px auto 30px;
  color: #E0E7EF;
  font-size: 16px;
  line-height: 1.65;
}

.centered-actions {
  justify-content: center;
}

/* Página de detalhes */
.property-details-view {
  background: var(--soft);
}

.details-page {
  min-height: 100vh;
  padding: 32px 0 90px;
}

.details-container {
  max-width: 1180px;
}

.details-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.back-link,
.share-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #627487;
  font-size: 13px;
  font-weight: 750;
}

.back-link:hover,
.share-button:hover {
  color: var(--orange-dark);
}

.back-link svg,
.share-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-button {
  min-height: 41px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.details-gallery {
  position: relative;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  border-radius: 25px;
  background: #EBEFF4;
  box-shadow: var(--shadow-md);
}

.details-gallery::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(16, 8, 50, 0.28), transparent);
}

.details-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #eef2f6;
}

.details-image-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 11px;
  padding: 30px;
  color: #76879A;
  background:
    radial-gradient(circle at 20% 15%, rgba(211, 84, 39, 0.13), transparent 25%),
    linear-gradient(145deg, #F6F9FC, #E8EDF3);
  text-align: center;
}

.details-image-fallback svg {
  width: 69px;
  height: 69px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.details-image-fallback strong {
  color: var(--navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
}

.details-image-fallback span {
  max-width: 370px;
  font-size: 13px;
  line-height: 1.5;
}

.details-objective-badge {
  top: 24px;
  right: 24px;
  z-index: 3;
  min-height: 43px;
  padding-inline: 20px;
}

.details-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 28px;
  margin-top: 28px;
}

.details-content {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.details-content-card,
.details-summary-card,
.details-video-link {
  border: 1px solid rgba(221, 227, 233, 0.9);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.details-content-card {
  padding: 31px 33px;
}

.details-content-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.details-description {
  margin: 19px 0 0;
  color: #647689;
  font-size: 15px;
  line-height: 1.85;
  white-space: pre-line;
}

.details-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.details-features li {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px 10px 45px;
  border: 1px solid #EEF2F6;
  border-radius: 12px;
  color: #5F7285;
  background: #FAFCFE;
  font-size: 13px;
  line-height: 1.4;
}

.details-features li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-dark);
  background: #fae8e2;
  font-size: 11px;
  font-weight: 900;
}

.details-location-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
}

.details-location-card p:not(.details-card-kicker) {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.details-location-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--orange);
  background: #fbece7;
}

.details-location-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.details-video-link {
  min-height: 86px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.details-video-link:hover {
  transform: translateY(-2px);
  border-color: rgba(211, 84, 39, 0.32);
  box-shadow: var(--shadow-md);
}

.details-video-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--orange);
}

.details-video-link strong,
.details-video-link small {
  display: block;
}

.details-video-link strong {
  color: var(--navy);
  font-size: 14px;
}

.details-video-link small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.details-summary-card {
  position: sticky;
  top: 103px;
  padding: 30px;
}

.details-location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.details-location::before {
  content: "⌖";
  color: var(--orange);
  font-size: 18px;
}

.details-summary-card h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.details-price {
  margin: 23px 0 24px;
  color: var(--orange);
  font-size: clamp(30px, 3.1vw, 39px);
  font-weight: 850;
  letter-spacing: -0.045em;
}

.details-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-stat {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 7px 4px;
  text-align: center;
}

.detail-stat + .detail-stat {
  border-left: 1px solid var(--line);
}

.detail-stat-icon {
  color: var(--orange);
}

.detail-stat-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-stat strong {
  overflow: hidden;
  max-width: 100%;
  color: #353746;
  font-size: 14px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-stat span {
  color: #8796A7;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.details-reference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
}

.details-reference strong {
  color: var(--navy);
  font-size: 12px;
}

.details-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.button-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #1fc66d, #0fa653);
  box-shadow: 0 11px 24px rgba(15, 166, 83, 0.2);
}

.button-call {
  color: var(--navy);
  border-color: #D9E1E9;
  background: var(--white);
}

.button-call:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.details-service-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  color: #7D8D9F;
  font-size: 10px;
  text-align: center;
}

.details-service-note span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0f9f50;
  background: #e9f9f0;
  font-size: 10px;
  font-weight: 900;
}

/* Rodapé */
.site-footer {
  padding: 57px 0 0;
  color: #D8E1EA;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 46px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.footer-logo {
  display: block;
  width: min(235px, 100%);
  height: auto;
}

.site-footer h3 {
  display: block;
  margin: 0 0 20px;
  color: var(--orange-light);
  font-size: 19px;
}

.site-footer h3 {
  font-family: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a:not(.footer-brand) {
  color: #BEC9D6;
  font-size: 12px;
  line-height: 1.8;
}

.footer-grid > div > p {
  max-width: 325px;
}

.footer-grid > div:last-child a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0 25px;
  border-top: 1px solid rgba(211, 205, 228, 0.16);
  color: #8A9AAF;
  font-size: 11px;
}

/* Botão flutuante */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, #25d976, #12b55b);
  box-shadow: 0 13px 30px rgba(18, 181, 91, 0.32);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 17px 36px rgba(18, 181, 91, 0.39);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 7, 38, 0.73);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: 36px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.3);
}

.modal-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
}

.modal-intro {
  margin: 13px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  color: #708194;
  background: #F4F7FA;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.modal-options {
  display: grid;
  gap: 12px;
}

.modal-option {
  min-height: 76px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.modal-option:hover {
  transform: translateY(-2px);
  border-color: rgba(211, 84, 39, 0.38);
  background: #fdf8f6;
}

.modal-option-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.modal-option strong,
.modal-option small {
  display: block;
}

.modal-option strong {
  color: var(--navy);
  font-size: 14px;
}

.modal-option small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

/* Toast */
.site-toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 150;
  max-width: calc(100% - 32px);
  transform: translateX(-50%);
  padding: 13px 18px;
  border-radius: 11px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}


/* Refinamento visual alinhado à identidade JR Carvalho */
:root {
  --brand-blue: #0D326B;
  --brand-blue-deep: #061B3D;
  --brand-blue-soft: #24518A;
  --brand-orange: #D35427;
  --brand-orange-dark: #B6401D;
  --brand-orange-light: #E9794B;
}

.site-header {
  border-bottom-color: rgba(13, 50, 107, 0.09);
}

.brand-logo {
  width: clamp(195px, 19vw, 232px);
  max-height: 67px;
}

.main-nav > a:not(.button)::after {
  background: var(--brand-orange);
}

.hero-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(56, 111, 173, 0.55), transparent 31%),
    radial-gradient(circle at 8% 82%, rgba(211, 84, 39, 0.12), transparent 30%),
    linear-gradient(120deg, #16467F 0%, #0D326B 57%, #061B3D 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(520px, 42vw);
  aspect-ratio: 1.4;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  background: url("simbolo-jr.png") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.hero-grid {
  z-index: 2;
}

.hero-copy h1 {
  font-weight: 850;
  letter-spacing: -0.055em;
}

.hero-copy h1 em {
  color: var(--brand-orange-light);
}

.stats-card {
  border-color: rgba(220, 232, 245, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  box-shadow: 0 28px 70px rgba(3, 15, 34, 0.24);
}

.stat-icon {
  color: #F3A17F;
  border-color: rgba(244, 161, 132, 0.36);
  background: rgba(211, 84, 39, 0.15);
}

.section-white,
.brokerage-section {
  background: #ffffff;
}

.section-soft,
.property-details-view {
  background: #F3F6FA;
}

.section-kicker,
.details-card-kicker {
  color: var(--brand-orange);
}

.section-heading h2,
.brokerage-copy h2,
.partner-content h2 {
  font-weight: 820;
}

.property-card,
.details-content-card,
.details-summary-card,
.details-video-link {
  border-color: rgba(13, 50, 107, 0.1);
  box-shadow: 0 10px 28px rgba(13, 50, 107, 0.07);
}

.property-card:hover {
  border-color: rgba(211, 84, 39, 0.3);
  box-shadow: 0 22px 52px rgba(13, 50, 107, 0.13);
}

.property-tag.tag-aluguel,
.details-objective-badge.tag-aluguel {
  background: rgba(13, 50, 107, 0.94);
}

.property-tag,
.details-objective-badge {
  background: rgba(211, 84, 39, 0.96);
}

.filter-group {
  border-color: rgba(13, 50, 107, 0.1);
  background: #F3F6FA;
}

.property-details-button,
.button-orange {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
}

.property-details-button {
  box-shadow: 0 10px 24px rgba(211, 84, 39, 0.2);
}

.property-whatsapp-button {
  border-color: #cce9d7;
  color: #168e49;
  background: #f1faf5;
}

.brokerage-section {
  position: relative;
  overflow: hidden;
}

.brokerage-section::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -220px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 81, 138, 0.08), transparent 67%);
  pointer-events: none;
}

.brokerage-card {
  min-height: 370px;
  border: 1px solid rgba(13, 50, 107, 0.09);
  background:
    radial-gradient(circle at 20% 18%, rgba(211, 84, 39, 0.12), transparent 31%),
    radial-gradient(circle at 83% 76%, rgba(36, 81, 138, 0.14), transparent 35%),
    linear-gradient(145deg, #F5F8FB, #ffffff);
  box-shadow: 0 26px 64px rgba(13, 50, 107, 0.13);
}

.brokerage-card-glow {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 46%),
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 34px,
      rgba(13, 50, 107, 0.022) 35px,
      rgba(13, 50, 107, 0.022) 36px
    );
}

.brokerage-card-seal {
  position: absolute;
  top: 38px;
  left: 40px;
  width: 142px;
  height: auto;
  padding: 14px 16px;
  border: 1px solid rgba(13, 50, 107, 0.1);
  border-radius: 18px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 35px rgba(13, 50, 107, 0.12);
}

.brokerage-card-label {
  max-width: 430px;
  color: var(--brand-blue);
  font-weight: 820;
  letter-spacing: -0.035em;
}

.partner-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(48, 98, 158, 0.64) 0, transparent 34%),
    linear-gradient(115deg, #0B356F, #061B3D);
}

.details-gallery {
  box-shadow: 0 24px 64px rgba(13, 50, 107, 0.15);
}

.details-summary-card {
  border-top: 4px solid var(--brand-orange);
}

.details-features li {
  border-color: rgba(13, 50, 107, 0.08);
  background: #F9FBFD;
}

.details-features li::before,
.details-location-icon {
  color: var(--brand-orange-dark);
  background: #f9e8e3;
}

.site-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(34, 74, 126, 0.38), transparent 34%),
    var(--brand-blue-deep);
}

.footer-brand {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.footer-logo {
  width: min(245px, 100%);
}

.modal-backdrop {
  background: rgba(3, 18, 38, 0.78);
}

.modal-card {
  border: 1px solid rgba(13, 50, 107, 0.1);
  box-shadow: 0 32px 90px rgba(3, 18, 38, 0.38);
}

.modal-option:hover {
  border-color: rgba(211, 84, 39, 0.36);
  background: #fdf7f5;
}

.site-toast {
  background: var(--brand-blue);
}

/* Seção institucional e padronização final da identidade */
.hero-copy h1 em,
h1 em,
h2 em,
.section-kicker,
.details-card-kicker,
.stat-icon,
.site-footer h3 {
  color: var(--orange);
}

.button-orange,
.property-details-button {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 25px rgba(211, 84, 39, 0.24);
}

.button-orange:hover,
.property-details-button:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 30px rgba(211, 84, 39, 0.31);
}

.button-light {
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.78);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(3, 18, 38, 0.16);
}

.button-light:hover {
  color: var(--orange-dark);
  background: #fff8f5;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: #ffffff;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: -250px;
  bottom: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 50, 107, 0.08), transparent 68%);
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 82px;
}

.about-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-lead {
  max-width: 720px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.about-pillars {
  display: grid;
  gap: 13px;
  margin-top: 31px;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid rgba(13, 50, 107, 0.09);
  border-radius: 14px;
  background: #f7f9fc;
}

.about-pillar > span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.about-pillar p {
  margin: 0;
  color: #41566b;
  font-size: 14px;
  line-height: 1.45;
}

.about-pillar strong {
  color: var(--navy);
}

.about-symbol-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 48px 42px;
  overflow: hidden;
  border: 1px solid rgba(13, 50, 107, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 81, 138, 0.13), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(211, 84, 39, 0.12), transparent 34%),
    linear-gradient(145deg, #f7f9fc, #ffffff);
  box-shadow: 0 26px 64px rgba(13, 50, 107, 0.12);
  text-align: center;
}

.about-symbol-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(13, 50, 107, 0.06);
  border-radius: 20px;
  pointer-events: none;
}

.about-symbol-card img {
  position: relative;
  z-index: 1;
  width: min(250px, 76%);
  height: auto;
  object-fit: contain;
}

.about-symbol-card p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-cta-section {
  padding: 0 0 92px;
  background: #ffffff;
}

.contact-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 58px;
  padding: 58px 62px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 15%, rgba(36, 81, 138, 0.66), transparent 35%),
    linear-gradient(120deg, var(--navy), var(--navy-deep));
  box-shadow: 0 28px 70px rgba(6, 27, 61, 0.2);
}

.contact-cta-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -170px;
  bottom: -250px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025),
    0 0 0 110px rgba(255, 255, 255, 0.018);
}

.contact-cta-copy,
.contact-cta-actions {
  position: relative;
  z-index: 1;
}

.contact-cta-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-cta-copy > p:not(.partner-eyebrow) {
  max-width: 650px;
  margin: 19px 0 0;
  color: #dbe6f1;
  font-size: 16px;
  line-height: 1.68;
}

.contact-cta-actions {
  display: grid;
  gap: 14px;
}

.contact-cta-actions .button {
  width: 100%;
}

/* Responsivo */
@media (max-width: 980px) {
  .container {
    width: min(100% - 44px, 760px);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 11px 22px 22px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(6, 27, 61, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid #EEF2F6;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 12px;
  }

  .hero-grid,
  .brokerage-grid,
  .about-grid,
  .contact-cta-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    max-width: 650px;
  }

  .contact-cta-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    min-height: auto;
    padding: 72px 0 76px;
  }

  .stats-card {
    justify-self: start;
    max-width: 620px;
  }

  .section-heading {
    display: block;
  }

  .section-actions,
  .compact-heading .text-link {
    margin-top: 25px;
  }

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

  .details-lower-grid {
    grid-template-columns: 1fr;
  }

  .details-summary-card {
    position: static;
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 480px);
  }

  html {
    scroll-padding-top: 71px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 172px;
    max-height: 54px;
  }

  .main-nav {
    top: 72px;
  }

  .hero-grid {
    padding: 58px 0 62px;
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 14vw, 63px);
  }

  .hero-description {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.62;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .stats-card {
    padding: 13px 20px;
    border-radius: 18px;
  }

  .stat-row {
    gap: 13px;
    padding: 15px 0;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 14px;
    font-size: 15px;
  }

  .stat-row strong {
    font-size: 14px;
  }

  .property-section,
  .brokerage-section,
  .about-section {
    padding: 65px 0 72px;
  }

  .about-grid {
    gap: 38px;
  }

  .about-copy h2 {
    font-size: 38px;
  }

  .about-lead {
    font-size: 15px;
    line-height: 1.68;
  }

  .about-symbol-card {
    min-height: 320px;
    padding: 38px 26px;
    border-radius: 21px;
  }

  .about-symbol-card img {
    width: min(210px, 70%);
  }

  .about-symbol-card p {
    font-size: 21px;
  }

  .contact-cta-section {
    padding-bottom: 70px;
  }

  .contact-cta-card {
    gap: 30px;
    padding: 42px 24px;
    border-radius: 22px;
    text-align: center;
  }

  .contact-cta-copy h2 {
    font-size: 38px;
  }

  .contact-cta-actions {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .brokerage-copy h2,
  .partner-content h2 {
    font-size: 38px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-button {
    flex: 1;
    padding-inline: 10px;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .property-card {
    border-radius: 20px;
  }

  .property-media {
    aspect-ratio: 4 / 3;
  }

  .property-body {
    padding: 24px 22px 22px;
  }

  .property-card h3 {
    font-size: 27px;
  }

  .property-price {
    font-size: 31px;
  }

  .property-facts {
    gap: 3px;
  }

  .property-fact {
    display: grid;
    justify-items: center;
    gap: 5px;
    text-align: center;
  }

  .property-fact + .property-fact {
    padding-left: 3px;
  }

  .property-fact-copy strong {
    font-size: 13px;
  }

  .property-fact-copy small {
    font-size: 8px;
  }

  .property-actions {
    grid-template-columns: 1fr 50px;
  }

  .brokerage-card {
    min-height: 290px;
  }

  .brokerage-card-seal {
    top: 28px;
    left: 28px;
    width: 124px;
    padding: 12px 14px;
  }

  .hero-section::after {
    width: 440px;
    right: -175px;
    opacity: 0.045;
  }

  .brokerage-card-label {
    left: 30px;
    right: 30px;
    bottom: 30px;
    font-size: 25px;
  }

  .partner-section {
    padding: 66px 0 70px;
  }

  .details-page {
    padding: 20px 0 65px;
  }

  .share-button {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .share-button:not(:focus) {
    font-size: 0;
  }

  .details-gallery {
    aspect-ratio: 4 / 3;
    border-radius: 19px;
  }

  .details-objective-badge {
    top: 15px;
    right: 15px;
    min-height: 38px;
    padding-inline: 16px;
  }

  .details-lower-grid {
    margin-top: 18px;
    gap: 18px;
  }

  .details-summary-card,
  .details-content-card {
    border-radius: 17px;
  }

  .details-summary-card {
    padding: 25px 22px;
  }

  .details-summary-card h1 {
    font-size: 34px;
  }

  .details-price {
    font-size: 34px;
  }

  .details-content-card {
    padding: 25px 22px;
  }

  .details-content-card h2 {
    font-size: 25px;
  }

  .details-features {
    grid-template-columns: 1fr;
  }

  .details-location-card {
    grid-template-columns: 49px 1fr;
    gap: 15px;
  }

  .details-location-icon {
    width: 49px;
    height: 49px;
    border-radius: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .modal-card {
    padding: 31px 21px 23px;
    border-radius: 18px;
  }

  .modal-card h2 {
    font-size: 32px;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 155px;
  }

  .property-fact-icon svg {
    width: 21px;
    height: 21px;
  }

  .property-fact-copy strong {
    font-size: 12px;
  }

  .details-stats {
    gap: 2px;
  }

  .detail-stat strong {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ======================================================
   GALERIA DE MÍDIAS — SINCRONIZADA COM imovel_midias
   ====================================================== */
.details-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 27, 61, 0.56);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.details-gallery-nav:hover {
  background: rgba(6, 27, 61, 0.78);
  transform: translateY(-50%) scale(1.05);
}

.details-gallery-nav span {
  margin-top: -3px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

.details-gallery-prev {
  left: 20px;
}

.details-gallery-next {
  right: 20px;
}

.details-gallery-counter {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 5;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 27, 61, 0.58);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 850;
}

.details-gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 13px;
  overflow-x: auto;
  padding: 2px 1px 6px;
  scrollbar-width: thin;
}

.details-gallery-thumbnails:empty {
  display: none;
}

.details-gallery-thumb {
  width: 92px;
  height: 68px;
  flex: 0 0 92px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 11px;
  background: #e9eef3;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.details-gallery-thumb:hover,
.details-gallery-thumb.active {
  opacity: 1;
  border-color: var(--orange);
}

.details-gallery-thumb.active {
  transform: translateY(-1px);
}

.details-gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #eef2f6;
}

@media (max-width: 680px) {
  .details-gallery-nav {
    width: 42px;
    height: 42px;
  }

  .details-gallery-prev {
    left: 12px;
  }

  .details-gallery-next {
    right: 12px;
  }

  .details-gallery-counter {
    right: 15px;
    bottom: 14px;
  }

  .details-gallery-thumb {
    width: 76px;
    height: 58px;
    flex-basis: 76px;
  }
}

/* O painel administrativo também gerencia o campo vagas; exibimos o dado nos detalhes. */
.details-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* === Atualização: mapas e players de mídia === */
.brand-logo, .footer-logo, .about-symbol-card img, .brokerage-card-seal {
  background: transparent !important;
}
.details-map-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 10px 14px;
  border: 1px solid rgba(211,84,39,.22); border-radius: 11px; color: var(--orange-dark);
  background: #fff7f3; font-size: 13px; font-weight: 800;
}
.details-map-link:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.details-videos-section { overflow: hidden; }
.details-videos-grid { display: grid; gap: 18px; margin-top: 20px; }
.details-video-player { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #061b3d; }
.details-video-frame { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; background: #061b3d; }
.details-video-external { min-height: 82px; display: flex; align-items: center; gap: 15px; padding: 18px; background: #f8fafc; }
.details-video-external strong { display: block; color: var(--navy); }
.details-video-external small { display: block; margin-top: 5px; color: var(--muted); }
@media (max-width: 680px) { .details-map-link { width: 100%; justify-content: center; } }


/* === V4: galeria mista, proporção integral e precisão de localização === */
.property-media img { object-fit: contain !important; background:#eef2f6; }
.details-gallery { background:#0b2347; }
.details-gallery > img { object-fit:contain !important; background:#eef2f6; }
.details-gallery-video { position:absolute; inset:0; z-index:1; display:grid; place-items:center; background:#061b3d; }
.details-gallery-video[hidden] { display:none !important; }
.details-gallery-video-frame { width:100%; height:100%; display:block; border:0; background:#061b3d; object-fit:contain; }
video.details-gallery-video-frame { object-fit:contain; }
.details-gallery-video-external { width:100%; height:100%; display:grid; place-items:center; align-content:center; gap:12px; color:white; background:linear-gradient(145deg,#061b3d,#0d326b); }
.details-gallery-video-external span { font-size:42px; }
.details-gallery-thumb img { object-fit:contain !important; background:#eef2f6; }
.details-gallery-video-thumb { position:relative; width:100%; height:100%; display:grid; place-items:center; background:#061b3d; }
.details-gallery-video-thumb img { width:100%; height:100%; object-fit:contain !important; }
.details-gallery-video-thumb b { position:absolute; width:30px; height:30px; display:grid; place-items:center; border-radius:50%; color:white; background:rgba(211,84,39,.92); font-size:12px; box-shadow:0 4px 14px rgba(0,0,0,.2); }
.details-gallery-video-thumb.generic { color:white; gap:4px; }
.details-gallery-video-thumb.generic b { position:static; }
.details-gallery-video-thumb.generic small { font-size:9px; font-weight:800; }
.details-location-precision { width:max-content; max-width:100%; margin:9px 0 10px; padding:7px 10px; border:1px solid #f0c6a8; border-radius:999px; color:#9c431f; background:#fff4ec; font-size:11px; font-weight:850; }
.approximate-location-note { padding:12px 14px; border-left:3px solid var(--orange); border-radius:0 10px 10px 0; background:#fff8f4; }
.details-video-frame { object-fit:contain; }

.property-card:hover .property-image { transform:none !important; }


/* Logos PNG transparentes: os contêineres não adicionam blocos atrás da arte. */
.brand, .footer-brand { background: transparent !important; box-shadow: none !important; border-color: transparent !important; }
.brand-logo, .footer-logo, .about-symbol-card img, .brokerage-card-seal { background: transparent !important; }
