:root {
  --bg: #f6f5f3;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-2: rgba(255, 255, 255, 0.76);
  --line: rgba(12, 14, 18, 0.12);
  --text: rgba(12, 14, 18, 0.92);
  --muted: rgba(12, 14, 18, 0.64);
  --muted-2: rgba(12, 14, 18, 0.52);
  --accent: #b08a3c;
  --accent-2: #d6b66f;
  --ok: #1aa47a;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1120px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans",
    sans-serif;
  --font-title: "Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  --header: #01081d;
  --header-text: rgba(255, 255, 255, 0.94);
  --header-muted: rgba(255, 255, 255, 0.78);
  --footer-brand: #b6957e;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(900px 520px at 12% 8%, rgba(176, 138, 60, 0.12), transparent 55%),
    radial-gradient(900px 520px at 86% 0%, rgba(214, 182, 111, 0.12), transparent 52%),
    linear-gradient(180deg, #ffffff, var(--bg));
  overflow-x: hidden;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header.scrolled {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.site-header nav a {
  color: var(--header-muted);
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--header-text);
}

.site-header nav a.active {
  background: rgba(255, 255, 255, 0.18);
  color: var(--header-text);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header .header-contact-item {
  color: var(--header-muted);
}

.site-header .header-contact-item:hover {
  color: var(--header-text);
}

.site-header .btn-primary {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.55);
  color: rgba(12, 14, 18, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.site-header .btn-primary:hover {
  background: #fff;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 86px;
  max-width: min(260px, 48vw);
  object-fit: contain;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

nav a:hover {
  background: rgba(12, 14, 18, 0.06);
  color: rgba(12, 14, 18, 0.9);
}

nav a.active {
  background: rgba(176, 138, 60, 0.12);
  color: rgba(12, 14, 18, 0.92);
  border: 1px solid rgba(176, 138, 60, 0.22);
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-contact {
  display: grid;
  gap: 2px;
  text-align: right;
  line-height: 1.35;
}

.header-contact-item {
  font-size: 11.5px;
  color: var(--muted);
  transition: color 160ms ease;
  white-space: nowrap;
}

.header-contact-item:hover {
  color: rgba(12, 14, 18, 0.9);
}

.header-contact-email {
  font-size: 11px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 14, 18, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(12, 14, 18, 0.92);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(12, 14, 18, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(214, 182, 111, 0.95), rgba(176, 138, 60, 0.92));
  border-color: rgba(176, 138, 60, 0.4);
  color: rgba(12, 14, 18, 0.92);
  box-shadow: 0 16px 32px rgba(176, 138, 60, 0.16);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(214, 182, 111, 0.98), rgba(176, 138, 60, 0.96));
}

.btn-ghost {
  background: transparent;
  border-color: rgba(12, 14, 18, 0.16);
  box-shadow: none;
}

.hero {
  padding: 40px 0 52px;
  position: relative;
}

.hero-shell {
  position: relative;
  padding: clamp(36px, 5vw, 56px);
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid rgba(182, 149, 126, 0.24);
  background:
    radial-gradient(520px 240px at 96% 4%, rgba(1, 8, 29, 0.07), transparent 58%),
    radial-gradient(680px 280px at 4% 0%, rgba(182, 149, 126, 0.14), transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 245, 243, 0.96));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shell::before {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(182, 149, 126, 0.16), transparent 68%);
}

.hero-shell::after {
  width: 180px;
  height: 180px;
  left: -60px;
  top: -80px;
  background: radial-gradient(circle, rgba(1, 8, 29, 0.05), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 4.5vw, 52px);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(182, 149, 126, 0.28);
  background: rgba(182, 149, 126, 0.1);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--footer-brand);
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--footer-brand);
  box-shadow: 0 0 0 4px rgba(182, 149, 126, 0.18);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.9px;
  color: rgba(12, 14, 18, 0.94);
  max-width: 18ch;
}

.hero-lead {
  margin: 22px 0 0;
  font-size: 16px;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(182, 149, 126, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(12, 14, 18, 0.72);
  font-size: 12.5px;
  font-weight: 500;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(182, 149, 126, 0.65);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-btn-whatsapp {
  background: rgba(255, 255, 255, 0.82);
}

.hero-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.14);
  color: #1aa47a;
}

.hero-btn-icon svg {
  width: 13px;
  height: 13px;
}

.hero-contact {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 540px;
}

.hero-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(182, 149, 126, 0.16);
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hero-contact-link:hover {
  background: rgba(182, 149, 126, 0.1);
  border-color: rgba(182, 149, 126, 0.28);
  transform: translateY(-1px);
}

.hero-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  flex-shrink: 0;
  background: rgba(182, 149, 126, 0.14);
  color: var(--footer-brand);
}

.hero-contact-icon svg {
  width: 16px;
  height: 16px;
}

.hero-contact-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.hero-contact-label {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(12, 14, 18, 0.46);
}

.hero-contact-value {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(12, 14, 18, 0.84);
  word-break: break-word;
}

.hero-aside {
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(182, 149, 126, 0.22);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo {
  position: relative;
}

.hero-aside .cover {
  position: relative;
  width: 100%;
  height: clamp(280px, 34vw, 380px);
  overflow: hidden;
  background: rgba(1, 8, 29, 0.04);
}

.hero-aside .cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(1, 8, 29, 0.28));
  pointer-events: none;
}

