/* ============================================================
   HOME — MARCELO MOREIRA CORRETOR
   Aesthetic: Luxury Editorial — Dark Ink + Warm Gold Accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&family=Lato:ital,wght@0,300;0,400;0,700;1,300&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink:       #0d0d0d;
  --ink-soft:  #1a1a1a;
  --paper:     #f5f1eb;
  --paper-alt: #ede9e0;
  --gold:      #c9a84c;
  --gold-lt:   #e8c96a;
  --gold-dk:   #9b7a2e;
  --slate:     #2a2a2a;
  --mist:      #5a5550;
  --white:     #ffffff;
  --blue-acc:  #1a3a5c;
  --whatsapp:  #25D366;
  --ff-display: 'Gill Sans';
  --ff-body:    'Lato', system-ui, sans-serif;
  --ff-mono:    'IBM Plex Mono', monospace;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --fs-body:   1.05rem;
  --fw-body:   400;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-principal {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--header-h-desktop));
  min-height: calc(680px - var(--header-h-desktop));
  max-height: calc(920px - var(--header-h-desktop));
  overflow: hidden;
  background: var(--ink);
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(1.05) contrast(1.1) saturate(1);
  z-index: 1;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.03) 0%, rgba(13,13,13,0.06) 40%, rgba(13,13,13,0.12) 75%, rgba(13,13,13,0.18) 100%),
    linear-gradient(to right, rgba(13,13,13,0.10) 0%, rgba(13,13,13,0.04) 60%, rgba(13,13,13,0.02) 100%);
  z-index: 2;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 25%, var(--gold-lt) 60%, transparent 100%);
  z-index: 4;
  opacity: 0;
  animation: fadeBar 1.2s 0.4s ease forwards;
}

@keyframes fadeBar { to { opacity: 1; } }

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw 6vh 8vw;
  max-width: 900px;
  overflow: visible;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5d76e;
  margin-bottom: 20px;
  opacity: 1;
  animation: slideUp 0.7s 0.5s var(--ease-smooth) forwards;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: none;
  margin-bottom: 28px;
  opacity: 0;
  animation: slideUp 0.8s 0.7s var(--ease-smooth) forwards;
}

.hero-content h1 em { font-style: italic; color: var(--gold-lt); }

.hero-content > p{
  font-family: var(--ff-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 420;
  color: #ffffff;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  animation: slideUp 0.8s 0.9s var(--ease-smooth) forwards;
  background: rgba(13,13,13,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 14px 20px;
  border-radius: 2px;
  border-left: 2px solid rgba(201,168,76,0.55);
  display: inline-block;
  text-shadow: 0 1px 3px rgba(0,0,0,0.90), 0 2px 12px rgba(0,0,0,0.75), 0 4px 24px rgba(0,0,0,0.50);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FILTRO HERO
   ============================================================ */
.filtros-hero {
  width: 100%;
  max-width: 760px;
  opacity: 0;
  animation: slideUp 0.8s 1.1s var(--ease-smooth) forwards;
}

/* Card com fundo mais sólido para melhor legibilidade */
.filtro-card {
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 6px;
  padding: 28px 28px 22px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.65),
    0 4px 16px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Título do card: branco puro, bem visível */
.filtro-card-titulo {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

/* Ícone do título com borda dourada mais evidente */
.filtro-card-ico {
  width: 30px;
  height: 30px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.filtros-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Label: ouro mais brilhante e opacidade total */
.field-label {
  font-family: var(--ff-mono);
  font-size: 0.70rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  opacity: 1;
}

.field-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Ícone interno do select: branco bem visível */
.field-ico {
  position: absolute;
  left: 12px;
  color: rgba(255,255,255,0.70);
  font-size: 0.8rem;
  pointer-events: none;
  z-index: 1;
}

.chevron {
  position: absolute;
  right: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  pointer-events: none;
}

/* Select: fundo mais sólido, texto branco nítido */
.field-select-wrap select {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 400;
  padding: 11px 32px 11px 34px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field-select-wrap select:hover {
  border-color: rgba(201,168,76,0.65);
  background: rgba(255,255,255,0.14);
}

.field-select-wrap select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.18);
}

/* Opções do select: fundo escuro, texto branco */
.field-select-wrap select option {
  background: #1a1a1a;
  color: var(--white);
  font-weight: 400;
}

/* Placeholder (opção desabilitada) levemente mais escuro mas ainda legível */
.field-select-wrap select:invalid,
.field-select-wrap select option[value=""] {
  color: rgba(255,255,255,0.65);
}

/* Divisor mais visível */
.filtro-divider {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,0.20);
  margin: 4px 0 16px;
}

