/* ==========================================================================
   AmzImóveis — Design System
   Paleta extraída da marca: azul-marinho, verde-floresta e prata
   ========================================================================== */

:root {
    --navy-900: #0a1c2b;
    --navy-800: #0f2637;
    --navy-700: #14324a;
    --navy-600: #1a3a52;
    --navy-500: #245b80;
    --navy-400: #3c81ad;
    --navy-100: #e7eef4;

    --green-700: #2c4f20;
    --green-600: #3d6b2b;
    --green-500: #4d8536;
    --green-100: #e8f1e2;

    --steel-600: #5b6f80;
    --steel-500: #7a8b99;
    --steel-300: #b8c4ce;
    --steel-100: #e4e9ee;

    --amber-500: #c98a1e;
    --amber-100: #fbf1de;

    --bg: #f4f7f9;
    --surface: #ffffff;
    --surface-2: #fbfcfd;
    --ink: #17232e;
    --ink-soft: #4d5f6d;
    --ink-mute: #7b8b98;
    --line: #e3e9ee;

    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --shadow-xs: 0 1px 2px rgba(16, 38, 55, .06);
    --shadow-sm: 0 2px 8px rgba(16, 38, 55, .07);
    --shadow: 0 10px 30px rgba(16, 38, 55, .10);
    --shadow-lg: 0 22px 60px rgba(16, 38, 55, .18);

    --ease: cubic-bezier(.22, .61, .36, 1);
    --nav-h: 72px;

    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 12px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; letter-spacing: -.02em; color: var(--navy-700); }