.hero-aside .cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.hero-photo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(1, 8, 29, 0.72);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-photo-badge-label {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--footer-brand);
}

.hero-aside-content {
  padding: 22px 22px 24px;
  border-top: 1px solid rgba(182, 149, 126, 0.16);
  background:
    radial-gradient(420px 120px at 100% 0%, rgba(182, 149, 126, 0.1), transparent 70%),
    rgba(255, 255, 255, 0.72);
}

.hero-metrics-title {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: -0.2px;
  color: rgba(12, 14, 18, 0.86);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-metric {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(182, 149, 126, 0.18);
  background: rgba(255, 255, 255, 0.82);
  min-width: 0;
}

.hero-metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  flex-shrink: 0;
  background: rgba(182, 149, 126, 0.14);
  color: var(--footer-brand);
}

.hero-metric-icon--accent {
  background: rgba(1, 8, 29, 0.08);
  color: rgba(1, 8, 29, 0.82);
}

.hero-metric-icon svg {
  width: 16px;
  height: 16px;
}

.hero-metric-body strong {
  display: block;
  font-family: var(--font-title);
  font-size: 15px;
  letter-spacing: -0.2px;
  color: rgba(12, 14, 18, 0.92);
  line-height: 1.2;
}

.hero-metric-body span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

.badge i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(176, 138, 60, 0.12);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  border-radius: 16px;
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.8);
  padding: 12px;
}

.metric strong {
  display: block;
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: -0.2px;
}

.metric span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 34px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: -0.35px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section-header-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.field {
  display: grid;
  gap: 7px;
  align-content: start;
}

.field label {
  font-size: 12px;
  color: var(--muted);
}

.control {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(12, 14, 18, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(12, 14, 18, 0.92);
  outline: none;
  font-size: 13px;
}

.control:focus {
  border-color: rgba(176, 138, 60, 0.55);
  box-shadow: 0 0 0 4px rgba(176, 138, 60, 0.14);
}

.search-actions {
  display: flex;
  gap: 10px;
  align-items: end;
}

.btn-sm {
  padding: 12px 14px;
  font-size: 13px;
}

.about {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
}

.about-media {
  position: relative;
  min-height: 320px;
  background: radial-gradient(900px 520px at 25% 10%, rgba(214, 182, 111, 0.2), transparent 55%),
    radial-gradient(900px 650px at 68% 60%, rgba(176, 138, 60, 0.16), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
}

.about-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(12, 14, 18, 0.86);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.about-body {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.about-body h2,
.about-body .about-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: -0.35px;
}

.about-page {
  padding-top: 24px;
  padding-bottom: 34px;
}

.about-page-top {
  margin-bottom: 12px;
}

.about-page-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3.6vw, 38px);
  letter-spacing: -0.6px;
}

.about-page .about {
  margin-top: 4px;
}

.about-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.about-grid {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-card {
  border-radius: 16px;
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(246, 245, 243, 0.7);
  padding: 12px;
  display: grid;
  gap: 6px;
}

.about-card strong {
  font-family: var(--font-title);
  letter-spacing: -0.2px;
}

.about-card span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.property-card {
  grid-column: span 4;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(12, 14, 18, 0.14);
}

.property-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}

