/* ============================================================
   LH & TF Imobiliária — Estilos
   ============================================================ */
:root {
  --navy: #16243f;
  --navy-deep: #0d1830;
  --gold: #c79b54;
  --gold-soft: #e8d9bd;
  --bg: #fbfaf8;
  --card: #ffffff;
  --text: #1c2536;
  --muted: #6b7280;
  --border: #e8e8ec;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(22, 36, 63, 0.08);
  --shadow-lg: 0 20px 50px rgba(22, 36, 63, 0.16);
  --font: "Jost", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}
.brand-name, .section-head h2, .hero h1, .about-grid h2, .about-card h3,
.contact h2, .modal-info h2, .login-card h1, .panel h2, .footer .slogan {
  font-optical-sizing: auto;
  letter-spacing: -.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 10px;
  border: none; cursor: pointer; transition: transform .15s, box-shadow .15s, background .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { filter: brightness(1.06); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-block { width: 100%; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { filter: brightness(1.05); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff; /* branco sólido = mesmo fundo do logo (esconde a borda do JPEG) */
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 11px; background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; line-height: 1; gap: 2px; flex-shrink: 0;
  border: 1px solid rgba(199, 155, 84, .4);
}
.brand-mark b { color: #fff; font-size: 14px; letter-spacing: .5px; }
.brand-mark i { color: var(--gold); font-size: 14px; font-style: normal; letter-spacing: .5px; }
.brand-name { font-family: var(--serif); color: var(--navy); font-size: 18px; line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font); font-size: 10px; letter-spacing: 2px; color: var(--gold); font-weight: 600; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--text); }
.nav a:hover { background: #fff; }
.nav .btn { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background-color: var(--navy);
  background-image:
    linear-gradient(115deg, rgba(13,24,48,.94) 0%, rgba(13,24,48,.82) 46%, rgba(22,36,63,.5) 100%),
    radial-gradient(circle at 88% 18%, rgba(199,155,84,.28), transparent 45%),
    url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1600&q=80");
  background-size: cover; background-position: center;
  color: #fff; padding: 80px 0 90px;
}
.hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.7rem); line-height: 1.1; max-width: 720px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { margin-top: 18px; max-width: 540px; font-size: 1.1rem; color: rgba(255,255,255,.78); }
.hero .pill {
  display: inline-block; border: 1px solid rgba(199,155,84,.45); color: var(--gold);
  padding: 6px 14px; border-radius: 99px; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; margin-bottom: 22px;
}
.hero-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Filtro ---------- */
.filters {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px; margin-top: -45px; position: relative; z-index: 5;
  display: grid; gap: 12px; grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
}
.filters .field { display: flex; flex-direction: column; gap: 5px; }
.filters label { font-size: 12px; font-weight: 600; color: var(--muted); }
.input, .select {
  height: 46px; border: 1px solid var(--border); border-radius: 10px; padding: 0 12px;
  font-size: 15px; font-family: var(--font); background: #fff; color: var(--text); width: 100%;
}
.input:focus, .select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(22,36,63,.08); }
.filters .btn { align-self: end; height: 46px; }

/* ---------- Seções ---------- */
.section { padding: 70px 0; }
.section-head { margin-bottom: 34px; }
.section-head h2 { font-family: var(--serif); color: var(--navy); font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.section-head p { color: var(--muted); margin-top: 6px; }
.eyebrow { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }

/* ---------- Grade de imóveis ---------- */
.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s; cursor: pointer;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gold-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-media img { transform: scale(1.07); }
.card-tag {
  position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy-deep);
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 99px;
}
.card-body { padding: 16px 18px; display: flex; flex-direction: column; flex: 1; }
.card-price { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -.5px; }
.card-price small { font-size: .8rem; font-weight: 500; color: var(--muted); }
.card-title { font-weight: 600; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-loc { color: var(--muted); font-size: 14px; margin-top: 2px; display: flex; align-items: center; gap: 5px; }
.card-specs {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; gap: 16px; color: var(--muted); font-size: 14px;
}
.card-specs span { display: flex; align-items: center; gap: 5px; }
.svg-ico { width: 17px; height: 17px; stroke: var(--navy); opacity: .7; flex-shrink: 0; }

/* estado de carregamento (skeleton) */
.skeleton { background: linear-gradient(90deg,#eee 25%,#f5f5f5 37%,#eee 63%); background-size: 400% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { 0%{background-position:100% 0} 100%{background-position:-100% 0} }
.empty { text-align: center; color: var(--muted); padding: 60px 0; grid-column: 1/-1; }

/* ---------- Sobre ---------- */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.about-grid h2 { font-family: var(--serif); color: var(--navy); font-size: clamp(1.8rem,3.5vw,2.5rem); }
.about-grid p { color: var(--muted); margin-top: 16px; }
.values { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.value b { display: block; font-family: var(--serif); color: var(--gold); font-size: 1.6rem; }
.value span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); font-weight: 600; }
.about-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-lg); }
.about-card h3 { font-family: var(--serif); font-size: 1.5rem; }
.about-card .row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.about-card .row:last-child { border: none; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--navy-deep); display: grid; place-items: center; font-weight: 700; }

