/* ═══════════════════════════════════════════════════════════════
   MODELO 1 · ARQUITETURAL — Sistema de design
   Identidade: minimalismo arquitetural, neutros frios, linhas
   finas (hairlines), cantos discretos e muito respiro. A cor da
   marca (--brand, definida no base.html a partir de site.cor)
   entra como acento preciso sobre uma base monocromática.
   Display: Space Grotesk · Texto: Inter
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Neutros frios */
    --ink: #0e1116;
    --ink-2: #171b22;
    --slate: #2b323d;
    --gray: #545c6b;
    --muted: #7b8494;
    --faint: #aab2bf;
    --line: #e5e8ec;
    --line-soft: #eef0f3;
    --mist: #f4f6f8;
    --paper: #fafbfc;
    --white: #ffffff;

    /* Aliases semânticos */
    --text-dark: var(--ink);
    --text-main: var(--gray);
    --text-light: var(--muted);
    --bg-body: var(--white);
    --bg-card: var(--white);
    --border: var(--line);

    --shadow-xs: 0 1px 2px rgba(14,17,22,.04);
    --shadow-sm: 0 4px 14px -8px rgba(14,17,22,.18);
    --shadow: 0 18px 44px -28px rgba(14,17,22,.30);
    --shadow-lg: 0 40px 90px -45px rgba(14,17,22,.42);
    --shadow-brand: 0 16px 40px -18px rgba(var(--brand-rgb),.5);

    --r-xs: 4px;
    --r: 6px;
    --r-lg: 12px;
    --r-xl: 20px;

    --ease: cubic-bezier(.22,.61,.36,1);
    --container: 1280px;
    --header-h: 84px;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* compat herdado */
    --radius: var(--r); --radius-lg: var(--r-lg);
    --bg-soft: var(--mist); --border-light: var(--line-soft); --text-muted: var(--faint);
}

/* ── Reset / base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--bg-body);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--brand); color: #fff; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 880px; }

/* ── Eyebrow / rótulo ── */
.eyebrow {
    display: inline-flex; align-items: center; gap: .7rem;
    font-family: var(--font-display);
    font-size: .76rem; font-weight: 600; letter-spacing: .18em;
    text-transform: uppercase; color: var(--brand);
}
.eyebrow::before {
    content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6;
}
.eyebrow--center { justify-content: center; }

/* ── Seções ── */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #fff; }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.section-head--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; color: var(--ink);
    margin-top: 1rem; letter-spacing: -0.03em;
}
.section-title em { font-style: normal; color: var(--brand); }
.section-sub { color: var(--text-light); font-size: 1.05rem; margin-top: 1.1rem; max-width: 60ch; }