.property-cover-link {
  display: block;
  height: 100%;
  color: inherit;
}

.property-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.03);
  transform: scale(1.02);
}

.property-card .property-cover img {
  cursor: pointer;
  transition: transform 200ms ease;
}

.property-card .property-cover-link:hover img {
  transform: scale(1.06);
}

.imovel-single-cover img,
.imovel-full-cover img,
.imovel-hero-cover img {
  cursor: zoom-in;
}

.property-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(12, 14, 18, 0.86);
  font-size: 12px;
}

.property-tag i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(26, 164, 122, 0.12);
}

.property-body {
  padding: 14px 14px 16px;
}

.property-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.property-title h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.price {
  font-weight: 800;
  color: rgba(176, 138, 60, 0.96);
  letter-spacing: -0.2px;
  font-size: 14px;
  white-space: nowrap;
}

.property-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(246, 245, 243, 0.7);
  color: var(--muted);
  font-size: 12px;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.card-actions .btn {
  flex: 1;
  padding: 11px 12px;
  font-size: 12.5px;
  box-shadow: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.property-title h3 a {
  color: inherit;
  transition: color 160ms ease;
}

.property-title h3 a:hover {
  color: rgba(176, 138, 60, 0.96);
}

.imovel-single {
  padding-top: 24px;
}

.imovel-single--full-largura,
.imovel-single--hero-topo {
  padding-top: 0;
  overflow-x: clip;
}

.imovel-single-stage--full,
.imovel-single-stage--hero {
  padding: 0;
}

.imovel-cover-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}

.imovel-cover-bleed .property-cover {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

.imovel-cover-bleed .property-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  display: block;
  margin: 0 auto;
}

.imovel-cover-bleed--full .imovel-full-cover {
  height: clamp(420px, 88vh, 920px);
}

.imovel-cover-bleed--hero .imovel-hero-cover {
  height: clamp(320px, 62vh, 720px);
}

.imovel-full-body,
.imovel-hero-body {
  padding-top: 24px;
  padding-bottom: 34px;
}

.imovel-full-summary {
  margin-bottom: 14px;
}

.imovel-hero-summary {
  margin-bottom: 14px;
}

.imovel-single-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.imovel-back {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 160ms ease;
}

.imovel-back:hover {
  color: rgba(12, 14, 18, 0.92);
}

.imovel-code {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.imovel-single-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: start;
}

.imovel-single-cover {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.imovel-single-summary {
  display: grid;
  gap: 14px;
  align-content: start;
}

.imovel-single-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.imovel-single-price {
  font-size: 22px;
  font-weight: 800;
}

.imovel-single-meta {
  margin-top: 0;
}

.imovel-single-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.imovel-single-actions {
  margin-top: 2px;
}

.imovel-single-contact {
  margin-top: 0;
}

.imovel-single-contact a {
  color: rgba(12, 14, 18, 0.78);
}

.imovel-single-contact a:hover {
  color: rgba(12, 14, 18, 0.92);
}

.imovel-single-content {
  margin-top: 14px;
}

.imovel-single-content h2 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: -0.35px;
}

.imovel-gallery h2 {
  margin: 0 0 12px;
}

.imovel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.imovel-gallery-item {
  grid-column: span 4;
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 1px solid rgba(12, 14, 18, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  cursor: zoom-in;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.imovel-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(12, 14, 18, 0.14);
}

.imovel-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.03);
  pointer-events: none;
}

.imovel-about--with-gallery {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 14, 18, 0.08);
}

.imovel-about--with-gallery h2 {
  margin-top: 0;
}