.filtro-rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Hint: branco suave mas legível */
.filtro-hint {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  display: flex;
  align-items: center;
  gap: 7px;
}

.filtro-hint i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* Botão buscar: mantido, só reforçado */
.btn-filtrar-hero {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 4px;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn-filtrar-hero:hover {
  background: var(--gold-lt);
  transform: translateX(3px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.50);
}

/* ============================================================
   IMÓVEIS EM DESTAQUE
   ============================================================ */
.imoveis-alta {
  padding: 100px 8vw 100px;
  background: var(--paper);
  position: relative;
}

.imoveis-alta::before {
  position: absolute;
  top: 40px;
  right: 8vw;
  font-family: var(--ff-display);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(13,13,13,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.imoveis-alta .container-fluid { max-width: 1500px; margin: 0 auto; }

.imoveis-alta-titulo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 56px;
}

.imoveis-alta-titulo .badge-pill {
  font-family: var(--ff-mono);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.imoveis-alta-titulo .badge-pill::before { content: ''; width: 24px; height: 1px; background: var(--gold-dk); }

.imoveis-alta-titulo h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.imoveis-alta-titulo p {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--mist);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.properties-carousel { position: relative; margin: 0; overflow: visible; background: transparent; }
.properties-viewport { overflow: hidden; border-radius: 2px; }

.properties-track {
  display: flex;
  gap: 20px;
  transition: transform 0.65s var(--ease-smooth);
  will-change: transform;
}

.properties-track.no-transition { transition: none !important; }

/* ---- CARD ---- */
.property-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 260px;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(13,13,13,0.1);
  box-shadow: 0 2px 8px rgba(13,13,13,0.06);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,13,13,0.14);
}

.property-card__image {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

.property-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.85);
}

.property-card:hover .property-card__image img { filter: saturate(1); }

.property-card__labels {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 1;
}

.property-card__badge {
  background: var(--ink);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 1px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-card__badge.secondary { background: var(--gold); color: var(--ink); }

.property-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.property-card__body h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}

.property-card__location {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--mist);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.property-card__location i { color: var(--gold-dk); font-size: 0.85rem; }

.property-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.88rem;
  color: var(--slate);
  font-weight: 400;
  padding-top: 14px;
  border-top: 1px solid rgba(13,13,13,0.08);
}

.property-card__features span { display: flex; align-items: center; gap: 5px; }
.property-card__features i { color: var(--gold-dk); font-size: 0.82rem; }

.property-card__footer { margin-top: auto; display: flex; align-items: center; gap: 14px; }

.btn-carousel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 1px;
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-carousel-link:hover { background: var(--ink); color: var(--white); }

.carousel-arrow {
  position: absolute;
  top: -76px;
  right: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(13,13,13,0.25);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.carousel-arrow.prev { right: 56px; left: auto; }
.carousel-arrow.next { right: 0; }
.carousel-arrow:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   SERVIÇOS / AGENDAMENTO
   ============================================================ */
.services {
  padding: 100px 8vw;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.services h3 {
  font-family: var(--ff-mono);
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
  text-align: left;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.services h3::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.services h3::after { display: none; }
.services-subtitle { display: none; }

.services-main-container { max-width: 100%; margin: 0; position: relative; z-index: 1; }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 64px; }

.service-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 50px;
  text-align: left;
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-content::before { display: none; }

.service-content:hover {
  transform: none;
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.06);
}

.service-content h4 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0;
}

.service-content h4 em { color: var(--gold-lt); font-style: italic; }

.service-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.85;
  margin-bottom: 0;
  font-weight: 400;
  max-width: 540px;
  text-align: left;
}

.service-content.venda {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  padding: 70px;
  max-width: 100%;
  color: var(--white);
}

.service-content.venda::before {
  display: block;
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.venda-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.venda-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.venda-right {
  display: flex;
  flex-direction: column;
}

.service-content.venda .service-badge {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.service-content.venda .service-badge::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

.service-content.venda h4 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  display: block;
}

.service-content.venda p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.9;
  font-weight: 400;
  max-width: 100%;
  text-align: left;
  margin-bottom: 0;
}

