/* Site público LexImob — vitrine premium (tokens do projeto: --color-primary, --color-secondary, etc.) */
*, *::before, *::after { box-sizing: border-box; }

html.lx-site {
  scroll-behavior: smooth;
}

.lx-site {
  margin: 0;
  font-family: var(--font-ui, "Outfit", "DM Sans", system-ui, sans-serif);
  color: var(--color-text, #0c1222);
  background: var(--color-bg, #f4f1ec);
  line-height: 1.58;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

/* Superfície “luxo editorial”: quente, profundo, sem poluir */
.lx-site--premium {
  background:
    radial-gradient(1400px 700px at 100% 0%, color-mix(in srgb, var(--color-primary, #702020) 8%, transparent) 0%, transparent 50%),
    radial-gradient(1000px 500px at 0% 40%, color-mix(in srgb, var(--color-secondary, #a8a8a8) 12%, transparent) 0%, transparent 45%),
    linear-gradient(180deg, #faf8f5 0%, #f0ebe4 100%);
}
/* Espaço para o banner fixo de cookies (classe definida em site-leximob-lgpd.js) */
body.lx-site.lx-lgpd-open {
  padding-bottom: max(5.5rem, env(safe-area-inset-bottom, 0px));
}

.lx-site .lx-text-link {
  color: var(--color-primary, #702020);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--color-primary, #702020) 35%, transparent);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lx-site .lx-text-link:hover {
  border-bottom-color: var(--color-primary, #702020);
}

.brand-wordmark {
  font-family: var(--font-brand, "Cormorant Garamond", Georgia, serif);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ----- Nav ----- */
.lx-nav--shell {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 75%, #fff);
  background: color-mix(in srgb, #fffcf9 88%, rgba(255, 255, 255, 0.96));
  backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset, 0 6px 32px rgba(12, 18, 34, 0.07);
}

.lx-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1rem 0;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 1.5rem);
  padding-right: clamp(1rem, 3vw, 1.5rem);
}

.lx-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.lx-nav__brand:hover { text-decoration: none; opacity: 0.95; }

.lx-nav__logo-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #fff 0%, #f4f0ea 100%);
  border: 1px solid color-mix(in srgb, var(--color-primary, #702020) 10%, #e5ded6);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset, 0 4px 12px rgba(12, 18, 34, 0.07);
  flex-shrink: 0;
}
.lx-nav__logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.lx-nav__titles { min-width: 0; }
.lx-nav__name {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0c1222;
  letter-spacing: 0.01em;
}
.lx-nav__tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 0.12rem;
  letter-spacing: 0.02em;
}

.lx-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.1rem;
}

.lx-nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: #4a5565;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.03em;
}
.lx-nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary, #702020);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}
.lx-nav__link:hover {
  color: var(--color-primary, #702020);
}
.lx-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Botões */
.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.6rem 1.2rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}
.lx-btn--sm { padding: 0.48rem 0.9rem; font-size: 0.82rem; border-radius: 10px; letter-spacing: 0.04em; }
.lx-btn--primary {
  background: linear-gradient(165deg, color-mix(in srgb, var(--color-primary, #702020) 92%, #c4a1a1) 0%, var(--color-primary, #702020) 55%, color-mix(in srgb, var(--color-primary, #702020) 70%, #000) 100%);
  color: #fffcfc;
  border-color: color-mix(in srgb, var(--color-primary, #702020) 80%, #2a0a0c);
  box-shadow: 0 1px 0 color-mix(in srgb, #fff 20%, transparent) inset, 0 2px 0 color-mix(in srgb, var(--color-primary, #702020) 55%, #000), 0 10px 24px rgba(64, 18, 20, 0.28);
}
.lx-btn--primary:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 color-mix(in srgb, #fff 18%, transparent) inset, 0 2px 0 color-mix(in srgb, var(--color-primary, #702020) 50%, #000), 0 14px 32px rgba(64, 18, 20, 0.32);
  text-decoration: none;
  color: #fffcfc;
}
.lx-btn--primary:active { transform: translateY(0); }

.lx-btn--ghost {
  background: color-mix(in srgb, #fff 92%, var(--color-primary, #702020) 1%);
  color: var(--color-primary, #702020);
  border-color: color-mix(in srgb, var(--color-primary, #702020) 28%, #d4cfc8);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 2px 6px rgba(12, 18, 34, 0.05);
}
.lx-btn--ghost:hover {
  background: #fff;
  text-decoration: none;
  color: var(--color-primary, #702020);
  box-shadow: 0 1px 0 #fff inset, 0 4px 12px rgba(12, 18, 34, 0.08);
}

.lx-btn--on-dark {
  background: #fff;
  color: var(--color-primary, #702020);
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.lx-btn--on-dark:hover {
  background: #f8fafc;
  text-decoration: none;
  color: var(--color-primary, #702020);
  transform: translateY(-1px);
}

.lx-wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 1.5rem); }

/* ----- Hero ----- */
.lx-hero--splendid {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  overflow: hidden;
}
.lx-hero--splendid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    168deg,
    #fffcf7 0%,
    color-mix(in srgb, var(--color-primary, #702020) 6%, #fff9f2) 38%,
    #f0ebe3 100%
  );
  pointer-events: none;
}
.lx-hero--splendid::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, color-mix(in srgb, var(--color-secondary, #b8b8b8) 20%, transparent) 0%, transparent 68%);
  opacity: 0.75;
  pointer-events: none;
}
.lx-hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.lx-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary, #702020);
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-primary, #702020) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--color-primary, #702020) 18%, #fff);
}

.lx-hero__title {
  font-family: var(--font-brand, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  color: #0c1222;
  margin: 0 0 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.lx-hero__title-accent {
  color: var(--color-primary, #702020);
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .lx-hero__title-accent {
    background: linear-gradient(120deg, var(--color-primary, #702020) 0%, color-mix(in srgb, var(--color-primary, #702020) 50%, #334155) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.lx-hero__lead {
  font-size: 1.05rem;
  color: #4a5565;
  margin: 0 0 1.45rem;
  line-height: 1.64;
  font-weight: 400;
}
.lx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.lx-hero__strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 90%, var(--color-primary, #702020));
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.85rem;
  color: #64748b;
}
.lx-hero__strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lx-hero__strip-item svg {
  flex-shrink: 0;
  color: var(--color-primary, #702020);
  opacity: 0.9;
}

/* ----- Seções ----- */
.lx-section { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.lx-section--alt {
  background: #fefdfb;
  border-top: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 85%, #fff);
  border-bottom: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 85%, #fff);
  box-shadow: 0 20px 56px rgba(12, 18, 34, 0.05);
}
.lx-section--tight { padding: clamp(2rem, 4vw, 2.75rem) 0; }

.lx-section-head { margin-bottom: 1.75rem; }
.lx-section__title {
  font-family: var(--font-brand, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #0c1222;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}
.lx-section--alt .lx-section__title::after,
.lx-section__title.lx-section__title--line::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary, #702020), color-mix(in srgb, var(--color-secondary, #c0c0c0) 70%, var(--color-primary, #702020)));
}
.lx-section--alt .lx-section-head { text-align: left; }
.lx-section--centered .lx-section-head { text-align: center; max-width: 36rem; margin-left: auto; margin-right: auto; }
.lx-section--centered .lx-section__title { display: block; }
.lx-section--centered .lx-section__title::after { margin-left: auto; margin-right: auto; }
.lx-section__intro { color: #64748b; margin: 0; max-width: 46rem; line-height: 1.65; font-size: 0.98rem; }

.lx-kicker--section {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-primary, #702020);
  margin-bottom: 0.4rem;
}

/* Features */
.lx-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
}
.lx-feature {
  position: relative;
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 90%, #f4f0ea);
  background: linear-gradient(168deg, #fffcf9 0%, #f3eee8 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 2px 6px rgba(12, 18, 34, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lx-feature:hover {
  box-shadow: 0 1px 0 #fff inset, 0 14px 36px rgba(12, 18, 34, 0.09);
  border-color: color-mix(in srgb, var(--color-primary, #702020) 20%, #e0d6cc);
  transform: translateY(-2px);
}
.lx-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--color-primary, #702020);
  background: color-mix(in srgb, var(--color-primary, #702020) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--color-primary, #702020) 16%, #fff);
}
.lx-feature__icon svg { width: 24px; height: 24px; }
.lx-feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0c1222;
}
.lx-feature p { margin: 0; font-size: 0.9rem; color: #64748b; line-height: 1.5; }

/* Grid imóveis */
.lx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.35rem;
}
.lx-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 90%, #e8e0d8);
  background: #fffcf9;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 4px 12px rgba(12, 18, 34, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.lx-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lx-card:hover {
  box-shadow: 0 1px 0 #fff inset, 0 22px 48px rgba(12, 18, 34, 0.11);
  transform: translateY(-4px);
}
.lx-card:hover::before { opacity: 1; }

.lx-card__link { text-decoration: none; color: inherit; display: block; }
.lx-card__link:hover { text-decoration: none; }
.lx-card__img {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #e2e8f0, #f1f5f9);
  position: relative;
  overflow: hidden;
}
.lx-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.5) 100%);
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
}
.lx-card:hover .lx-card__img img { transform: scale(1.05); }
.lx-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  z-index: 0;
}
.lx-card__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}
.lx-card__img--empty::after { display: none; }
.lx-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  color: #fff;
  background: color-mix(in srgb, var(--color-primary, #702020) 90%, #000);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.lx-card__body { padding: 1.05rem 1.2rem 1.25rem; position: relative; z-index: 2; background: #fffcf9; }
.lx-card__code {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 700;
}
.lx-card__name { font-weight: 700; font-size: 1.02rem; margin: 0.25rem 0 0.4rem; color: #0c1222; line-height: 1.3; }
.lx-card__meta { font-size: 0.86rem; color: #64748b; margin: 0 0 0.5rem; }
.lx-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--color-border, #e2e8f0);
}
.lx-card__price { font-size: 1.15rem; font-weight: 800; color: var(--color-primary, #702020); letter-spacing: -0.02em; }
.lx-card__hint { font-size: 0.78rem; font-weight: 600; color: var(--color-primary, #702020); opacity: 0.9; }
.lx-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: #64748b;
  background: color-mix(in srgb, var(--color-border, #e2e8f0) 45%, #fff);
  border-radius: 16px;
  border: 1px dashed color-mix(in srgb, var(--color-primary, #702020) 22%, var(--color-border, #e2e8f0));
  font-size: 0.95rem;
  line-height: 1.55;
}

/* CTA */
.lx-cta {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.lx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    #2a0c0e 0%,
    var(--color-primary, #702020) 42%,
    color-mix(in srgb, var(--color-primary, #702020) 80%, #000) 100%
  );
  pointer-events: none;
}
.lx-cta::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.2) 70%, transparent);
}
.lx-cta__inner { position: relative; z-index: 2; max-width: 34rem; margin: 0 auto; }
.lx-cta__title {
  font-family: var(--font-brand, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
.lx-cta__text {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  font-size: 0.98rem;
}
.lx-cta__text strong { color: #fff; }

/* Página de anúncio */
.lx-breadcrumb { margin: 0 0 0.75rem; font-size: 0.9rem; }
.lx-breadcrumb a { text-decoration: none; font-weight: 600; color: var(--color-primary, #702020); }
.lx-breadcrumb a:hover { text-decoration: underline; }

.lx-page-hero { padding: 1.5rem 0 0; }
.lx-page-hero h1 { text-align: left; }

.lx-wrap--anuncio { padding-bottom: 0.5rem; }

/* Carrossel de fotos (página do anúncio) — tamanho contido; não tela cheia */
.lx-carousel {
  max-width: min(36rem, 100%);
  margin: 1rem auto 0;
  outline: none;
}
.lx-carousel:focus-visible { box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary, #702020) 30%, transparent); border-radius: 16px; }
.lx-carousel__viewport {
  position: relative;
  overflow: hidden;
  /* Altura fixa em faixa: ~168–256px conforme tela; evita fotos “imensas” */
  height: clamp(10.5rem, 32vh, 16rem);
  max-height: 16rem;
  min-height: 9.5rem;
  border-radius: 14px;
  border: 1px solid var(--color-border, #e2e8f0);
  background: #e2e8f0;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08);
}
.lx-carousel__track {
  --i: 0;
  --n: 1;
  display: flex;
  width: calc(100% * var(--n));
  height: 100%;
  transform: translateX(calc(-100% * var(--i) / var(--n)));
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.lx-carousel__slide {
  flex: 0 0 calc(100% / var(--n));
  min-width: 0;
  height: 100%;
  margin: 0;
}
.lx-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.lx-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary, #702020);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.15);
  transition: background 0.15s ease, transform 0.15s ease;
}
.lx-carousel__nav:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
.lx-carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.lx-carousel__nav--prev { left: 0.6rem; }
.lx-carousel__nav--next { right: 0.6rem; }
.lx-carousel--single .lx-carousel__nav { display: none; }
.lx-carousel__meta {
  max-width: min(36rem, 100%);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin-top: 0.6rem;
  padding: 0 0.15rem;
}
.lx-carousel__dots { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.lx-carousel--single .lx-carousel__dots { display: none; }
.lx-carousel__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.lx-carousel__dot:hover { background: #94a3b8; }
.lx-carousel__dot.is-active {
  background: var(--color-primary, #702020);
  transform: scale(1.2);
}
.lx-carousel__counter { margin: 0; font-size: 0.8rem; color: #94a3b8; font-variant-numeric: tabular-nums; }

.lx-anuncio-actions-wrap {
  margin: 0.5rem 0 2.75rem;
  padding-bottom: 0.25rem;
}
.lx-anuncio-actions { margin: 0; }
.lx-panel {
  background: #fffcf9;
  border: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 88%, #e8e0d8);
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.45rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 4px 20px rgba(12, 18, 34, 0.05);
  margin-top: 0.5rem;
  max-width: 40rem;
}
.lx-prose { color: #4a5565; line-height: 1.7; font-size: 0.95rem; }
.lx-dl { display: grid; grid-template-columns: minmax(100px, 150px) 1fr; gap: 0.4rem 1.25rem; font-size: 0.9rem; margin: 0; }
.lx-dl dt { color: #94a3b8; font-weight: 600; font-size: 0.82rem; }
.lx-dl dd { margin: 0; color: #334155; }
.lx-section__subhead {
  font-family: var(--font-brand, "Cormorant Garamond", Georgia, serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0c1222;
  margin: 0 0 0.5rem;
}

.lx-anuncio-actions--row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

/* Contato / formulário */
.lx-form { margin-top: 0.5rem; }
.lx-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.lx-field { display: block; min-width: 0; }
.lx-field--wide { grid-column: 1 / -1; }
.lx-field__label { display: block; font-size: 0.8rem; font-weight: 600; color: #475569; margin-bottom: 0.35rem; }
.lx-input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border-radius: 11px;
  border: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 92%, #e8e0d8);
  font: inherit;
  font-size: 0.92rem;
  color: #0c1222;
  background: #fefdfb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.lx-input:hover {
  border-color: color-mix(in srgb, var(--color-primary, #702020) 15%, var(--color-border, #e2e8f0));
}
.lx-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--color-primary, #702020) 45%, var(--color-border, #e2e8f0));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary, #702020) 12%, transparent);
}
.lx-input--select { cursor: pointer; appearance: auto; }
.lx-textarea { min-height: 130px; resize: vertical; }
.lx-check { display: flex; gap: 0.65rem; align-items: flex-start; margin: 1rem 0 0; font-size: 0.86rem; color: #475569; line-height: 1.5; }
.lx-check__input { margin-top: 0.25rem; flex-shrink: 0; width: 1.1rem; height: 1.1rem; accent-color: var(--color-primary, #702020); }
.lx-form__note { font-size: 0.78rem; color: #94a3b8; margin: 0.85rem 0 0; line-height: 1.5; }
.lx-form__actions { margin-top: 1.15rem; }
.lx-flash-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.lx-flash { padding: 0.7rem 1rem; border-radius: 11px; font-size: 0.9rem; margin-bottom: 0.5rem; line-height: 1.45; }
.lx-flash--success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.lx-flash--danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.lx-flash--warning { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.lx-flash--message { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }

/* Página legal (privacidade) */
.lx-legal__body h2 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0c1222;
  margin: 1.75rem 0 0.5rem;
}
.lx-legal__body ul { padding-left: 1.2rem; margin: 0.5rem 0; }
.lx-legal__body li { margin: 0.25rem 0; }

/* Banner cookies / LGPD */
.lx-lgpd {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1.25rem 1.15rem;
  background: color-mix(in srgb, #fffcf9 96%, rgba(255, 255, 255, 0.2));
  border-top: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 88%, #e8e0d8);
  box-shadow: 0 -8px 32px rgba(12, 18, 34, 0.1);
  backdrop-filter: blur(12px) saturate(1.1);
}
.lx-lgpd[hidden] { display: none !important; }
.lx-lgpd__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.lx-lgpd__title { font-weight: 700; font-size: 0.95rem; color: #0c1222; margin: 0 0 0.35rem; }
.lx-lgpd__desc { margin: 0; font-size: 0.8rem; color: #64748b; line-height: 1.5; max-width: 50rem; }
.lx-lgpd__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Modal — interesse no anúncio */
body.lx-modal-open {
  overflow: hidden;
}
.lx-modal[hidden] {
  display: none !important;
}
.lx-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.lx-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.48);
  backdrop-filter: blur(4px);
}
.lx-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  max-height: min(90vh, 34rem);
  overflow-y: auto;
  background: #fffcf9;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 80%, #e0d6cc);
  box-shadow: 0 1px 0 #fff inset, 0 28px 60px rgba(8, 12, 24, 0.22);
  padding: 1.15rem 1.25rem 1.2rem;
}
.lx-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.lx-modal__title {
  font-family: var(--font-brand, "Cormorant Garamond", Georgia, serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c1222;
  margin: 0;
  line-height: 1.2;
  padding-right: 0.25rem;
}
.lx-modal__x {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 8px;
  background: #f0ebe4;
  color: #64748b;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.lx-modal__x:hover { background: #e5ddd4; color: #0c1222; }
.lx-modal__lede { margin: 0 0 0.9rem; font-size: 0.84rem; color: #64748b; line-height: 1.45; }
.lx-form--modal { margin-top: 0; }
.lx-form__grid--modal { grid-template-columns: 1fr; gap: 0.75rem; }
.lx-textarea--modal, .lx-form--modal .lx-textarea { min-height: 100px; }
.lx-form__actions--modal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.5rem; margin-top: 0.85rem; }
.lx-flash-list--compact .lx-flash { margin-bottom: 0.4rem; }

.lx-footer {
  margin-top: 0;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #8e98a5;
  border-top: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 85%, #e0d6cc);
  background: #f7f2eb;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
}
.lx-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}
.lx-footer__inner--compact { padding: 0 0.9rem; }
.lx-footer__row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.4rem;
}
.lx-footer__dot { color: #cbd5e1; user-select: none; }
.lx-footer a { color: #64748b; text-decoration: none; font-weight: 500; }
.lx-footer a:hover { text-decoration: underline; color: var(--color-primary, #702020); }
.lx-footer__brand { color: #94a3b8; font-size: 0.72rem; }
.lx-footer__links { font-size: 0.72rem; }

@media (max-width: 640px) {
  .lx-nav__inner { padding-left: clamp(1rem, 3vw, 1.5rem); padding-right: clamp(1rem, 3vw, 1.5rem); }
  .lx-hero__strip { flex-direction: column; text-align: center; }
  .lx-dl { grid-template-columns: 1fr; }
  .lx-dl dt { padding-top: 0.45rem; }
  .lx-dl dt:first-of-type { padding-top: 0; }
  .lx-dl dt { color: #64748b; }
  .lx-form__grid { grid-template-columns: 1fr; }
}

/* ----- Vitrine pública premium (catálogo / busca) ----- */
.lx-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;
}

.lx-hero--vitrine .lx-hero__content {
  max-width: 46rem;
}

.lx-vitrine-catalog__intro {
  max-width: 42rem;
}

.lx-vitrine-toolbar {
  margin-bottom: 1.35rem;
  padding: 1.2rem 1.35rem 1.35rem;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 88%, var(--color-primary, #702020));
  background: linear-gradient(165deg, #fffefc 0%, #f7f1ea 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 48px rgba(12, 18, 34, 0.08);
}

.lx-vitrine-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
}

.lx-vitrine-search__main {
  flex: 1 1 min(100%, 300px);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.9rem 0.5rem 0.75rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 92%, #fff);
  background: #fff;
  box-shadow: 0 2px 8px rgba(12, 18, 34, 0.05);
}

.lx-vitrine-search__icon {
  flex-shrink: 0;
  color: var(--color-primary, #702020);
  opacity: 0.88;
}

.lx-vitrine-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: #0c1222;
}
.lx-vitrine-search__input::placeholder {
  color: #94a3b8;
}
.lx-vitrine-search__input:focus {
  outline: none;
}

.lx-vitrine-search__btn {
  flex-shrink: 0;
  align-self: center;
}

.lx-vitrine-filters {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 90%, #fff);
}

.lx-vitrine-filters__summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-primary, #702020);
  list-style: none;
}
.lx-vitrine-filters__summary::-webkit-details-marker {
  display: none;
}

.lx-vitrine-filters__panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem 1rem;
  margin-top: 1rem;
}

.lx-field--compact .lx-field__label {
  font-size: 0.78rem;
}

.lx-vitrine-filters__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.lx-vitrine-results-meta {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0 0 1.35rem;
}

.lx-grid--premium {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.lx-card--premium .lx-card__img {
  aspect-ratio: 5 / 3;
}

.lx-card__price-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.75rem 1rem 0.9rem;
  font-size: 1.14rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.94) 0%,
    rgba(15, 23, 42, 0.5) 52%,
    transparent 100%
  );
  pointer-events: none;
}

.lx-card__price-unit {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.92;
}

.lx-card__loc {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.84rem;
  color: #64748b;
}

.lx-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.5rem 0 0.15rem;
}

.lx-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-primary, #702020) 9%, #f8fafc);
  color: #475569;
  border: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 75%, var(--color-primary, #702020));
}

.lx-card__row--simple {
  justify-content: flex-end;
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 85%, #fff);
}

.lx-pagination-wrap {
  margin-top: 0.5rem;
}

.lx-pagination-wrap .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 88%, #fff);
}

.lx-pagination-wrap .pagination__info {
  font-size: 0.86rem;
  color: #64748b;
}

.lx-pagination-wrap .pagination__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lx-pagination-wrap .pagination__link {
  display: inline-block;
  padding: 0.42rem 0.68rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary, #702020);
  border: 1px solid color-mix(in srgb, var(--color-border, #e2e8f0) 90%, var(--color-primary, #702020));
  background: #fffefc;
}

.lx-pagination-wrap .pagination__link:hover {
  background: color-mix(in srgb, var(--color-primary, #702020) 8%, #fff);
}

.lx-pagination-wrap .pagination__link--current {
  background: color-mix(in srgb, var(--color-primary, #702020) 14%, #fff);
  color: #4a1518;
  pointer-events: none;
}

.lx-pagination-wrap .pagination__link--disabled {
  color: #94a3b8;
  pointer-events: none;
  opacity: 0.75;
}

.lx-pagination-wrap .pagination__ellipsis {
  padding: 0.42rem 0.25rem;
  color: #94a3b8;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html.lx-site { scroll-behavior: auto; }
  .lx-btn,
  .lx-card,
  .lx-card__img img,
  .lx-feature { transition: none; }
  .lx-card:hover { transform: none; }
  .lx-nav__link::after { transition: none; }
  .lx-carousel__track { transition: none; }
}