/* ── Botões ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    font-family: var(--font-display); font-weight: 500; font-size: .95rem;
    padding: .85rem 1.6rem; border-radius: var(--r);
    transition: all .3s var(--ease); white-space: nowrap; cursor: pointer;
    border: 1px solid transparent;
}
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 22px 48px -18px rgba(var(--brand-rgb),.62); filter: saturate(1.05); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--ink); color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-ghost {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-display); font-weight: 500; font-size: .9rem; color: var(--ink);
}
.btn-ghost i { transition: transform .3s var(--ease); color: var(--brand); }
.btn-ghost:hover { color: var(--brand); }
.btn-ghost:hover i { transform: translateX(4px); }

/* ── Badges ── */
.badge {
    display: inline-flex; align-items: center; gap: .4rem;
    font-family: var(--font-display); font-size: .72rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .42rem .8rem; border-radius: var(--r-xs);
}
.badge--accent { background: var(--brand); color: #fff; }
.badge--glass { background: rgba(14,17,22,.55); color: #fff; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

/* ═══ HEADER ═══ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    display: flex; align-items: center;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid var(--line);
    transition: background .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease);
}
.site-header.scrolled { height: 70px; box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; gap: 2rem; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { max-height: 46px; width: auto; transition: max-height .35s var(--ease); }
.site-header.scrolled .brand img { max-height: 40px; }
.brand-text, .footer-wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); letter-spacing: -0.02em; }
.footer-wordmark { color: #fff; }
.logo-scrolled { display: none; }
.site-header.scrolled .logo-default { display: none; }
.site-header.scrolled .logo-scrolled { display: block; }

/* Header transparente sobre o hero (home) */
.has-hero .site-header:not(.scrolled) {
    background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
}
.has-hero .site-header:not(.scrolled) .nav > a,
.has-hero .site-header:not(.scrolled) .nav-dropdown__label { color: #fff; }
.has-hero .site-header:not(.scrolled) .brand-text { color: #fff; }
.has-hero .site-header:not(.scrolled) .menu-toggle span { background: #fff; }
.has-hero .site-header:not(.scrolled) .nav-cta { color: #fff; border-color: rgba(255,255,255,.4); }
.has-hero .site-header:not(.scrolled) .logo-auto-dark { filter: brightness(0) invert(1); }

/* Nav */
.nav { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav > a, .nav-dropdown__label {
    display: inline-flex; align-items: center; gap: .4rem;
    font-family: var(--font-display); font-size: .92rem; font-weight: 500; color: var(--slate);
    padding: .6rem .9rem; border-radius: var(--r); position: relative; cursor: pointer;
}
.nav > a::after, .nav-dropdown__label::after {
    content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .35rem; height: 1.5px;
    background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav > a:hover, .nav-dropdown__label:hover { color: var(--brand); }
.nav > a:hover::after, .nav > a.active::after { transform: scaleX(1); }
.nav > a.active { color: var(--ink); }
.has-hero .site-header:not(.scrolled) .nav > a.active { color: #fff; }

.nav-dropdown { position: relative; }
.nav-dropdown__caret { font-size: .65rem; transition: transform .3s var(--ease); }
.nav-dropdown:hover .nav-dropdown__caret { transform: rotate(180deg); }
.nav-submenu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
    box-shadow: var(--shadow); padding: .5rem; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all .28s var(--ease); z-index: 50;
}
.nav-dropdown:hover .nav-submenu { opacity: 1; visibility: visible; transform: translateY(8px); }
.nav-submenu a { display: block; padding: .6rem .85rem; border-radius: var(--r); font-size: .9rem; color: var(--slate); font-family: var(--font-display); }
.nav-submenu a:hover { background: var(--mist); color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: 1rem; flex: none; }
.nav-cta {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--font-display); font-weight: 500; font-size: .9rem; color: var(--ink);
    padding: .6rem 1.05rem; border: 1px solid var(--line); border-radius: var(--r);
    transition: all .3s var(--ease);
}
.nav-cta i { color: #25d366; }
.nav-cta:hover { border-color: var(--brand); color: var(--brand); }
.nav-cta-mobile { display: none; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s var(--ease); }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-close { display: none; }

/* ═══ HERO ═══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; padding: calc(var(--header-h) + 3rem) 0 3rem; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-layer { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .9s var(--ease); }
.hero__bg-layer.is-active { opacity: 1; }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(14,17,22,.55) 0%, rgba(14,17,22,.40) 45%, rgba(14,17,22,.82) 100%);
}
.hero--no-filtro::after { background: linear-gradient(180deg, rgba(14,17,22,.15), rgba(14,17,22,.45)); }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__inner { max-width: 760px; }
.hero-textfade { transition: opacity .32s var(--ease); }
.hero-textfade.is-changing { opacity: 0; }
.hero__title {
    font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 600; color: #fff; line-height: 1.05;
    letter-spacing: -0.035em; text-wrap: balance;
}
.hero__title em { font-style: normal; color: #fff; }
.hero__title .u { position: relative; white-space: nowrap; }
.hero__title .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em; background: var(--brand); opacity: .9; z-index: -1; }
.hero__sub { font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,.86); margin-top: 1.5rem; max-width: 56ch; }
.hero__actions { display: flex; gap: 1rem; margin-top: 2.3rem; flex-wrap: wrap; }

.hero-slider-nav { display: flex; align-items: center; gap: .8rem; margin-top: 2.5rem; }
.hero-slider-arrow {
    width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,.4); color: #fff; transition: all .3s var(--ease);
}
.hero-slider-arrow:hover { background: #fff; color: var(--ink); }
.hero-dots { display: flex; gap: .5rem; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.4); transition: all .3s var(--ease); cursor: pointer; }
.hero-dot.is-active { background: #fff; width: 26px; border-radius: 6px; }

/* Busca rápida */
.searchbar {
    margin-top: 3rem; background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
    border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
    display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 0;
    overflow: hidden; max-width: 920px;
}
.searchbar__field { padding: 1rem 1.3rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: .3rem; }
.searchbar__field label { font-family: var(--font-display); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.searchbar__field select, .searchbar__field input { border: none; background: transparent; font-size: .98rem; color: var(--ink); font-weight: 500; outline: none; width: 100%; }
.searchbar__field select { cursor: pointer; }
.searchbar__submit {
    background: var(--brand); color: #fff; padding: 0 2rem; display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-display); font-weight: 500; font-size: .98rem; transition: filter .3s;
}
.searchbar__submit:hover { filter: brightness(1.08); }

/* ═══ CARDS DE IMÓVEL ═══ */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.prop-card {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg);
    overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(var(--brand-rgb),.35); }
.prop-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.prop-card__media img { width: 100%; height: 100%; object-fit: cover; }
.prop-card__badge { position: absolute; top: 1rem; left: 1rem; z-index: 3; }
.lcmt-flag { position: absolute; top: 1rem; left: 1rem; z-index: 4; display: inline-flex; align-items: center; gap: .4rem; color: #fff; font-family: var(--font-display); font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: .42rem .8rem; border-radius: var(--r-xs); }
.prop-card__body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.prop-card__title { font-size: 1.18rem; font-weight: 600; line-height: 1.3; }
.prop-card__title a { color: var(--ink); }
.prop-card:hover .prop-card__title a { color: var(--brand); }
.prop-card__loc { color: var(--text-light); font-size: .88rem; margin-top: .45rem; display: flex; align-items: center; gap: .4rem; }
.prop-card__loc i { color: var(--brand); }
.prop-card__specs { display: flex; flex-wrap: wrap; gap: .4rem .9rem; margin: 1rem 0; padding: 1rem 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.spec { display: inline-flex; align-items: center; gap: .45rem; font-size: .84rem; color: var(--slate); }
.spec i { color: var(--muted); }
.prop-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; }
.price__label { display: block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; font-family: var(--font-display); }
.price__value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }

/* ═══ SOBRE / BENEFÍCIOS (grid imagem + texto) ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--r-lg); position: relative; z-index: 2; aspect-ratio: 4/5; object-fit: cover; }
.about-media__frame { position: absolute; inset: -18px -18px 18px 18px; border: 1px solid var(--brand); border-radius: var(--r-lg); z-index: 1; opacity: .5; }
.about-badge { position: absolute; right: -14px; bottom: 28px; z-index: 3; background: var(--ink); color: #fff; padding: 1.2rem 1.5rem; border-radius: var(--r-lg); max-width: 200px; box-shadow: var(--shadow-lg); }
.about-badge b { font-family: var(--font-display); font-size: 2rem; font-weight: 600; display: block; color: #fff; line-height: 1; }
.about-badge span { font-size: .82rem; color: rgba(255,255,255,.72); margin-top: .35rem; display: block; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin: 1.8rem 0 2rem; }
.about-feature { display: flex; align-items: center; gap: .7rem; color: var(--slate); font-weight: 500; }
.about-feature .ico { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(var(--brand-rgb),.12); color: var(--brand); font-size: .7rem; flex: none; }
.btn-line i { transition: transform .3s var(--ease); }
.btn-line:hover i { transform: translateX(4px); }

/* ═══ DEPOIMENTOS ═══ */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.quote { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.2rem 2rem; position: relative; }
.quote__mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: rgba(var(--brand-rgb),.18); height: 2rem; }
.quote__stars { color: #f5a623; display: flex; gap: .2rem; font-size: .82rem; margin-bottom: 1rem; }
.quote__text { color: var(--slate); font-size: 1rem; line-height: 1.7; font-style: normal; }
.quote__author { display: flex; align-items: center; gap: .9rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); }
.quote__avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex: none; }
.quote__avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote__name { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .96rem; }
.quote__role { font-size: .82rem; color: var(--text-light); }

/* ═══ BLOG / POSTS ═══ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.post { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(var(--brand-rgb),.35); }
.post__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--mist); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__date { position: absolute; bottom: 1rem; left: 1rem; }
.post__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post__title { font-size: 1.18rem; line-height: 1.3; }
.post__title a { color: var(--ink); }
.post:hover .post__title a { color: var(--brand); }
.post__excerpt { color: var(--text-light); font-size: .92rem; margin: .7rem 0 1.2rem; flex: 1; }

/* ═══ BAIRROS / REGIÕES ═══ */
.hood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.hood { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; display: block; }
.hood img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.hood:hover img { transform: scale(1.07); }
.hood::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(14,17,22,.85)); }
.hood__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem; z-index: 2; color: #fff; }
.hood__name { font-family: var(--font-display); font-size: 1.2rem; color: #fff; }
.hood__count { font-size: .82rem; color: rgba(255,255,255,.78); }
.hood__link { display: flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-size: .82rem; font-weight: 500; margin-top: .7rem; opacity: 0; transform: translateY(8px); transition: all .35s var(--ease); }
.hood:hover .hood__link { opacity: 1; transform: translateY(0); }

/* ═══ CTA ═══ */
.cta { position: relative; padding: clamp(4.5rem, 9vw, 7rem) 0; background: var(--ink); color: #fff; text-align: center; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(1100px 500px at 50% -20%, rgba(var(--brand-rgb),.35), transparent 60%); }
.cta .container { position: relative; z-index: 2; max-width: 760px; }
.cta__title { font-size: clamp(2rem, 4.5vw, 3.3rem); color: #fff; margin-top: 1.2rem; }
.cta__title em { font-style: normal; color: #fff; text-decoration: underline; text-decoration-color: var(--brand); text-underline-offset: 8px; text-decoration-thickness: 3px; }
.cta__sub { color: rgba(255,255,255,.78); font-size: 1.1rem; margin: 1.2rem auto 0; max-width: 56ch; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2.3rem; flex-wrap: wrap; }
.cta .eyebrow { color: rgba(255,255,255,.9); }

/* ═══ CONTATO (home + página) ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; margin: 2rem 0; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon { width: 50px; height: 50px; border-radius: var(--r-lg); display: grid; place-items: center; background: rgba(var(--brand-rgb),.1); color: var(--brand); font-size: 1.1rem; flex: none; }
.contact-info-item h5 { font-family: var(--font-display); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .15rem; }
.contact-info-item p { color: var(--ink); font-weight: 500; }
.contact-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 1.5rem; }
.contact-map #contact-map { height: 240px; width: 100%; }

.form-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); }
.form-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .45rem; }
.field input, .field select, .field textarea {
    width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--r);
    background: var(--paper); color: var(--ink); font-size: .96rem; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),.12); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.field-check { display: flex; align-items: flex-start; gap: .6rem; }
.field-check input { width: auto; margin-top: .25rem; accent-color: var(--brand); }
.field-check label { text-transform: none; letter-spacing: 0; font-family: var(--font-body); color: var(--text-light); font-size: .85rem; font-weight: 400; }
.field-check a { color: var(--brand); font-weight: 600; text-decoration: underline; }

/* ═══ PAGE HERO (topo das páginas internas) ═══ */
.page-hero { position: relative; padding: calc(var(--header-h) + 4.5rem) 0 3.5rem; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,17,22,.55), rgba(14,17,22,.8)); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero__eyebrow { color: #fff; }
.page-hero__title { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; margin-top: 1rem; }
.page-hero__title em { font-style: normal; color: #fff; text-decoration: underline; text-decoration-color: var(--brand); text-underline-offset: 8px; text-decoration-thickness: 3px; }
.breadcrumb-lux { display: flex; align-items: center; gap: .7rem; margin-top: 1.4rem; font-family: var(--font-display); font-size: .85rem; color: rgba(255,255,255,.7); }
.breadcrumb-lux a:hover { color: #fff; }
.breadcrumb-lux i { font-size: .6rem; opacity: .6; }
.breadcrumb-lux span { color: #fff; }

/* ═══ LISTAGEM + FILTROS ═══ */
.listing { padding: clamp(3rem, 6vw, 5rem) 0; }
.listing-layout { display: grid; grid-template-columns: 320px 1fr; gap: 2.5rem; align-items: start; }
.filters { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; position: sticky; top: calc(var(--header-h) + 12px); }
.filters__title { display: flex; align-items: center; gap: .6rem; font-size: 1.15rem; margin-bottom: 1.4rem; }
.filters__title i { color: var(--brand); font-size: .95rem; }
.filters .field input, .filters .field select { background: var(--paper); }
.filters__actions { margin-top: 1.6rem; }
.listing-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.listing-bar__count { color: var(--text-light); font-size: .92rem; }
.listing-bar__count b { color: var(--ink); font-family: var(--font-display); }
.listing-bar__sort { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.listing-bar__sort span { font-size: .85rem; color: var(--muted); }
.listing-bar__sort select { padding: .55rem .9rem; border: 1px solid var(--line); border-radius: var(--r); background: #fff; color: var(--ink); font-size: .9rem; cursor: pointer; }
.listing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.filters-toggle { display: none; }

/* ═══ EMPTY STATE ═══ */
.empty-state { text-align: center; padding: 4rem 1.5rem; }
.empty-state i { font-size: 2.6rem; color: var(--faint); margin-bottom: 1.1rem; }
.empty-state h3 { font-size: 1.3rem; color: var(--ink); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-lg); margin-bottom: .9rem; overflow: hidden; background: #fff; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: rgba(var(--brand-rgb),.4); box-shadow: var(--shadow-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding: 1.3rem 1.5rem; font-family: var(--font-display); font-weight: 500; font-size: 1.04rem; color: var(--ink); }
.faq-ico { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); color: var(--brand); flex: none; transition: all .3s var(--ease); }
.faq-item.open .faq-ico { background: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a__inner { padding: 0 1.5rem 1.4rem; color: var(--text-main); line-height: 1.7; }

/* ═══ PROSE (rich-text) ═══ */
.prose { color: var(--text-main); line-height: 1.8; font-size: 1.04rem; }
.prose p { margin-bottom: 1.2rem; }
.prose h2, .prose h3, .prose h4 { color: var(--ink); margin: 2rem 0 1rem; }
.prose a { color: var(--brand); text-decoration: underline; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; }
.prose ul li { list-style: disc; margin-bottom: .5rem; }
.prose ol li { list-style: decimal; margin-bottom: .5rem; }
.prose img { border-radius: var(--r-lg); margin: 1.5rem 0; }
.prose blockquote { border-left: 3px solid var(--brand); padding-left: 1.2rem; color: var(--slate); font-style: italic; margin: 1.5rem 0; }

/* ═══ PAGER ═══ */
.pager { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 3rem; }
.pager a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--r); font-family: var(--font-display); font-weight: 500; color: var(--slate); transition: all .3s var(--ease); }
.pager a:hover, .pager a.current { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand img { max-height: 46px; }
.footer-brand p { margin: 1.2rem 0 1.5rem; font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); color: rgba(255,255,255,.8); transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.footer-col h5 { font-family: var(--font-display); color: #fff; font-size: .95rem; margin-bottom: 1.3rem; letter-spacing: .02em; }
.footer-col ul li { margin-bottom: .75rem; }
.footer-col ul li a, .footer-col ul li { font-size: .92rem; color: rgba(255,255,255,.62); display: inline-flex; align-items: center; gap: .55rem; }
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li i { color: var(--brand); font-size: .82rem; width: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: #fff; }

/* ═══ COOKIE BANNER ═══ */
.cookie-banner { position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 9000; max-width: 1000px; margin: 0 auto; background: var(--ink); color: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.cookie-inner { display: flex; align-items: center; gap: 1.5rem; padding: 1.1rem 1.6rem; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 260px; font-size: .88rem; color: rgba(255,255,255,.82); }
.cookie-text a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; }
.cookie-btn { padding: .6rem 1.1rem; border-radius: var(--r); font-family: var(--font-display); font-weight: 500; font-size: .85rem; white-space: nowrap; }
.cookie-btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; }
.cookie-btn--solid { background: var(--brand); color: #fff; }

/* ═══ SCROLL TOP ═══ */
.scroll-top-btn { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); z-index: 800; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .35s var(--ease); }
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-3px); }

/* ═══ REVEAL ═══ */
.reveal .animate-up, .reveal.animate-up, .reveal .animate-left, .reveal.animate-left, .reveal .animate-right, .reveal.animate-right { opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.animate-up { transform: translateY(28px); }
.animate-left { transform: translateX(-28px); }
.animate-right { transform: translateX(28px); }
.reveal.is-visible .animate-up, .reveal.is-visible.animate-up,
.reveal.is-visible .animate-left, .reveal.is-visible.animate-left,
.reveal.is-visible .animate-right, .reveal.is-visible.animate-right { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; } .delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; } .delay-5 { transition-delay: .40s; } .delay-6 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .reveal *, .reveal { transition: none !important; opacity: 1 !important; transform: none !important; } }

/* ═══ RESPONSIVO ═══ */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hood-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    .nav {
        position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px);
        background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
        gap: 0; padding: 5rem 1.5rem 2rem; box-shadow: -20px 0 60px -30px rgba(0,0,0,.4);
        transform: translateX(100%); transition: transform .4s var(--ease); margin-left: 0; overflow-y: auto; z-index: 1100;
    }
    .nav.open { transform: translateX(0); }
    .nav > a, .nav-dropdown__label { color: var(--ink); padding: .9rem .4rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; font-size: 1rem; }
    .nav > a::after, .nav-dropdown__label::after { display: none; }
    .nav-dropdown { width: 100%; }
    .nav-submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 .5rem 1rem; min-width: 0; }
    .nav-close { display: grid; place-items: center; position: absolute; top: 1.2rem; right: 1.2rem; width: 40px; height: 40px; border-radius: 50%; background: var(--mist); color: var(--ink); font-size: 1.1rem; }
    .nav-cta-mobile { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 1.5rem; padding: .9rem; background: #25d366; color: #fff; border-radius: var(--r); font-family: var(--font-display); font-weight: 500; }
    .nav-cta span { display: none; }
    .nav-cta { padding: .6rem .8rem; }
    .has-hero .site-header:not(.scrolled) .nav > a { color: var(--ink); }

    .prop-grid, .post-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-media { max-width: 460px; }
    .listing-layout { grid-template-columns: 1fr; }
    .filters {
        position: fixed; top: 0; right: 0; bottom: 0; width: min(90vw, 380px); z-index: 1100;
        border-radius: 0; overflow-y: auto; transform: translateX(100%); transition: transform .4s var(--ease);
    }
    .filters.open { transform: translateX(0); }
    .filters-toggle { display: inline-flex; }
    .listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .container { padding: 0 20px; }
    .searchbar { grid-template-columns: 1fr; max-width: 460px; }
    .searchbar__field { border-right: none; border-bottom: 1px solid var(--line); }
    .searchbar__submit { padding: 1.1rem; justify-content: center; }
    .hero { min-height: auto; padding: calc(var(--header-h) + 2.5rem) 0 3rem; }
    .prop-grid, .post-grid, .quote-grid, .hood-grid, .listing-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .section-head--split { flex-direction: column; align-items: flex-start; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .about-badge { right: 12px; }
}