h1 { font-size: clamp(2rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }

::selection { background: var(--navy-500); color: #fff; }

:focus-visible {
    outline: 2px solid var(--navy-400);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ------------------------------- Layout -------------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: clamp(48px, 7vw, 88px) 0; }
.section--tight { padding: clamp(34px, 4.5vw, 56px) 0; }
.section--dark { background: linear-gradient(160deg, var(--navy-800), var(--navy-600) 55%, var(--navy-700)); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--soft { background: var(--surface); }

.section-head { max-width: 640px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; margin-top: 10px; }
.section--dark .section-head p { color: rgba(255, 255, 255, .76); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-600);
    background: var(--green-100);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section--dark .eyebrow { color: #cfe3c2; background: rgba(255, 255, 255, .12); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* -------------------------------- Icons -------------------------------- */
.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -.125em;
    fill: currentColor;
    flex: none;
}

/* ------------------------------- Buttons ------------------------------- */
.btn {
    --btn-bg: var(--navy-600);
    --btn-fg: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    box-shadow: var(--shadow-xs);
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .icon { font-size: 1.05em; }

.btn--primary { --btn-bg: linear-gradient(135deg, var(--navy-600), var(--navy-500)); }
.btn--green { --btn-bg: linear-gradient(135deg, var(--green-600), var(--green-500)); }
.btn--wa { --btn-bg: linear-gradient(135deg, #1faa54, #25d366); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--navy-700); }
.btn--outline {
    --btn-bg: transparent;
    --btn-fg: var(--navy-700);
    box-shadow: inset 0 0 0 1.5px var(--steel-300);
}
.btn--outline:hover { --btn-bg: var(--navy-600); --btn-fg: #fff; box-shadow: var(--shadow); }
.btn--ghost-light {
    --btn-bg: rgba(255, 255, 255, .1);
    --btn-fg: #fff;
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .45);
    backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { --btn-bg: #fff; --btn-fg: var(--navy-700); }
.btn--sm { padding: 10px 18px; font-size: .87rem; }
.btn--block { width: 100%; }

.icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--surface);
    color: var(--navy-600);
    box-shadow: var(--shadow-sm);
    transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.icon-btn:hover { transform: translateY(-2px); background: var(--navy-600); color: #fff; }

/* -------------------------------- Badges ------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .02em;
    background: var(--steel-100);
    color: var(--steel-600);
    white-space: nowrap;
}
.badge--destaque { background: linear-gradient(135deg, var(--green-600), var(--green-500)); color: #fff; }
.badge--novo { background: linear-gradient(135deg, var(--navy-600), var(--navy-500)); color: #fff; }
.badge--oportunidade { background: linear-gradient(135deg, #b57614, var(--amber-500)); color: #fff; }
.badge--op { background: #fff; color: var(--navy-700); box-shadow: var(--shadow-xs); }
.badge--glass { background: rgba(10, 28, 43, .58); color: #fff; backdrop-filter: blur(8px); }

/* ------------------------------- Navbar -------------------------------- */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 90;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav--floating { background: linear-gradient(to bottom, rgba(10, 28, 43, .55), transparent); }
.nav--floating .nav-link, .nav--floating .brand-name { color: #fff; }
.nav--floating .hamburger span { background: #fff; }
.nav.is-stuck {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 6px 30px rgba(16, 38, 55, .10);
}
.nav.is-stuck .nav-link, .nav.is-stuck .brand-name { color: var(--navy-700); }
.nav.is-stuck .hamburger span { background: var(--navy-700); }
.nav--solid {
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 4px 24px rgba(16, 38, 55, .08);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; transition: transform .3s var(--ease), background .3s var(--ease); }
.brand:hover img { transform: scale(1.06) rotate(-2deg); }
/* sobre fundo escuro o logo recebe um fundo claro para não desaparecer */
.nav--floating .brand img {
    background: rgba(255, 255, 255, .94);
    border-radius: 12px;
    padding: 3px 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
}
.nav.is-stuck .brand img { background: transparent; box-shadow: none; padding: 0; }
.footer .brand img { background: rgba(255, 255, 255, .94); border-radius: 10px; padding: 3px 6px; }
.brand-name { font-weight: 700; font-size: 1.22rem; letter-spacing: -.02em; color: var(--navy-700); }
.brand-name span { color: var(--green-600); }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
    position: relative;
    padding: 9px 14px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--navy-700);
    border-radius: var(--radius-full);
    transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--green-500);
    transform: translateX(-50%);
    transition: width .28s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { width: 28px; }
.nav__cta { margin-left: 8px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: 12px;
}
.hamburger span {
    width: 24px;
    height: 2.5px;
    border-radius: 3px;
    background: var(--navy-700);
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s var(--ease), padding .3s var(--ease);
    z-index: 89;
}
.nav__mobile.is-open { max-height: 78vh; padding: 14px 24px 22px; overflow-y: auto; }
.nav__mobile a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--navy-700);
    transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__mobile a:hover { background: var(--navy-100); }
.nav__mobile a.is-cta { background: var(--navy-600); color: #fff; justify-content: center; margin-top: 8px; }

/* --------------------------------- Hero -------------------------------- */
.hero {
    position: relative;
    min-height: min(92vh, 820px);
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 56px) 0 96px;
    overflow: hidden;
    isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroFade 24s infinite;
    will-change: opacity, transform;
}
.hero__bg img:nth-child(1) { animation-delay: 0s; }
.hero__bg img:nth-child(2) { animation-delay: 6s; }
.hero__bg img:nth-child(3) { animation-delay: 12s; }
.hero__bg img:nth-child(4) { animation-delay: 18s; }

@keyframes heroFade {
    0%   { opacity: 0; transform: scale(1.02); }
    4%   { opacity: 1; }
    25%  { opacity: 1; transform: scale(1.12); }
    29%  { opacity: 0; transform: scale(1.12); }
    100% { opacity: 0; transform: scale(1.02); }
}

.hero__veil {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(1100px 520px at 12% 18%, rgba(26, 58, 82, .55), transparent 70%),
        linear-gradient(115deg, rgba(10, 28, 43, .93) 0%, rgba(20, 50, 74, .80) 45%, rgba(20, 50, 74, .42) 100%);
}

.hero__content { color: #fff; max-width: 660px; }
.hero h1 { color: #fff; text-shadow: 0 4px 30px rgba(0, 0, 0, .3); }
.hero h1 em { font-style: normal; color: #a8d18b; }
.hero__lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: rgba(255, 255, 255, .86); margin: 18px 0 28px; max-width: 55ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}
.hero__stats strong { display: block; font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.1; }
.hero__stats span { font-size: .82rem; color: rgba(255, 255, 255, .7); }

/* --------------------------- Quick search card -------------------------- */
.quick-search {
    position: relative;
    margin-top: -68px;
    z-index: 5;
}
.quick-search__card {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}
.quick-search__card .field { margin: 0; }

/* -------------------------------- Fields -------------------------------- */
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field > label {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.input, .select, textarea.input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font-size: .94rem;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.input::placeholder { color: var(--steel-300); }
.input:hover, .select:hover { border-color: var(--steel-300); }
.input:focus, .select:focus, textarea.input:focus {
    outline: none;
    border-color: var(--navy-400);
    box-shadow: 0 0 0 4px rgba(60, 129, 173, .14);
}
textarea.input { resize: vertical; min-height: 120px; }

.select {
    appearance: none;
    padding-right: 38px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8b98' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

.input-group { position: relative; }
.input-group .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--steel-500);
    font-size: 1.05rem;
    pointer-events: none;
}
.input-group .input { padding-left: 42px; }
.input-group__clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--steel-500);
    background: var(--steel-100);
}
.input-group__clear.is-visible { display: flex; }
.input-group__clear:hover { background: var(--navy-600); color: #fff; }

/* -------------------------------- Chips --------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    background: var(--surface);
    border: 1.5px solid var(--line);
    color: var(--ink-soft);
    font-size: .87rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .22s var(--ease);
    user-select: none;
}
.chip:hover { border-color: var(--navy-400); color: var(--navy-600); transform: translateY(-1px); }
.chip.is-active {
    background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(26, 58, 82, .26);
}
.chip.is-active.chip--green { background: linear-gradient(135deg, var(--green-600), var(--green-500)); box-shadow: 0 6px 18px rgba(61, 107, 43, .28); }
.chip__count { font-size: .74rem; opacity: .7; }

.chip--filter {
    background: var(--navy-100);
    border-color: transparent;
    color: var(--navy-700);
    font-size: .82rem;
    padding: 7px 8px 7px 14px;
}
.chip--filter button {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 58, 82, .12);
    color: var(--navy-700);
    font-size: .7rem;
}
.chip--filter button:hover { background: var(--navy-600); color: #fff; }

/* ----------------------------- Filter bar ------------------------------- */
.filterbar {
    position: sticky;
    top: var(--nav-h);
    z-index: 40;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(16px) saturate(150%);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    transition: box-shadow .3s var(--ease);
}
.filterbar.is-stuck { box-shadow: 0 10px 30px rgba(16, 38, 55, .09); }

.filterbar__row {
    display: grid;
    grid-template-columns: minmax(220px, 1.8fr) minmax(150px, .9fr) auto;
    gap: 12px;
    align-items: center;
}
.filterbar__row + .filterbar__row { margin-top: 12px; }
.filterbar__actions { display: flex; gap: 10px; }
.filterbar__actions .filter-toggle { flex: 1 1 auto; justify-content: center; }
#favToggle.is-active {
    background: linear-gradient(135deg, #e2445c, #f0687d);
    border-color: transparent;
    color: #fff;
}

.filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--line);
    background: var(--surface);
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy-700);
    transition: all .22s var(--ease);
    white-space: nowrap;
}
.filter-toggle:hover { border-color: var(--navy-400); }
.filter-toggle .pill {
    min-width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: var(--radius-full);
    background: var(--green-600);
    color: #fff;
    font-size: .7rem;
}
.filter-toggle .pill.is-visible { display: inline-flex; }
.filter-toggle .chevron { transition: transform .3s var(--ease); }
.filter-toggle.is-open .chevron { transform: rotate(180deg); }

.advanced {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s var(--ease);
    overflow: hidden;
}
.advanced.is-open { grid-template-rows: 1fr; }
.advanced__inner { overflow: hidden; min-height: 0; }
.advanced__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px 18px;
    padding: 20px 0 6px;
}

.range-row { display: flex; align-items: center; gap: 8px; }
.range-row span { color: var(--steel-500); font-size: .85rem; }

.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 4px 0 20px;
}
.results-bar__count { font-size: .95rem; color: var(--ink-soft); }
.results-bar__count strong { color: var(--navy-700); font-size: 1.15rem; }
.results-bar__left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; flex: 1 1 240px; min-width: 0; }
.results-bar__tools { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; flex-wrap: nowrap; }

.viewtoggle { display: flex; gap: 4px; padding: 4px; background: var(--steel-100); border-radius: var(--radius-full); }
.viewtoggle button {
    width: 36px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--steel-600);
    transition: all .2s var(--ease);
}
.viewtoggle button.is-active { background: var(--surface); color: var(--navy-700); box-shadow: var(--shadow-xs); }

/* ----------------------------- Property card ---------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.cards--list { grid-template-columns: 1fr; gap: 18px; }

.pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    animation: cardIn .45s var(--ease) both;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

@keyframes cardIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.pcard__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--steel-100), #eef2f5);
    overflow: hidden;
}
.pcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease), opacity .4s var(--ease);
    opacity: 0;
}
.pcard__media img.is-loaded { opacity: 1; }
.pcard:hover .pcard__media img { transform: scale(1.07); }

.pcard__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steel-300);
    font-size: 3rem;
}

.pcard__tags { position: absolute; top: 14px; left: 14px; display: flex; gap: 7px; flex-wrap: wrap; max-width: calc(100% - 80px); }
.pcard__fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--steel-600);
    backdrop-filter: blur(6px);
    transition: all .22s var(--ease);
    z-index: 2;
}
.pcard__fav:hover { transform: scale(1.1); color: #e2445c; }
.pcard__fav.is-active { background: #e2445c; color: #fff; }

.pcard__photos {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    background: rgba(10, 28, 43, .62);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .74rem;
    font-weight: 500;
}

.pcard__body { display: flex; flex-direction: column; flex: 1; padding: 20px; gap: 12px; }
.pcard__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.pcard__price strong { font-size: 1.5rem; font-weight: 700; color: var(--navy-700); letter-spacing: -.03em; }
.pcard__price span { font-size: .82rem; color: var(--ink-mute); }
.pcard__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-700);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}
.pcard__loc {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .88rem;
    color: var(--ink-soft);
    min-width: 0;
}
.pcard__loc .icon { color: var(--green-600); }
.pcard__loc span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}
.spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: var(--radius-xs);
    background: var(--surface-2);
    border: 1px solid var(--line);
    font-size: .8rem;
    color: var(--ink-soft);
}
.spec .icon { color: var(--navy-500); font-size: .95rem; }

.pcard__foot { display: flex; gap: 10px; align-items: center; }
.pcard__foot .btn { flex: 1; }

/* list layout */
.cards--list .pcard { flex-direction: row; }
.cards--list .pcard__media { width: 340px; flex: none; aspect-ratio: auto; }
.cards--list .pcard__body { padding: 22px 24px; }

/* ------------------------------ Skeletons ------------------------------- */
.skeleton {
    position: relative;
    overflow: hidden;
    background: #e8edf1;
    border-radius: var(--radius-xs);
}
.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75), transparent);
    animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }

.sk-media { aspect-ratio: 4 / 3; border-radius: 0; }
.sk-line { height: 13px; border-radius: 7px; }
.sk-line--lg { height: 22px; width: 55%; }
.sk-line--md { width: 85%; }
.sk-line--sm { width: 45%; }

/* -------------------------------- States -------------------------------- */
.state {
    text-align: center;
    padding: 72px 24px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.state__icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy-100);
    color: var(--navy-500);
    font-size: 2rem;
}
.state h3 { margin-bottom: 8px; }
.state p { color: var(--ink-soft); margin-bottom: 22px; }

/* -------------------------------- Modal --------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    padding: 24px;
    overflow-y: auto;
    background: rgba(7, 18, 28, .72);
    backdrop-filter: blur(6px);
    animation: fadeIn .25s var(--ease);
}
.modal.is-open { display: block; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
    from { opacity: 0; transform: translateY(24px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__dialog {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: popIn .32s var(--ease);
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 6;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(10, 28, 43, .55);
    color: #fff;
    backdrop-filter: blur(8px);
    transition: all .25s var(--ease);
}
.modal__close:hover { background: #fff; color: var(--navy-700); transform: rotate(90deg); }

/* Gallery */
.gallery { position: relative; background: var(--navy-900); }
.gallery__stage {
    position: relative;
    aspect-ratio: 16 / 10;
    max-height: 62vh;
    overflow: hidden;
}
.gallery__stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--navy-900);
}
.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.1rem;
    transition: all .25s var(--ease);
}
.gallery__nav:hover { background: #fff; color: var(--navy-700); }
.gallery__nav--prev { left: 16px; }
.gallery__nav--next { right: 16px; }
.gallery__counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(10, 28, 43, .6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .8rem;
}
.gallery__thumbs {
    display: flex;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
    background: var(--navy-800);
    scrollbar-width: thin;
}
.gallery__thumbs img {
    width: 78px;
    height: 56px;
    flex: none;
    object-fit: cover;
    border-radius: var(--radius-xs);
    opacity: .5;
    cursor: pointer;
    transition: opacity .2s var(--ease), outline-color .2s var(--ease);
    outline: 2px solid transparent;
}
.gallery__thumbs img:hover { opacity: .85; }
.gallery__thumbs img.is-active { opacity: 1; outline-color: #a8d18b; }

.detail { padding: clamp(22px, 3vw, 38px); }
.detail__head { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: flex-start; }
.detail__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.detail h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.detail__loc { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); margin-top: 10px; }
.detail__loc .icon { color: var(--green-600); }
.detail__price { text-align: right; }
.detail__price strong { display: block; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy-700); letter-spacing: -.03em; }
.detail__price span { font-size: .85rem; color: var(--ink-mute); }

.kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin: 26px 0;
}
.kpi {
    text-align: center;
    padding: 18px 12px;
    border-radius: var(--radius);
    background: var(--surface-2);
    border: 1px solid var(--line);
}
.kpi .icon { font-size: 1.35rem; color: var(--navy-500); margin: 0 auto 8px; }
.kpi small { display: block; font-size: .76rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .06em; }
.kpi strong { font-size: 1.2rem; color: var(--navy-700); }

.detail__block { margin-top: 26px; }
.detail__block h3 { display: flex; align-items: center; gap: 9px; font-size: 1.05rem; margin-bottom: 12px; }
.detail__block h3 .icon { color: var(--green-600); }
.detail__desc { color: var(--ink-soft); white-space: pre-line; font-size: .95rem; line-height: 1.75; }
.detail__desc strong { color: var(--navy-700); }
.detail__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.detail__actions .btn { flex: 1 1 200px; }

/* -------------------------------- Toast --------------------------------- */
.toast-wrap {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    pointer-events: none;
}
.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    background: var(--navy-800);
    color: #fff;
    font-size: .9rem;
    box-shadow: var(--shadow-lg);
    animation: toastIn .3s var(--ease);
}
.toast .icon { color: #a8d18b; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ------------------------------- Features ------------------------------- */
.feature {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    height: 100%;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature__icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
    margin-bottom: 18px;
}
.feature__icon--green { background: linear-gradient(135deg, var(--green-600), var(--green-500)); }
.feature__icon--steel { background: linear-gradient(135deg, var(--steel-600), var(--steel-500)); }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .93rem; }