/* ---------- Contato ---------- */
.contact { background: var(--navy-deep); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact h2 { font-family: var(--serif); font-size: 2rem; }
.contact p { color: rgba(255,255,255,.7); margin-top: 10px; }
.contact-list { margin-top: 24px; display: grid; gap: 14px; }
.contact-list a { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); }
.contact-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 26px; display: grid; gap: 12px; }
.contact-form .input, .contact-form textarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); color: #fff;
  border-radius: 10px; padding: 12px; font-family: var(--font); font-size: 15px;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form ::placeholder { color: rgba(255,255,255,.5); }

/* ---------- Footer ---------- */
.footer { background: #0a1124; color: rgba(255,255,255,.6); text-align: center; padding: 40px 0; }
.footer .slogan { font-family: var(--serif); color: #fff; font-size: 1.2rem; }
.footer small { display: block; margin-top: 10px; color: rgba(255,255,255,.35); }

/* ---------- Modal de detalhes ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(13,24,48,.6); backdrop-filter: blur(3px); }
.modal-panel {
  position: relative; max-width: 880px; margin: 4vh auto; background: #fff; border-radius: var(--radius);
  overflow: hidden; max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg);
}
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); font-size: 20px; cursor: pointer; }
.gallery { display: grid; gap: 4px; grid-template-columns: 2fr 1fr 1fr; max-height: 380px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery img:first-child { grid-row: span 2; }
.modal-info { padding: 26px 30px 32px; }
.modal-info h2 { font-family: var(--serif); color: var(--navy); }
.feature-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.chip { background: #f3f1ec; color: var(--navy); padding: 6px 12px; border-radius: 99px; font-size: 13px; font-weight: 500; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: radial-gradient(circle at 30% 10%, rgba(199,155,84,.12), transparent 50%), var(--bg); }
.login-card { width: 100%; max-width: 400px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 36px; }
.login-card h1 { font-family: var(--serif); color: var(--navy); text-align: center; }
.login-card p { text-align: center; color: var(--muted); margin: 6px 0 24px; font-size: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.hint { font-size: 13px; }
.error-msg { color: #dc2626; font-size: 14px; margin-top: 8px; min-height: 18px; }
.ok-msg { color: #16a34a; font-size: 14px; margin-top: 8px; }

.admin-top { background: var(--navy); color: #fff; }
.admin-top .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.admin-main { padding: 36px 0 80px; }
.admin-cols { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: start; }
.panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.panel h2 { font-family: var(--serif); color: var(--navy); font-size: 1.4rem; margin-bottom: 4px; }
.panel .sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
textarea.input { height: auto; min-height: 90px; padding: 12px; resize: vertical; }

/* Dropzone */
.dropzone {
  border: 2px dashed var(--border); border-radius: 12px; padding: 28px; text-align: center;
  color: var(--muted); cursor: pointer; transition: .2s; background: #faf9f7;
}
.dropzone.drag { border-color: var(--gold); background: rgba(199,155,84,.06); }
.dropzone strong { color: var(--navy); }
.previews { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px,1fr)); gap: 10px; margin-top: 14px; }
.thumb { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.cover { outline: 3px solid var(--gold); outline-offset: -3px; }
.thumb .badge { position: absolute; top: 4px; left: 4px; background: var(--gold); color: var(--navy-deep); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 6px; }
.thumb .x { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border: none; border-radius: 50%; background: rgba(220,38,38,.9); color: #fff; cursor: pointer; font-size: 13px; line-height: 1; }
.thumb .set-cover { position: absolute; bottom: 0; inset-inline: 0; background: rgba(13,24,48,.82); color: #fff; border: none; font-size: 11px; padding: 4px; cursor: pointer; opacity: 0; transition: .2s; }
.thumb:hover .set-cover { opacity: 1; }

/* Lista de imóveis do corretor */
.mine { display: grid; gap: 12px; }
.mine-item { display: flex; gap: 12px; align-items: center; border: 1px solid var(--border); border-radius: 12px; padding: 10px; }
.mine-item img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.mine-item .meta { flex: 1; min-width: 0; }
.mine-item .meta b { display: block; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mine-item .meta span { font-size: 13px; color: var(--muted); }

/* ---------- Responsivo ---------- */
@media (max-width: 920px) {
  .nav { display: none; }
  .nav.open { display: flex; position: absolute; top: 84px; right: 20px; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 10px; box-shadow: var(--shadow-lg); }
  .nav.open .btn { margin: 6px 0 0; }
  .nav-toggle { display: block; }
  .filters { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid, .admin-cols { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; max-height: none; }
  .gallery img:first-child { grid-row: auto; }
}
@media (max-width: 540px) {
  .filters { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   REDESIGN — scroll-driven, micro-interações, CRO
   ============================================================ */

/* Barra de progresso de leitura */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), #e8c98a);
  z-index: 100; transition: width .1s linear;
}

/* Header encolhe ao rolar + sublinhado animado no menu */
.site-header { transition: box-shadow .25s, background .25s; }
.site-header .container { transition: height .25s; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(22, 36, 63, .09); }
.site-header.scrolled .container { height: 66px; }
.nav-link { position: relative; }
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Hero com imagem em camada (parallax) */
.hero { background: var(--navy); padding: 84px 0 76px; }
.hero-bg {
  position: absolute; inset: -8% 0; z-index: 0; will-change: transform;
  background-image:
    linear-gradient(115deg, rgba(13,24,48,.94) 0%, rgba(13,24,48,.82) 46%, rgba(22,36,63,.5) 100%),
    radial-gradient(circle at 88% 18%, rgba(199,155,84,.28), transparent 45%),
    url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1600&q=80");
  background-size: cover; background-position: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-actions { align-items: center; }
.link-secondary { color: #fff; font-weight: 600; opacity: .85; transition: opacity .2s, transform .2s; }
.link-secondary:hover { opacity: 1; transform: translateX(3px); }

/* Busca dentro do hero (cartão branco) */
.hero .filters { margin-top: 36px; margin-bottom: 0; }

/* CTA dourado com brilho + elevação */
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(199, 155, 84, .42); }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn-shine:hover::after { left: 150%; }

/* Faixa de prova social */
.trust { background: #fff; border-bottom: 1px solid var(--border); padding: 36px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-item b { display: block; font-family: var(--serif); color: var(--navy); font-size: 2.5rem; line-height: 1; }
.trust-item span { color: var(--muted); font-size: 14px; }

/* Imóvel em destaque (bento) */
.destaque-wrap:not(:empty) { margin-bottom: 24px; }
.featured {
  display: grid; grid-template-columns: 1.45fr 1fr; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer; transition: transform .3s, box-shadow .3s;
}
.featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-media { position: relative; min-height: 340px; overflow: hidden; background: var(--gold-soft); }
.featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.featured:hover .featured-media img { transform: scale(1.05); }
.featured-badge {
  position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--navy-deep);
  font-weight: 700; font-size: 12px; padding: 6px 14px; border-radius: 99px;
}
.featured-body { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.featured-body .tagline { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.featured-body h3 { font-family: var(--serif); color: var(--navy); font-size: 1.9rem; margin: 8px 0 4px; }
.featured-body .featured-price { font-size: 2rem; font-weight: 800; color: var(--navy); margin: 14px 0; }

/* Card: favoritar + revelar "ver detalhes" */
.fav {
  position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.92); cursor: pointer; display: grid; place-items: center;
  z-index: 3; transition: transform .2s, background .2s; box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.fav:hover { transform: scale(1.12); }
.fav svg { width: 19px; height: 19px; fill: none; stroke: var(--navy); stroke-width: 2; }
.fav.active svg { fill: #e0245e; stroke: #e0245e; animation: fav-pop .35s ease; }
@keyframes fav-pop { 0% { transform: scale(.6); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
.card-hint {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; text-align: center; color: #fff;
  font-weight: 600; font-size: 13px; letter-spacing: .3px; padding: 26px 0 10px;
  background: linear-gradient(transparent, rgba(13,24,48,.82)); transform: translateY(100%); transition: transform .3s ease;
}
.card:hover .card-hint { transform: translateY(0); }

/* Scroll-reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
[data-reveal].in { opacity: 1; transform: none; }

/* WhatsApp flutuante com pulso */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px;
  border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1;
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(1.85); opacity: 0; } 100% { opacity: 0; } }

/* Sticky CTA mobile */
.mobile-cta { display: none; }
@media (max-width: 740px) {
  .mobile-cta {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--border);
  }
  .mobile-cta .btn { flex: 1; }
  .wa-float { bottom: 82px; }
  body { padding-bottom: 66px; }
  .featured { grid-template-columns: 1fr; }
  .featured-media { min-height: 220px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
}

/* Sticky leve no texto da seção Sobre (desktop) */
@media (min-width: 921px) {
  .about-text { position: sticky; top: 96px; align-self: start; }
}

/* ---- Acessibilidade: respeitar reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-bg { transform: none !important; }
  .wa-float::before { display: none; }
  .about-text { position: static; }
}

/* ---- Logo oficial (navbar + rodapé) ---- */
.brand-logo {
  height: 68px; width: auto; display: block;
  transition: height .25s ease;
}
.site-header.scrolled .brand-logo { height: 56px; }

.footer-logo {
  display: inline-block; background: #fff; border-radius: 16px;
  padding: 16px 22px; margin-bottom: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}
.footer-logo img { height: 96px; width: auto; display: block; }

@media (max-width: 540px) {
  .brand-logo { height: 54px; }
  .footer-logo img { height: 76px; }
}

/* ---- Carrossel contínuo ---- */
.carousel {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
}
.carousel-track {
  display: flex; gap: 22px; overflow-x: auto; padding: 8px 2px 18px;
  scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x proximity;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > .card { flex: 0 0 300px; scroll-snap-align: start; }
@media (max-width: 540px) {
  .carousel { -webkit-mask-image: none; mask-image: none; }
  .carousel-track > .card { flex: 0 0 84%; }
}

/* ---- Contato (moderno) ---- */
.contact {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(199, 155, 84, .14), transparent 45%),
    var(--navy-deep);
}
.contact-head { margin-bottom: 36px; }
.contact-grid { align-items: center; gap: 50px; }

.contact-list { margin-top: 0; gap: 14px; display: flex; flex-direction: column; }
.contact-item {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 16px; border-radius: 14px;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .2s ease, background .2s, border-color .2s; color: #fff;
}
a.contact-item:hover { transform: translateX(5px); background: rgba(255, 255, 255, .08); border-color: rgba(199, 155, 84, .5); }
.contact-item.static { cursor: default; }
.ci-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(199, 155, 84, .15);
}
.ci-icon svg { width: 21px; height: 21px; stroke: var(--gold); fill: none; stroke-width: 2; }
.ci-icon.ci-wa { background: rgba(37, 211, 102, .16); }
.ci-icon.ci-wa svg { fill: #25d366; stroke: none; }
.ci-icon.ci-insta { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.ci-icon.ci-insta svg { stroke: #fff; color: #fff; }
a.contact-item:hover .ci-icon { transform: scale(1.06); transition: transform .2s; }
.ci-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.ci-text b { font-weight: 600; font-size: 15px; }
.ci-text span { font-size: 13.5px; color: rgba(255, 255, 255, .6); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Formulário (glass) */
.contact-form {
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(255, 255, 255, .06); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; padding: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}
.contact-form textarea { min-height: 110px; max-height: 150px; }
.cf-head { margin-bottom: 4px; text-align: center; }
.cf-head h3 { font-family: var(--serif); color: #fff; font-size: 1.45rem; }
.cf-head p { color: rgba(255, 255, 255, .6); margin-top: 4px; font-size: 14px; }
.cf-field { position: relative; }
.cf-ico { position: absolute; left: 16px; top: 26px; width: 18px; height: 18px; stroke: rgba(255, 255, 255, .5); fill: none; stroke-width: 2; pointer-events: none; }
.cf-field .input { padding-left: 46px !important; }
.contact-form .input, .contact-form textarea {
  height: auto; min-height: 52px; padding: 14px 16px; border-radius: 12px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  color: #fff; transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form .input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 155, 84, .2); background: rgba(255, 255, 255, .09);
}
.contact-form .btn-wa { height: 54px; gap: 10px; font-size: 16px; margin-top: 4px; }
.contact-form .btn-wa svg { width: 22px; height: 22px; fill: #fff; }

/* ---- Seção de Ofertas ---- */
.section-ofertas {
  background:
    radial-gradient(circle at 90% 0%, rgba(199, 155, 84, .1), transparent 40%),
    linear-gradient(180deg, #fff, var(--bg));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.eyebrow-hot { color: #d9822b; }
.section-ofertas .card { border-color: rgba(199, 155, 84, .45); }
.section-ofertas .card-tag { background: #d9822b; color: #fff; }

/* ============================================================
   HERO full-screen (clean) + navbar sobreposta delicada
   ============================================================ */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 70px; }
.hero-bg {
  background-image:
    linear-gradient(180deg, rgba(13,24,48,.72) 0%, rgba(13,24,48,.34) 34%, rgba(13,24,48,.62) 100%),
    url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1600&q=80");
}
.hero-content { text-align: center; max-width: 940px; margin: 0 auto; }
.hero .pill { margin-bottom: 20px; }
.hero h1 { max-width: 880px; margin: 0 auto; }
.hero p { margin: 18px auto 0; }

/* Navbar transparente sobre o hero; vira branca ao rolar */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent; border-bottom-color: transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
html { scroll-padding-top: 84px; } /* âncoras param abaixo da navbar fixa */

/* ============================================================
   "Quem somos" premium
   ============================================================ */
.about { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.about-grid { align-items: start; gap: 56px; }

.about-features { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
.about-features li { display: flex; align-items: center; gap: 13px; font-weight: 500; color: var(--text); }
.af-ico { width: 38px; height: 38px; border-radius: 11px; background: rgba(199,155,84,.14); display: grid; place-items: center; flex-shrink: 0; }
.af-ico svg { width: 19px; height: 19px; stroke: var(--gold); fill: none; stroke-width: 2; }

.about-media { position: relative; padding-bottom: 30px; }
.about-photo {
  width: 100%; height: 500px; object-fit: cover; border-radius: 22px; display: block;
  box-shadow: var(--shadow-lg);
}
.about-card {
  position: relative; z-index: 2; margin: -90px 28px 0;
  background: var(--navy); color: #fff; border-radius: 18px; padding: 28px 30px;
  box-shadow: 0 30px 60px rgba(13,24,48,.4); overflow: hidden;
}
.about-card .ac-line { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), #e8c98a); }
.about-card h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 6px; }
.corretor { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.corretor:last-of-type { border-bottom: none; }
.corretor-info { display: flex; flex-direction: column; line-height: 1.35; }
.corretor-info b { font-weight: 600; }
.corretor-info span { color: rgba(255,255,255,.6); font-size: 14px; }
.about-card .avatar {
  width: 50px; height: 50px; font-size: 15px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), #e8c98a); color: var(--navy-deep);
  box-shadow: 0 0 0 3px rgba(199,155,84,.25);
}
.about-card .btn-gold { margin-top: 18px; }

@media (max-width: 920px) {
  .about-photo { height: 360px; }
  .about-card { margin: -70px 16px 0; }
}

/* ============================================================
   Contato premium (mesmo padrão do hero / "Quem somos")
   ============================================================ */
.contact {
  background:
    radial-gradient(circle at 85% 5%, rgba(199,155,84,.16), transparent 45%),
    linear-gradient(rgba(13,24,48,.93), rgba(10,17,36,.97)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80");
  background-size: cover; background-position: center;
}
.contact-form {
  position: relative; overflow: hidden;
  border: 1px solid rgba(199,155,84,.22);
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}
.contact-form::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 1;
  background: linear-gradient(90deg, var(--gold), #e8c98a);
}
.cf-head h3 { letter-spacing: -.01em; }
.contact-form .btn-wa { box-shadow: 0 12px 28px rgba(37,211,102,.28); }

/* Cards de contato: mais claros, com dourado da marca */
.contact-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(199,155,84,.22);
  backdrop-filter: blur(6px);
}
a.contact-item:hover {
  background: rgba(255,255,255,.12); border-color: rgba(199,155,84,.6);
  box-shadow: 0 14px 32px rgba(0,0,0,.3);
}
.ci-text b { color: #fff; }
.ci-text span { color: rgba(255,255,255,.72); }

/* Ícones premium (badge com gradiente dourado, glifo navy) */
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #e8c98a);
  box-shadow: 0 6px 16px rgba(199,155,84,.3);
}
.ci-icon svg { stroke: var(--navy-deep); }
.ci-icon.ci-wa { background: linear-gradient(135deg, #25d366, #1aa84e); box-shadow: 0 6px 16px rgba(37,211,102,.3); }
.ci-icon.ci-wa svg { fill: #fff; stroke: none; }
.ci-icon.ci-insta { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); box-shadow: 0 6px 16px rgba(220,39,67,.3); }
.ci-icon.ci-insta svg { stroke: #fff; }

/* ============================================================
   Ajuste tipográfico — Cormorant Garamond (títulos)
   ============================================================ */
h1, h2, h3, .brand-name, .footer .slogan { font-weight: 600; }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); line-height: 1.06; }
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3rem); }
.about-grid h2 { font-size: clamp(2.2rem, 4.2vw, 3.1rem); }
.contact h2 { font-size: clamp(2rem, 3.6vw, 2.6rem); }
.about-card h3, .cf-head h3, .featured-body h3, .panel h2 { font-size: 1.6rem; }
.card-title { font-family: var(--font); } /* mantém o título do card em sans (legibilidade) */

/* ============================================================
   Faixa de números (prova social) — premium
   ============================================================ */
.stats {
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  border-bottom: 1px solid var(--border); padding: 58px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { position: relative; padding: 4px 10px; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px;
  background: linear-gradient(transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.stat b {
  display: block; font-family: var(--serif); font-weight: 600; line-height: 1;
  font-size: clamp(2.8rem, 4.6vw, 4rem); color: var(--gold);
}
.stat span { display: block; margin-top: 10px; color: var(--navy); font-weight: 500; font-size: 14.5px; letter-spacing: .3px; }
.stat-ico { display: inline-grid; place-items: center; height: clamp(2.8rem, 4.6vw, 4rem); }
.stat-ico svg { width: 46px; height: 46px; stroke: var(--gold); fill: none; stroke-width: 1.6; }

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 12px; }
  .stat:nth-child(3)::before, .stat:nth-child(odd)::before { display: none; }
}
.site-header.scrolled { background: #fff; border-bottom-color: var(--border); box-shadow: 0 6px 24px rgba(22,36,63,.09); }
.site-header:not(.scrolled) .nav-link { color: #fff; }
.site-header:not(.scrolled) .nav-link::after { background: #fff; }
.site-header:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,.12); }
.site-header:not(.scrolled) .nav-toggle { color: #fff; }
.site-header:not(.scrolled) .nav .btn-primary {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.45); color: #fff; backdrop-filter: blur(4px);
}
.site-header:not(.scrolled) .nav .btn-primary:hover { background: rgba(255,255,255,.22); }

/* Logo: claro sobre o hero, escuro quando a navbar fica branca */
.brand-logo-light { display: none; }
.site-header:not(.scrolled) .brand .brand-logo-light { display: block; }
.site-header:not(.scrolled) .brand.has-light .brand-logo-dark { display: none; }

/* Barra de busca (pílula) */
.hero-search {
  display: flex; align-items: center; gap: 0;
  background: rgba(13,24,48,.6); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 16px;
  padding: 8px; max-width: 860px; margin-left: auto; margin-right: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}
.hero-search .field { flex: 0 0 auto; gap: 0; padding: 0 4px; }
.hero-search .field-grow { flex: 1 1 auto; }
.hero-search .field label { display: none; }
.hero-search .input, .hero-search .select {
  background: transparent; border: none; color: #fff; height: 50px; min-width: 130px;
}
.hero-search .field-grow .input { width: 100%; min-width: 170px; }
.hero-search .input::placeholder { color: rgba(255,255,255,.65); }
.hero-search .input:focus, .hero-search .select:focus { outline: none; box-shadow: none; }
.hero-search .select {
  -webkit-appearance: none; appearance: none; padding-right: 30px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center; background-size: 15px;
}
.hero-search .select option { color: #1c2536; }
.hero-search .field + .field { border-left: 1px solid rgba(255,255,255,.14); }
.hero-search .btn-gold { height: 50px; padding: 0 32px; border-radius: 12px; margin-left: 6px; flex-shrink: 0; }

/* Link delicado abaixo da busca */
.hero-link {
  display: inline-block; margin-top: 24px; color: #fff; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 2px; transition: opacity .2s;
}
.hero-link:hover { opacity: .8; }

@media (max-width: 760px) {
  .hero { min-height: 92vh; padding: 110px 0 60px; }
  .hero-search { flex-direction: column; align-items: stretch; gap: 6px; padding: 12px; border-radius: 18px; }
  .hero-search .field + .field { border-left: none; }
  .hero-search .field { padding: 4px 8px; }
  .hero-search .input, .hero-search .select { min-width: 0; width: 100%; }
  .hero-search .btn-gold { width: 100%; margin: 6px 0 0; }
}