.entry-content {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content > :last-child {
  margin-bottom: 0;
}

.entry-content p {
  margin: 0 0 1em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin: 1.4em 0 0.6em;
  font-family: var(--font-title);
  color: rgba(12, 14, 18, 0.92);
  letter-spacing: -0.3px;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.entry-content li + li {
  margin-top: 0.35em;
}

.entry-content a {
  color: rgba(176, 138, 60, 0.96);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.imovel-related {
  padding-top: 10px;
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.panel h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 18px;
  letter-spacing: -0.3px;
}

.panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.li {
  display: flex;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(246, 245, 243, 0.7);
}

.li b {
  color: rgba(176, 138, 60, 0.96);
}

.li span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.testimonials-carousel {
  --gap: 14px;
  --perView: 3;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.testimonials-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(12, 14, 18, 0.14);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(12, 14, 18, 0.16);
  background: rgba(12, 14, 18, 0.1);
  cursor: pointer;
}

.dot[aria-current="true"] {
  background: rgba(176, 138, 60, 0.92);
  border-color: rgba(176, 138, 60, 0.28);
  box-shadow: 0 0 0 5px rgba(176, 138, 60, 0.12);
}

.testimonials-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.testimonials-track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transition: transform 520ms ease;
}

.testimonial {
  border-radius: 18px;
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  flex: 0 0 calc((100% - (var(--gap) * (var(--perView) - 1))) / var(--perView));
  min-width: 0;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 44px;
  color: rgba(176, 138, 60, 0.16);
  line-height: 1;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(12, 14, 18, 0.86);
  background: radial-gradient(120% 120% at 20% 20%, rgba(214, 182, 111, 0.75), rgba(176, 138, 60, 0.4));
  border: 1px solid rgba(12, 14, 18, 0.12);
}

.who {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.who strong {
  font-family: var(--font-title);
  letter-spacing: -0.25px;
}

.who span {
  color: var(--muted);
  font-size: 12.5px;
}

.testimonial .stars {
  margin-left: auto;
  white-space: nowrap;
}

.testimonial p {
  margin: 0;
  color: rgba(12, 14, 18, 0.86);
  font-size: 13.5px;
  line-height: 1.7;
}

.stars {
  letter-spacing: 1px;
  color: rgba(176, 138, 60, 0.9);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.blog-grid .post {
  grid-column: span 4;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-grid .post:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(12, 14, 18, 0.14);
}

.blog-grid .post-link {
  display: block;
  color: inherit;
  height: 100%;
}

.blog-grid .post .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: radial-gradient(800px 500px at 25% 20%, rgba(214, 182, 111, 0.18), transparent 55%),
    radial-gradient(800px 600px at 75% 60%, rgba(176, 138, 60, 0.14), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  position: relative;
}

.blog-grid .post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-grid .post .thumb:not(:has(img))::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?auto=compress&cs=tinysrgb&w=1600")
    center/cover no-repeat;
  opacity: 0.52;
}

.blog-grid .post .body {
  padding: 14px 14px 16px;
}

.blog-grid .post .body h3 {
  transition: color 160ms ease;
}

.blog-grid .post-link:hover .body h3 {
  color: rgba(176, 138, 60, 0.96);
}

.blog-grid .post small {
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}

.blog-grid .post h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: -0.3px;
}

.blog-grid .post p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.blog-list {
  display: grid;
  gap: 14px;
}

.blog-list .post--list {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-list .post--list:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(12, 14, 18, 0.14);
}

.blog-list .post-link--list {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  color: inherit;
  min-height: 100%;
}

.blog-list .post .thumb {
  min-height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  background: radial-gradient(800px 500px at 25% 20%, rgba(214, 182, 111, 0.18), transparent 55%),
    radial-gradient(800px 600px at 75% 60%, rgba(176, 138, 60, 0.14), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  position: relative;
}

.blog-list .post .thumb img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.blog-list .post .thumb:not(:has(img))::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?auto=compress&cs=tinysrgb&w=1600")
    center/cover no-repeat;
  opacity: 0.52;
}

.blog-list .post .body {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px 20px;
}

.blog-list .post-list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.blog-list .post-list-meta small {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(176, 138, 60, 0.12);
  border: 1px solid rgba(176, 138, 60, 0.22);
  color: rgba(12, 14, 18, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-list .post-list-meta time {
  color: var(--muted);
  font-size: 12px;
}

.blog-list .post h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.35px;
  transition: color 160ms ease;
}

.blog-list .post-link--list:hover h3 {
  color: rgba(176, 138, 60, 0.96);
}

.blog-list .post p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.blog-list .post-list-more {
  color: rgba(176, 138, 60, 0.96);
  font-size: 13px;
  font-weight: 600;
}

.blog-page {
  padding-top: 24px;
}

.imoveis-page {
  padding-top: 24px;
  padding-bottom: 56px;
}

.imoveis-page-top {
  margin-bottom: 12px;
}

.imoveis-page-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3.6vw, 38px);
  letter-spacing: -0.6px;
}

.imoveis-pagination {
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
}

.blog-page-top {
  margin-bottom: 12px;
}

.blog-page-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3.6vw, 38px);
  letter-spacing: -0.6px;
}