/* ----------------------------- Market cards ----------------------------- */
.market {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius-lg);
    padding: 22px;
    backdrop-filter: blur(10px);
    transition: transform .3s var(--ease), background .3s var(--ease);
}
.market:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .13); }
.market__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.market__label { display: flex; align-items: center; gap: 9px; font-weight: 600; color: #fff; }
.market__label .icon { font-size: 1.2rem; }
.market__tag { font-size: .7rem; color: rgba(255, 255, 255, .6); letter-spacing: .06em; text-transform: uppercase; }
.market__value { font-size: 1.9rem; font-weight: 700; color: #fff; letter-spacing: -.02em; line-height: 1.2; }
.market__delta { font-size: .84rem; color: rgba(255, 255, 255, .7); display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.is-up { color: #7ee2a8; }
.is-down { color: #ff9b9b; }

/* -------------------------------- Ticker -------------------------------- */
.ticker {
    overflow: hidden;
    background: linear-gradient(90deg, var(--navy-800), var(--navy-600) 50%, var(--navy-800));
    padding: 13px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker__track { display: flex; width: max-content; animation: tickerMove 34s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 34px;
    color: #fff;
    font-size: .92rem;
    font-weight: 500;
    white-space: nowrap;
}
.ticker__item .icon { color: #a8d18b; }
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* -------------------------------- About --------------------------------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-xl); }
.about__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 32px; }
.about__stats strong { display: block; font-size: 2rem; color: var(--navy-600); letter-spacing: -.03em; }
.about__stats span { font-size: .88rem; color: var(--ink-soft); }

/* -------------------------------- Contact ------------------------------- */
.contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); }
.contact-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-lg);
    padding: clamp(22px, 3vw, 34px);
    backdrop-filter: blur(10px);
}
.contact-card .input, .contact-card .select, .contact-card textarea.input {
    background: rgba(255, 255, 255, .96);
    border-color: transparent;
}
.contact-card .field > label { color: rgba(255, 255, 255, .72); }