.service-content.venda .service-icon-large { display: none; }

.service-content.venda .service-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border: none;
  margin-bottom: 0;
}

.service-content.venda .service-feature-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.service-content.venda .service-feature-item:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.35);
}

.service-content.venda .service-feature-item i {
  font-size: 1.35rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-content.venda .service-feature-item span {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-align: left;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.btn-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.btn, .service-content.venda .btn {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 44px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 1px;
  font-family: var(--ff-mono);
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn:hover, .service-content.venda .btn:hover {
  background: var(--gold-lt);
  color: var(--ink);
  transform: translateX(4px);
}

.btn::before, .service-content.venda .btn::before { display: none; }

/* ============================================================
   SOBRE O CORRETOR
   ============================================================ */
.sobre-corretor {
  padding: 100px 8vw;
  background: var(--paper-alt);
  position: relative;
  overflow: hidden;
}

.sobre-corretor::before {
  position: absolute;
  top: 30px;
  left: 8vw;
  font-family: var(--ff-display);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(13,13,13,0.04);
  line-height: 1;
  pointer-events: none;
}

.sobre-corretor h2 {
  font-family: var(--ff-mono);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  text-align: left;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.sobre-corretor h2::before { content: ''; width: 24px; height: 1px; background: var(--gold-dk); }
.sobre-corretor h2::after { display: none; }
.sobre-corretor .container { max-width: 100%; }

.corretor-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  background: transparent;
  border: 1px solid rgba(13,13,13,0.12);
  border-radius: 2px;
  padding: 0;
  box-shadow: 0 4px 30px rgba(13,13,13,0.08);
  overflow: hidden;
}

.corretor-card::before { display: none; }
.corretor-card:hover { box-shadow: 0 8px 50px rgba(13,13,13,0.12); }

.corretor-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.5s ease;
}

.corretor-card:hover img { filter: saturate(1) contrast(1.05); }

.corretor-info-content {
  padding: 60px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.corretor-info-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
}

.corretor-info-content h3 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  -webkit-text-fill-color: var(--ink);
}

.corretor-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }

.badge-role, .badge-creci {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 1px;
  font-weight: 500;
}

.badge-role { background: var(--ink); color: var(--white); border: 1px solid var(--ink); }
.badge-role:hover { background: var(--slate); border-color: var(--slate); }
.badge-creci { background: transparent; color: var(--gold-dk); border: 1px solid var(--gold-dk); }
.badge-creci:hover { background: rgba(201,168,76,0.1); }

.corretor-description {
  font-size: 1.02rem;
  color: var(--slate);
  line-height: 2;
  padding-top: 28px;
  border-top: 1px solid rgba(13,13,13,0.1);
  text-align: left;
  font-weight: 400;
}

.corretor-description strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
@keyframes pulseWhatsApp {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0    rgba(37,211,102,0.6); }
  50%  { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0);   }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0    rgba(37,211,102,0);   }
}

.whatsapp-floating-wrapper {
  position: fixed !important;
  bottom: 36px !important;
  right: 36px !important;
  left: auto !important;
  top: auto !important;
  z-index: 99999;
  transform: translateZ(0);
  will-change: auto;
}

.whatsapp-floating-btn {
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-smooth), background 0.2s ease;
  animation: pulseWhatsApp 2.5s infinite;
}

.whatsapp-floating-btn:hover {
  background: #1eab55;
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}

.whatsapp-floating-btn:active { transform: scale(0.96); }

.whatsapp-floating-btn svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1200px) {
  .property-card { flex: 0 0 calc(33.333% - 14px); }
  .venda-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-content.venda { padding: 50px; }
  .corretor-card { grid-template-columns: 300px 1fr; }
}

@media (max-width: 1024px) {
  .corretor-card { grid-template-columns: 1fr; }
  .corretor-card img { min-height: 320px; max-height: 380px; object-position: center top; }
  .corretor-info-content { padding: 48px 40px; }
  .corretor-info-content::before { display: none; }
}

@media (max-width: 900px) {
  .hero-content { padding: 0 6vw 7vh 6vw; max-width: 100%; }

  /* Filtro: 2 colunas em tablet */
  .filtros-fields { grid-template-columns: 1fr 1fr; }
  .filtro-rodape { flex-direction: column; align-items: stretch; }
  .btn-filtrar-hero { justify-content: center; }
  .filtro-hint { justify-content: center; }
}