.blog-pagination {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 14, 18, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(12, 14, 18, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.blog-pagination .page-numbers.current {
  background: rgba(176, 138, 60, 0.14);
  border-color: rgba(176, 138, 60, 0.28);
  color: rgba(12, 14, 18, 0.92);
}

.blog-single {
  padding-top: 24px;
}

.blog-single--editorial {
  padding-top: 0;
}

.blog-single-hero {
  padding-top: 18px;
}

.blog-single-hero-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(12, 14, 18, 0.1);
  box-shadow: var(--shadow);
  max-height: min(52vh, 520px);
}

.blog-single-hero-cover img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: min(52vh, 520px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.blog-single--editorial .blog-page-top {
  margin-top: 18px;
}

.blog-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 14px;
  align-items: start;
  padding-bottom: 34px;
}

.blog-single-layout > .blog-single-main,
.blog-single-layout > .blog-single-sidebar {
  grid-column: auto;
  min-width: 0;
}

.blog-single-main {
  display: grid;
  gap: 16px;
}

.blog-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(176, 138, 60, 0.12);
  border: 1px solid rgba(176, 138, 60, 0.24);
  color: rgba(12, 14, 18, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-single-header {
  display: grid;
  gap: 10px;
}

.blog-single-lead {
  margin: 0;
  padding: 12px 0 12px 14px;
  border-left: 3px solid rgba(176, 138, 60, 0.72);
  color: rgba(12, 14, 18, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.blog-entry-content {
  padding-top: 4px;
}

.blog-single-sidebar {
  position: sticky;
  top: 88px;
}

.blog-sidebar {
  display: grid;
  gap: 12px;
}

.blog-sidebar-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: -0.3px;
}

.blog-sidebar-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sidebar-imovel-list {
  display: grid;
  gap: 10px;
}

.sidebar-imovel-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(246, 245, 243, 0.72);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sidebar-imovel-item:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 138, 60, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.sidebar-imovel-thumb {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}

.sidebar-imovel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sidebar-imovel-info {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.sidebar-imovel-title {
  font-family: var(--font-title);
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: rgba(12, 14, 18, 0.92);
}

.sidebar-imovel-price {
  font-size: 12px;
  font-weight: 800;
  color: rgba(176, 138, 60, 0.96);
}

.sidebar-imovel-location {
  font-size: 11px;
  color: var(--muted);
}

.blog-sidebar-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.blog-sidebar-actions {
  display: grid;
  gap: 8px;
}

.blog-sidebar-actions .btn {
  width: 100%;
}

.blog-single-content {
  display: grid;
  gap: 16px;
}

.blog-single-header small {
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}

.blog-single-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.blog-single-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 14px;
}

.contact-page {
  padding-top: 24px;
}

.contact-page-top {
  margin-bottom: 12px;
}

.contact-page-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3.6vw, 38px);
  letter-spacing: -0.6px;
}

.contact-notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.contact-notice--success {
  background: rgba(26, 164, 122, 0.12);
  border: 1px solid rgba(26, 164, 122, 0.28);
  color: rgba(12, 14, 18, 0.88);
}

.contact-notice--error {
  background: rgba(176, 60, 60, 0.1);
  border: 1px solid rgba(176, 60, 60, 0.24);
  color: rgba(12, 14, 18, 0.88);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

form {
  display: grid;
  gap: 10px;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

textarea.control {
  min-height: 120px;
  resize: vertical;
}

.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  color: rgba(12, 14, 18, 0.9);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(12, 14, 18, 0.14);
  background: rgba(246, 245, 243, 0.7);
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "–";
  background: rgba(176, 138, 60, 0.12);
  border-color: rgba(176, 138, 60, 0.22);
}

.faq-body {
  padding: 0 16px 14px;
  color: var(--muted);
}

.faq-body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
}

.footer {
  margin-top: 12px;
  padding: 48px 0 28px;
  border-top: 1px solid rgba(182, 149, 126, 0.22);
  background:
    radial-gradient(680px 280px at 8% 0%, rgba(182, 149, 126, 0.1), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 245, 243, 0.96));
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
}