.info-item { display: flex; gap: 15px; align-items: flex-start; }
.info-item + .info-item { margin-top: 22px; }
.info-item__icon {
    width: 46px;
    height: 46px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    color: #a8d18b;
}
.info-item h4 { color: #fff; font-size: .95rem; margin-bottom: 3px; }
.info-item p { color: rgba(255, 255, 255, .72); font-size: .9rem; }
.info-item a:hover { color: #fff; text-decoration: underline; }

.socials { display: flex; gap: 10px; margin-top: 28px; }
.socials a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transition: all .25s var(--ease);
}
.socials a:hover { background: #fff; color: var(--navy-700); transform: translateY(-3px); }

/* -------------------------------- Footer -------------------------------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .66); padding: 54px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; letter-spacing: .02em; }
.footer a { font-size: .9rem; transition: color .2s var(--ease); }
.footer a:hover { color: #fff; }
.footer li + li { margin-top: 9px; }
.footer .brand-name { color: #fff; }
.footer p { font-size: .9rem; }
.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .84rem;
}

/* -------------------------- Floating actions ---------------------------- */
.fabs { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; flex-direction: column; gap: 12px; }
.fab {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-lg); }
.fab--wa { background: linear-gradient(135deg, #1faa54, #25d366); }
.fab--top { background: var(--navy-600); opacity: 0; pointer-events: none; transform: translateY(12px); }
.fab--top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.fab--wa::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .5);
    animation: pulse 2.4s infinite;
}
@keyframes pulse {
    0% { transform: scale(.9); opacity: .8; }
    70% { transform: scale(1.25); opacity: 0; }
    100% { opacity: 0; }
}

/* ------------------------------ Corretores ------------------------------ */
.taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: var(--radius-full);
    background: var(--navy-100);
    color: var(--navy-600);
    border: 1px solid var(--steel-100);
    font-size: .82rem;
    font-weight: 600;
}

.corretores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 26px;
    align-items: start;
}

.corretor {
    display: grid;
    grid-template-columns: 232px 1fr;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.corretor:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy-100);
}

.corretor__media {
    position: relative;
    background: linear-gradient(160deg, var(--navy-700), var(--navy-500));
    overflow: hidden;
}

.corretor__media picture, .corretor__media img { height: 100%; }

.corretor__media img {
    width: 100%;
    object-fit: cover;
    object-position: center 18%;
    min-height: 100%;
    transition: transform .6s var(--ease);
}

.corretor:hover .corretor__media img { transform: scale(1.04); }

.corretor__media::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(10, 28, 43, .55), transparent);
    pointer-events: none;
}

.corretor__creci {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 1;
    font-size: .72rem;
}

.corretor__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.corretor__head h3 { font-size: 1.35rem; }

.corretor__cargo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    color: var(--green-600);
    font-weight: 600;
    font-size: .92rem;
}

.corretor__cargo .icon { font-size: .95rem; }

