:root {
  --navy: #011E38;
  --navy-light: #0B2C52;
  --gold: #D1A453;
  --gold-soft: #AF7F37;
  --white: #FFFFFF;
  --gray-bg: #F5F5F5;
  --text-dark: #171717;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
}

a {
  text-decoration: none;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}

/* ============ HEADER (transparente -> sólido, com drawer) ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 26px 0;
  transition: background 0.4s ease, padding 0.4s ease;
}

header.transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

header.solid {
  background: rgba(1, 30, 56, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 18px 0;
}

.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.hamburger {
  justify-self: start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

.site-logo {
  justify-self: center;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.site-logo strong {
  color: var(--gold);
  font-weight: 600;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-link {
  color: var(--gold);
  display: flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.icon-link:hover {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.btn-thin {
  display: inline-block;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-thin:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

/* Side drawer nav */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  max-width: 84vw;
  background: var(--navy);
  z-index: 310;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  padding: 46px 40px;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  margin-bottom: 50px;
}

.drawer nav ul {
  list-style: none;
}

.drawer nav a {
  display: block;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.drawer nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.drawer-footer {
  margin-top: auto;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}

.drawer-footer p {
  margin-bottom: 6px;
}

.drawer-footer a {
  color: var(--gold);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}

/* A casa fica mais pra direita no vídeo 1 — corta mantendo ela visível.
   No vídeo 2, centralizado mostra mais da casa. */
#heroVideoA { object-position: right center; }
#heroVideoB { object-position: center center; }

.hero-video.is-active {
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(1,30,56,0.88) 0%, rgba(1,30,56,0.62) 38%, rgba(1,30,56,0.32) 62%, rgba(1,30,56,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero > .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Botões maiores usados no corpo (fora do header) */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============ SECTIONS ============ */
section {
  padding: 100px 0;
}

.section-light { background: var(--white); }
.section-gray { background: var(--gray-bg); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.section-navy h2 { color: var(--white); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow { color: var(--gold-soft); }
.section-navy .section-head .eyebrow { color: var(--gold); }

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.15rem;
  color: #555;
}

.section-navy .section-head p {
  color: rgba(255,255,255,0.7);
}

/* ============ SOBRE ============ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-text p {
  margin-bottom: 18px;
  color: #444;
  font-size: 0.98rem;
}

.sobre-facts {
  background: var(--navy);
  padding: 40px;
  border-radius: 2px;
  border: 1px solid rgba(212,175,55,0.35);
}

.sobre-photo-wrap {
  text-align: center;
  padding-bottom: 26px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.sobre-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
}

.sobre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.sobre-photo-name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.sobre-photo-role {
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.sobre-facts ul {
  list-style: none;
}

.sobre-facts li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.sobre-facts li:last-child { border-bottom: none; }

.sobre-facts li span:first-child {
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* ============ PARA QUEM ============ */
.persona-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
}

.persona-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
}

.persona-check {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 1.3rem;
}

.persona-item p {
  font-size: 1.15rem;
  color: #444;
}

/* ============ SERVIÇOS ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  padding: 40px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(1,30,56,0.08);
}

.card-number {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 18px;
  display: block;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.65;
}

/* ============ DIFERENCIAIS ============ */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.dif-item {
  display: flex;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 2px;
}

.dif-icon {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  min-width: 34px;
}

.dif-item h3 {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.dif-item p {
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem;
}

/* ============ CTA FINAL ============ */
.cta-final {
  background: var(--white);
  text-align: center;
  padding: 100px 24px;
}

.cta-final h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 18px;
}

.cta-final p {
  color: #555;
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 0.98rem;
}

/* ============ PÁGINA INTERNA (imoveis.html) ============ */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 190px 24px 70px;
  text-align: center;
}

.page-hero .eyebrow { color: var(--gold); }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.98rem;
}

.exemplo-banner {
  background: #FBF3DD;
  border-bottom: 1px solid var(--gold-soft);
  color: #6b5a1e;
  text-align: center;
  font-size: 0.85rem;
  padding: 12px 24px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  border: 1px solid #ddd;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============ GRID DE IMÓVEIS ============ */
.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.imovel-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.imovel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(1,30,56,0.1);
}

.imovel-photo {
  position: relative;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.imovel-photo.tone-1 { background: linear-gradient(135deg, #0B2C52, #011E38); }
.imovel-photo.tone-2 { background: linear-gradient(135deg, #1c3a5e, #0B2C52); }
.imovel-photo.tone-3 { background: linear-gradient(135deg, #011E38, #1c3a5e); }

.imovel-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imovel-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.imovel-exemplo-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.9);
  color: #6b5a1e;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.imovel-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.imovel-body h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.imovel-local {
  color: #888;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.imovel-desc {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 8px;
}

.imovel-desc.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.imovel-desc-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.imovel-desc-toggle.is-visible {
  display: inline-block;
}

.imovel-desc-toggle:hover {
  color: var(--navy);
}

.imovel-caract {
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.imovel-price span.imovel-finance {
  display: block;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.imovel-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.imovel-specs span {
  font-size: 0.8rem;
  color: #555;
}

.imovel-specs strong {
  color: var(--navy);
}

.imovel-price {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.15rem;
  margin-top: auto;
  margin-bottom: 18px;
}

.imovel-price span.imovel-consulte {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
}

.imovel-seta {
  color: var(--gold-soft);
  flex-shrink: 0;
}

.imovel-price span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.imovel-cta {
  display: block;
  text-align: center;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 11px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.imovel-cta:hover {
  background: var(--navy-light);
  color: var(--white);
}

.imoveis-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ============ FOOTER (3 colunas) ============ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 26px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.footer-brand-name strong {
  color: var(--gold);
  font-weight: 600;
}

.footer-col p {
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.footer-social a {
  color: var(--white);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ============ GALERIA DE FOTOS (LIGHTBOX) ============ */
.imovel-photo.has-gallery {
  cursor: zoom-in;
}

.imovel-photo.has-gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1,30,56,0.35) 0%, transparent 35%);
  pointer-events: none;
}

.imovel-photo-count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(1,30,56,0.75);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 11px;
  border-radius: 2px;
  z-index: 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(1,10,20,0.94);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-arrow:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: var(--gold);
  color: var(--navy);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 150;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 860px) {
  .sobre-grid,
  .cards-grid,
  .dif-grid,
  .persona-list,
  .imoveis-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }

  header { padding: 18px 0; }
  header.solid { padding: 14px 0; }
  .nav-bar { grid-template-columns: auto 1fr auto; gap: 10px; }
  .site-logo {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .header-cta { gap: 12px; }
  .header-cta .btn-thin { display: none; }

  .hero { padding: 100px 0 60px; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; }

  .section-head p,
  .persona-item p { font-size: 1rem; }

  .sobre-facts { padding: 28px; }

  .imovel-photo { height: 180px; }
  .imoveis-grid,
  .cards-grid,
  .dif-grid { gap: 20px; }

  .filter-bar { gap: 8px; }
  .filter-btn { padding: 9px 16px; font-size: 0.72rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}