.footer-brand-link {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-logo {
  display: block;
  width: min(168px, 46vw);
  height: 52px;
  background-color: var(--footer-brand);
  mask-image: var(--footer-logo-url);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: left center;
  -webkit-mask-image: var(--footer-logo-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: left center;
  transition: opacity 160ms ease;
}

.footer-brand-link:hover .footer-logo {
  opacity: 0.82;
}

.footer-tagline {
  margin: 0 0 12px;
  max-width: 34ch;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

.footer-creci {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(182, 149, 126, 0.28);
  background: rgba(182, 149, 126, 0.1);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(12, 14, 18, 0.78);
}

.footer-creci-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--footer-brand);
}

.footer-col {
  min-width: 0;
}

.footer-title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: rgba(12, 14, 18, 0.9);
}

.footer a {
  color: rgba(12, 14, 18, 0.78);
  transition: color 160ms ease;
}

.footer a:hover {
  color: rgba(12, 14, 18, 0.92);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.4;
}

.footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(182, 149, 126, 0.55);
  flex-shrink: 0;
  transition: transform 160ms ease, background 160ms ease;
}

.footer-links a:hover::before {
  transform: scale(1.15);
  background: var(--footer-brand);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 160ms ease;
}

.footer-contact-link:hover {
  background: rgba(182, 149, 126, 0.1);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  flex-shrink: 0;
  background: rgba(182, 149, 126, 0.14);
  color: var(--footer-brand);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-icon--whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #1aa47a;
}

.footer-contact-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.footer-contact-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(12, 14, 18, 0.48);
}

.footer-contact-value {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(12, 14, 18, 0.86);
  word-break: break-word;
}

.footer-contact-link:hover .footer-contact-value {
  color: rgba(12, 14, 18, 0.94);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 14, 18, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(12, 14, 18, 0.54);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  right: auto;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.96), rgba(25, 168, 77, 0.94));
  color: #fff;
  font-weight: 500;
  border: 1px solid rgba(12, 14, 18, 0.12);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, filter 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.wa-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.wa-ico svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #fff;
}

.whatsapp-float .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.78;
  padding-right: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.modal.open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.48);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(980px, calc(100% - 32px));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.modal-figure {
  margin: 0;
  display: grid;
}

.modal-img {
  width: 100%;
  height: min(70vh, 620px);
  object-fit: cover;
  display: block;
}

.modal-caption {
  padding: 12px 14px 14px;
  color: rgba(12, 14, 18, 0.74);
  font-size: 13px;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(12, 14, 18, 0.14);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .testimonials-track {
    transition: none;
  }
}

@media (max-width: 980px) {
  nav {
    display: none;
  }
  .header-contact-email {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-contact {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .imovel-single-grid {
    grid-template-columns: 1fr;
  }
  .imovel-cover-bleed--full .imovel-full-cover {
    height: clamp(280px, 56vh, 520px);
  }
  .imovel-cover-bleed--hero .imovel-hero-cover {
    height: clamp(240px, 48vh, 460px);
  }
  .imovel-gallery-item {
    grid-column: span 6;
  }
  .property-card {
    grid-column: span 6;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-media {
    min-height: 360px;
  }
  .testimonials-carousel {
    --perView: 2;
  }
  .blog-grid .post {
    grid-column: span 6;
  }
  .blog-list .post-link--list {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .blog-single-layout {
    grid-template-columns: 1fr;
  }
  .blog-single-sidebar {
    position: static;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 12px 0;
  }
  .brand {
    min-width: auto;
  }
  .header-contact {
    display: none;
  }
  .actions .btn-ghost {
    display: none;
  }
  .hero-shell {
    padding: 28px 20px;
  }

  .hero h1 {
    max-width: none;
  }
  .property-card {
    grid-column: span 12;
  }
  .testimonials-carousel {
    --perView: 1;
  }
  .blog-grid .post {
    grid-column: span 12;
  }
  .row2 {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    padding: 8px;
  }
  .whatsapp-float .label {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .imovel-gallery-item {
    grid-column: span 12;
  }
}