@media (max-width: 768px) {
  .hero-principal { height: auto; min-height: 600px; max-height: none; }
  .hero-image-wrapper { position: absolute; inset: 0; height: 100%; }
  .hero-image-wrapper::before {
    background: linear-gradient(to bottom, rgba(13,13,13,0.20) 0%, rgba(13,13,13,0.45) 40%, rgba(13,13,13,0.75) 75%, rgba(13,13,13,0.88) 100%);
  }
  .hero-content {
  position: relative;
  z-index: 5;
  min-height: 600px;
  padding: 80px 5vw 50px 5vw; 
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-content h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); text-align: center; }
  .filtros-hero { max-width: 100%; }
  .filtro-card-titulo { font-size: 1rem; }

  .imoveis-alta { padding: 70px 5vw; }
  .imoveis-alta::before { display: none; }
  .imoveis-alta-titulo { align-items: center; text-align: center; }
  .imoveis-alta-titulo .badge-pill { justify-content: center; }
  .imoveis-alta-titulo .badge-pill::before { display: none; }
  .imoveis-alta-titulo h2, .imoveis-alta-titulo p { text-align: center; }
  .property-card { flex: 0 0 100%; min-width: 100%; }
  .property-card__body { align-items: center; text-align: center; }
  .property-card__body h3 { text-align: center; }
  .property-card__location { justify-content: center; }
  .property-card__features { justify-content: center; }
  .carousel-arrow { top: auto; bottom: -60px; }
  .carousel-arrow.prev { right: 56px; left: auto; }
  .carousel-arrow.next { right: 0; }

  .services { padding: 70px 5vw; }
  .services::after { display: none; }
  .services h3 { display: flex; width: 100%; justify-content: center; text-align: center; }
  .services h3::before { display: none; }
  .service-content.venda { padding: 40px 24px; }
  .venda-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .venda-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .venda-right { align-items: center; }
  .service-content.venda .service-badge { justify-content: center; }
  .service-content.venda .service-badge::before { display: none; }
  .service-content.venda h4 { text-align: center; }
  .service-content.venda p { text-align: center; }
  .btn-container { justify-content: center; margin-top: 40px; }
  .service-content.venda .service-feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 18px 20px;
  }
  .service-content.venda .service-feature-item i { margin-top: 0; }
  .service-content.venda .service-feature-item span { text-align: center; }

  .sobre-corretor { padding: 70px 5vw; }
  .sobre-corretor::before { display: none; }
  .sobre-corretor h2 { display: flex; width: 100%; justify-content: center; text-align: center; margin-bottom: 48px; }
  .sobre-corretor h2::before { display: none; }
  .corretor-card { grid-template-columns: 1fr; }
  .corretor-card img { min-height: 380px; max-height: 460px; object-position: center 5%; }
  .corretor-info-content { padding: 40px 28px; align-items: center; text-align: center; }
  .corretor-info-content::before { display: none; }
  .corretor-info-content h3 { text-align: center; }
  .corretor-badges { justify-content: center; }
  .corretor-description { text-align: center; }

  .whatsapp-floating-wrapper { bottom: 16px !important; right: 16px !important; }
  .whatsapp-floating-btn { width: 56px; height: 56px; }
  .whatsapp-floating-btn svg { width: 26px; height: 26px; }
}

@media (max-width: 560px) {
  /* Filtro: 1 coluna em mobile */
  .filtros-fields { grid-template-columns: 1fr; }
  .filtro-card { padding: 20px 16px 18px; }
  .filtro-card-titulo { font-size: 0.95rem; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(1.9rem, 10vw, 2.8rem); }
  .imoveis-alta-titulo h2 { font-size: 2.1rem; }
  .service-content.venda { padding: 30px 16px; }
  .service-content.venda h4 { font-size: 1.9rem; }
  .service-content.venda .service-features { gap: 12px; }
  .service-content.venda p { font-size: 1rem; }
  .corretor-info-content h3 { font-size: 1.9rem; }
  .corretor-description { font-size: 1rem; }

  .whatsapp-floating-btn { width: 50px; height: 50px; }
  .whatsapp-floating-btn svg { width: 24px; height: 24px; }
}

@media (max-width: 360px) {
  .hero-content h1 { font-size: 1.7rem; }
  .service-content.venda h4 { font-size: 1.6rem; }
}