.corretor__bio { color: var(--ink-soft); font-size: .94rem; }

.corretor__block h4 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    font-size: .78rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.corretor__block h4 .icon { color: var(--amber-500); }

.corretor__specs { margin: 0; }

.corretor__destaques {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}

.corretor__destaques div {
    flex: 1 1 130px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1px solid var(--line);
}

.corretor__destaques strong { display: block; color: var(--navy-600); font-size: .95rem; }
.corretor__destaques span { color: var(--ink-mute); font-size: .78rem; }

.corretor__acoes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.corretor__acoes .btn { flex: 1 1 auto; justify-content: center; }

/* --------------------------- Corretores (mini) --------------------------- */
.equipe-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.corretor-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px 12px 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.corretor-mini:hover {
    transform: translateY(-3px);
    border-color: var(--navy-400);
    box-shadow: var(--shadow);
}

.corretor-mini__media {
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--navy-100);
    box-shadow: 0 0 0 3px rgba(36, 91, 128, .12);
}

.corretor-mini__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }

.corretor-mini__body { display: flex; flex-direction: column; min-width: 0; }
.corretor-mini__body strong { color: var(--navy-700); font-size: 1.02rem; }
.corretor-mini__cargo { color: var(--green-600); font-size: .84rem; font-weight: 600; }
.corretor-mini__tags { color: var(--ink-mute); font-size: .78rem; }

.corretor-mini__go {
    margin-left: auto;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: var(--radius-full);
    background: var(--navy-100);
    color: var(--navy-600);
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.corretor-mini:hover .corretor-mini__go {
    background: var(--navy-600);
    color: #fff;
    transform: translateX(3px);
}

/* ------------------------------- Reveal --------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------ Utilities ------------------------------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 36px; }
.hide { display: none !important; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 1080px) {
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .quick-search__card { grid-template-columns: 1fr 1fr; }
    .filterbar__row { grid-template-columns: 1fr 1fr; }
    .cards--list .pcard__media { width: 260px; }
}

@media (max-width: 900px) {
    .nav__menu { display: none; }
    .hamburger { display: flex; }
    .grid--3, .grid--2 { grid-template-columns: 1fr; }
    .about, .contact { grid-template-columns: 1fr; }
    .about__media { max-width: 420px; margin: 0 auto; }
    .detail__price { text-align: left; }
    .cards--list .pcard { flex-direction: column; }
    .cards--list .pcard__media { width: 100%; aspect-ratio: 4 / 3; }
    .corretores-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .container { padding: 0 18px; }
    :root { --nav-h: 64px; }
    .hero { min-height: auto; padding: calc(var(--nav-h) + 40px) 0 72px; }
    .hero__stats { gap: 20px; }
    .hero__stats strong { font-size: 1.35rem; }
    .quick-search { margin-top: -40px; }
    .quick-search__card { grid-template-columns: 1fr; padding: 16px; }
    .grid--4 { grid-template-columns: 1fr; }
    .cards { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .modal { padding: 0; }
    .modal__dialog { border-radius: 0; min-height: 100%; }
    .gallery__stage { aspect-ratio: 4 / 3; max-height: 46vh; }
    .filterbar__row { grid-template-columns: 1fr; }
    /* no celular a barra rola com a página e cada linha de chips rola na horizontal */
    .filterbar { position: static; padding: 14px 0; }
    .filterbar .chips {
        flex: 1 1 100%;
        min-width: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .filterbar .chips::-webkit-scrollbar { display: none; }
    .filterbar__row + .filterbar__row { margin-top: 10px; }
    .results-bar { margin: 20px 0 16px; }
    .detail__actions .btn { flex: 1 1 100%; }
    .fabs { right: 14px; bottom: 14px; }
    .corretor { grid-template-columns: 1fr; }
    .corretor__media { aspect-ratio: 5 / 4; }
    .corretor__media img { object-position: center 16%; }
    .corretor__body { padding: 20px 18px; }
    .corretor__acoes .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .nav, .filterbar, .fabs, .modal__close, .footer { display: none !important; }
    body { background: #fff; }
}
