/* ============================================================
   Metsger Imóveis — Public Site
   Design tokens, Apple-white inspired with brand navy + gold CTA
   ============================================================ */

:root {
    /* Brand — calibrado pelo site atual metsgerimoveis.com.br */
    --c-primary: #2980b9;          /* azul título RESIDENCIAL HARMONIA */
    --c-primary-dark: #1f5d8b;
    --c-primary-light: #3498db;
    --c-header: #1f2a3a;            /* header/footer dark navy */
    --c-header-dark: #16202c;
    --c-accent: #1abc9c;            /* verde LOCAÇÃO (substitui dourado) */
    --c-accent-dark: #16a085;
    --c-sale: #e74c3c;              /* vermelho VENDA */
    --c-sale-dark: #c0392b;
    --c-success: #1abc9c;
    --c-danger: #e74c3c;

    /* Neutros */
    --c-bg: #ffffff;
    --c-bg-soft: #f8f9fb;
    --c-bg-muted: #f1f3f7;
    --c-text: #1a1f2e;
    --c-text-muted: #6b7280;
    --c-text-subtle: #9ca3af;
    --c-border: #e5e7eb;
    --c-border-light: #f0f2f5;

    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(31, 42, 58, 0.04);
    --shadow-md: 0 2px 8px rgba(31, 42, 58, 0.08), 0 4px 16px rgba(31, 42, 58, 0.06);
    --shadow-lg: 0 4px 24px rgba(31, 42, 58, 0.10), 0 16px 48px rgba(31, 42, 58, 0.08);
    --shadow-hover: 0 12px 32px rgba(31, 42, 58, 0.16);

    /* Layout */
    --container: 1240px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --header-h: 76px;

    /* Type */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Motion */
    --t-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
    --t-base: 250ms cubic-bezier(0.16, 1, 0.3, 1);
    --t-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-primary-dark); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-header);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: var(--header-h);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.site-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
    box-shadow: var(--shadow-sm);
}

.site-logo__text { color: #fff; }
.site-logo__text strong { font-weight: 700; color: var(--c-primary-light); }

/* Logo IMG (substituiu o mark+text spans) */
.site-logo__img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);  /* deixa branco em fundo navy */
    transition: opacity var(--t-fast);
}
.site-logo:hover .site-logo__img { opacity: 0.85; }

/* Footer logo: maior pra dar destaque à marca */
.site-logo--footer .site-logo__img { height: 64px; margin-bottom: 14px; }

@media (max-width: 600px) {
    .site-logo--footer .site-logo__img { height: 56px; }
}

/* Mobile: logo ligeiramente menor pro header não ficar apertado */
@media (max-width: 600px) {
    .site-logo__img { height: 34px; }
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.site-nav a {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--t-fast);
}

.site-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.site-nav a.is-active { color: #fff; background: rgba(41,128,185,0.25); }

.site-cta-group { display: flex; gap: 8px; align-items: center; }

.site-cta-whats {
    padding: 9px 16px;
    border-radius: var(--radius-md);
    background: #25d366;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.site-cta-whats:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35); }

.site-cta-area {
    padding: 9px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
}
.site-cta-area:hover { border-color: var(--c-primary-light); color: #fff; background: rgba(41,128,185,0.2); }

.site-burger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 920px) {
    .site-nav, .site-cta-area { display: none; }
    .site-burger { display: block; }
    body.nav-open .site-nav {
        display: flex;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 16px;
        border-bottom: 1px solid var(--c-border);
        box-shadow: var(--shadow-md);
    }
}

/* ============================================================
   BANNER CAROUSEL (CMS)
   ============================================================ */

.banner-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 520px;
    overflow: hidden;
    background: var(--c-bg-muted);
}
.banner-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
}
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.banner-slide.is-active { opacity: 1; pointer-events: auto; }
.banner-slide a, .banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-carousel__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.banner-carousel__dots button {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background var(--t-fast), width var(--t-fast);
}
.banner-carousel__dots button.is-active {
    background: #fff;
    width: 60px;
}
@media (max-width: 768px) {
    .banner-carousel { aspect-ratio: 16 / 10; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    padding: 80px 0 100px;
    background:
        linear-gradient(135deg, rgba(10, 58, 140, 0.92) 0%, rgba(31, 92, 199, 0.85) 100%),
        url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1920&q=80') center/cover;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 164, 75, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 92, 199, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner { position: relative; z-index: 2; text-align: center; }

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-wrap: balance;
}

.hero__subtitle {
    font-size: clamp(15px, 1.6vw, 18px);
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 40px;
    text-wrap: balance;
}

/* Search box */
.hero-search {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr auto;
    gap: 4px;
    align-items: stretch;
}

.hero-search__tabs { display: flex; padding: 4px; gap: 4px; grid-column: 1 / -1; }

.hero-search__tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    color: var(--c-text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t-fast);
}
.hero-search__tab.is-active { background: var(--c-primary); color: #fff; }

.hero-search__field {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-right: 1px solid var(--c-border-light);
    text-align: left;
}
.hero-search__field:last-of-type { border-right: none; }
.hero-search__field label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--c-text-muted);
    margin-bottom: 4px;
}
.hero-search__field input,
.hero-search__field select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--c-text);
    font-family: inherit;
    padding: 0;
    outline: none;
    width: 100%;
}

.hero-search__btn {
    margin: 8px;
    padding: 0 28px;
    background: var(--c-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--t-base);
    white-space: nowrap;
}
.hero-search__btn:hover {
    background: var(--c-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(212, 164, 75, 0.4);
}

@media (max-width: 768px) {
    .hero-search { grid-template-columns: 1fr; }
    .hero-search__field { border-right: none; border-bottom: 1px solid var(--c-border-light); }
    .hero-search__field:nth-last-child(2) { border-bottom: none; }
    .hero-search__btn { margin: 8px; padding: 14px; }
}

/* Stats abaixo do hero */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 920px;
    margin: 40px auto 0;
    color: #fff;
}
.hero-stats__item { text-align: center; }
.hero-stats__num { font-size: 32px; font-weight: 800; line-height: 1; }
.hero-stats__label { font-size: 12px; opacity: 0.85; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 600px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ============================================================
   SECTION
   ============================================================ */

.section { padding: 80px 0; }
.section--soft { background: var(--c-bg-soft); }

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.section-head__title h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}
.section-head__title p { color: var(--c-text-muted); margin: 0; font-size: 16px; }
.section-head__cta {
    color: var(--c-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: all var(--t-fast);
}
.section-head__cta:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ============================================================
   CARD DE IMÓVEL
   ============================================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.prop-card {
    background: #fff;
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--t-base), box-shadow var(--t-base);
    display: flex;
    flex-direction: column;
}
.prop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.prop-card__cover {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--c-bg-muted) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23d1d5db"><path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z"/></svg>') center/40px no-repeat;
    overflow: hidden;
}
.prop-card__cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow);
}
.prop-card:hover .prop-card__cover img { transform: scale(1.05); }

.prop-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
.prop-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    backdrop-filter: blur(8px);
}
.prop-badge--featured { background: var(--c-primary); color: #fff; }
.prop-badge--sale { background: var(--c-sale); color: #fff; }
.prop-badge--rent { background: var(--c-accent); color: #fff; }
.prop-badge--both { background: var(--c-sale); color: #fff; }

.prop-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.prop-card__price {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}
.prop-card__price small { font-size: 12px; color: var(--c-text-muted); font-weight: 500; }

.prop-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--c-text);
    margin: 8px 0 4px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 42px;
}
.prop-card__location {
    font-size: 13px;
    color: var(--c-text-muted);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.prop-card__features {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--c-border-light);
    margin-top: auto;
}
.prop-feature {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--c-text-muted);
}
.prop-feature strong { color: var(--c-text); font-weight: 600; }

/* Cidades chips */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.city-chip {
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    color: var(--c-text);
    transition: all var(--t-base);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.city-chip:hover { border-color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.city-chip__count {
    background: var(--c-bg-muted);
    color: var(--c-text-muted);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================================
   PÁGINA DE BUSCA
   ============================================================ */

.search-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 40px 0;
}

.search-filters {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 16px);
}
.search-filters h3 { margin: 0 0 16px; font-size: 16px; font-weight: 600; }
.search-filters .field { margin-bottom: 16px; }
.search-filters label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.search-filters input,
.search-filters select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    color: var(--c-text);
}
.search-filters input:focus,
.search-filters select:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(10, 58, 140, 0.1); }

.search-filters__btn {
    width: 100%;
    padding: 12px;
    background: var(--c-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
}
.search-filters__clear {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--c-text-muted);
}

.search-results__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.search-results__count { color: var(--c-text-muted); font-size: 14px; }
.search-results__count strong { color: var(--c-text); font-size: 18px; }

@media (max-width: 900px) {
    .search-layout { grid-template-columns: 1fr; }
    .search-filters { position: static; }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    padding: 8px 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    color: var(--c-text);
    font-size: 14px;
    font-weight: 500;
}
.pagination a:hover { border-color: var(--c-primary); color: var(--c-primary); }
.pagination .is-active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ============================================================
   DETALHE DO IMÓVEL
   ============================================================ */

.prop-detail { padding: 40px 0 80px; }

.prop-detail__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.prop-detail__title h1 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}
.prop-detail__location {
    color: var(--c-text-muted);
    font-size: 15px;
    margin: 0;
}
.prop-detail__price {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
}
.prop-detail__price small { display: block; font-size: 13px; color: var(--c-text-muted); font-weight: 500; margin-top: 4px; }

/* LIGHTBOX (foto em tela cheia) */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: lbFade 0.25s ease;
}
.lightbox.is-open { display: flex; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.lightbox__img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lbZoom 0.3s var(--ease-out);
}
@keyframes lbZoom { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--t-fast), transform var(--t-fast);
    backdrop-filter: blur(8px);
}
.lightbox__close:hover, .lightbox__nav:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.08);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08); }

.lightbox__counter {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    background: rgba(0,0,0,0.4);
    padding: 6px 16px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

@media (max-width: 600px) {
    .lightbox__close, .lightbox__nav { width: 42px; height: 42px; font-size: 22px; }
    .lightbox__close { top: 12px; right: 12px; }
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
}

/* PROPERTY SLIDER (galeria estilo banner com autoplay) */
.prop-slider { margin-bottom: 32px; }
.prop-slider__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 560px;
    background: #1a1f2e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.prop-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.prop-slider__slide.is-active { opacity: 1; pointer-events: auto; }
.prop-slider__slide img {
    width: 100%; height: 100%; object-fit: cover;
    cursor: zoom-in;
}

.prop-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--c-text);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: background var(--t-fast), transform var(--t-fast);
    z-index: 5;
    display: flex; align-items: center; justify-content: center;
    padding-bottom: 4px;
}
.prop-slider__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.prop-slider__arrow--prev { left: 16px; }
.prop-slider__arrow--next { right: 16px; }

.prop-slider__counter {
    position: absolute;
    bottom: 16px; right: 16px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    z-index: 5;
}

.prop-slider__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding: 4px 2px;
    scrollbar-width: thin;
}
.prop-slider__thumb {
    flex: 0 0 100px;
    height: 70px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    transition: border-color var(--t-fast), opacity var(--t-fast);
    opacity: 0.6;
}
.prop-slider__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prop-slider__thumb:hover { opacity: 1; }
.prop-slider__thumb.is-active { border-color: var(--c-primary); opacity: 1; }

@media (max-width: 768px) {
    .prop-slider__stage { aspect-ratio: 4 / 3; }
    .prop-slider__arrow { width: 38px; height: 38px; font-size: 22px; }
    .prop-slider__thumb { flex: 0 0 70px; height: 50px; }
}

.prop-detail__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

@media (max-width: 980px) {
    .prop-detail__layout { grid-template-columns: 1fr; }
}

.prop-detail__main { min-width: 0; }

.prop-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    padding: 24px;
    background: var(--c-bg-soft);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}
.prop-feature-item { text-align: center; }
.prop-feature-item__icon { font-size: 24px; margin-bottom: 4px; }
.prop-feature-item__num { font-size: 20px; font-weight: 700; color: var(--c-text); }
.prop-feature-item__label { font-size: 12px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.prop-section { margin-bottom: 40px; }
.prop-section h3 { font-size: 18px; font-weight: 700; margin: 0 0 16px; }
.prop-section p { color: var(--c-text-muted); line-height: 1.7; white-space: pre-wrap; }

.prop-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}
.prop-amenities li {
    padding: 10px 14px;
    background: var(--c-bg-soft);
    border-radius: var(--radius-md);
    font-size: 14px;
    list-style: none;
}

.prop-contact-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: calc(var(--header-h) + 16px);
    box-shadow: var(--shadow-md);
}
.prop-contact-card h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; }
.prop-contact-card p.muted { color: var(--c-text-muted); font-size: 13px; margin: 0 0 20px; }
.prop-contact-card .field { margin-bottom: 12px; }
.prop-contact-card input,
.prop-contact-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    color: var(--c-text);
}
.prop-contact-card input:focus,
.prop-contact-card textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(10, 58, 140, 0.1); }
.prop-contact-card textarea { resize: vertical; min-height: 90px; }
.prop-contact-card .btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--c-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--t-base);
}
.prop-contact-card .btn-primary:hover { background: var(--c-accent-dark); transform: translateY(-1px); box-shadow: 0 8px 16px rgba(212, 164, 75, 0.35); }

.prop-contact-card .whats-fallback {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 12px;
    background: #25d36315;
    color: #128c7e;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
}

/* ============================================================
   CONTATO
   ============================================================ */

.contact-page { padding: 60px 0 100px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { background: var(--c-primary); color: #fff; padding: 40px; border-radius: var(--radius-lg); }
.contact-info h2 { margin: 0 0 12px; font-size: 24px; font-weight: 700; }
.contact-info p { opacity: 0.9; margin: 0 0 24px; }
.contact-info ul { list-style: none; padding: 0; margin: 0; }
.contact-info li { padding: 12px 0; border-top: 1px solid rgba(255, 255, 255, 0.15); display: flex; gap: 12px; align-items: center; }
.contact-info li:first-child { border-top: none; }

.contact-form { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px; }
.contact-form h2 { margin: 0 0 6px; font-size: 22px; font-weight: 700; }
.contact-form .field { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--c-text); }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
    padding: 14px 32px;
    background: var(--c-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
}
.contact-form button:hover { background: var(--c-accent-dark); }

/* ============================================================
   CMS RICH TEXT (descrições + páginas + blog)
   ============================================================ */

.cms-page-body { font-size: 15px; line-height: 1.7; color: var(--c-text); }
.cms-page-body h2 { color: var(--c-primary); font-size: 24px; margin: 28px 0 12px; font-weight: 700; }
.cms-page-body h3 { color: var(--c-primary); font-size: 20px; margin: 22px 0 10px; font-weight: 600; }
.cms-page-body h4 { color: var(--c-text); font-size: 16px; margin: 18px 0 8px; font-weight: 600; }
.cms-page-body p { margin: 0 0 14px; }
.cms-page-body ul, .cms-page-body ol { margin: 0 0 14px; padding-left: 24px; }
.cms-page-body li { margin-bottom: 6px; }
.cms-page-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 16px 0; }
.cms-page-body a { color: var(--c-primary); text-decoration: underline; }
.cms-page-body blockquote { border-left: 4px solid var(--c-accent); padding-left: 20px; margin: 16px 0; color: var(--c-text-muted); font-style: italic; }
.cms-page-body table { border-collapse: collapse; margin: 16px 0; width: 100%; }
.cms-page-body td, .cms-page-body th { border: 1px solid var(--c-border); padding: 8px 12px; }
.cms-page-body th { background: var(--c-bg-soft); font-weight: 600; }

/* ============================================================
   FLASH MESSAGES
   ============================================================ */

.flash {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.flash--success { background: #f0fdf4; color: #166534; border-left: 4px solid var(--c-success); }
.flash--error { background: #fef2f2; color: #991b1b; border-left: 4px solid var(--c-danger); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer { background: var(--c-header-dark); color: #d6d9e0; margin-top: 80px; }
.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1fr;
    gap: 40px;
    padding: 60px 24px 40px;
}
.site-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 16px; }
.site-footer a { display: block; color: #d6d9e0; margin-bottom: 8px; font-size: 14px; }
.site-footer a:hover { color: var(--c-accent); }
.site-footer p { font-size: 14px; margin: 0 0 8px; opacity: 0.85; }
.site-footer .site-logo--footer { color: #fff; margin-bottom: 16px; }
.site-footer .site-logo--footer .site-logo__text { color: #fff; }
.site-footer .site-logo--footer .site-logo__text strong { color: var(--c-accent); }
.site-footer__about { font-size: 14px; opacity: 0.85; line-height: 1.7; }

/* Coluna de contato — ícone SVG + texto na mesma linha. */
.site-footer__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}
/* Multi-linha (endereço): ícone alinhado verticalmente com a primeira linha do texto, não com o bloco inteiro. */
.site-footer__contact--multi { align-items: flex-start; }
.site-footer__contact--multi .site-footer__contact-ic {
    /* box=28px, primeira linha do texto ≈21px (line-height 1.5 × 14px); offset = (21-28)/2 ≈ -3.5px */
    margin-top: -3px;
}
.site-footer__contact-ic {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: var(--c-accent);
    line-height: 0; /* normaliza altura do span pra centralizar o SVG cirurgicamente */
}
.site-footer__contact-ic svg { display: block; }
.site-footer__contact a,
.site-footer__contact > span {
    display: inline;
    margin: 0;
    color: #d6d9e0;
    text-decoration: none;
    word-break: break-word;
}
.site-footer__contact a:hover { color: var(--c-accent); text-decoration: underline; }

/* Crédito Fusion no rodapé — label + logo empilhados */
.fusion-credit {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 24px;
    text-decoration: none;
    transition: opacity var(--t-fast), transform var(--t-fast);
}
.fusion-credit__label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
    transition: color var(--t-fast);
}
.fusion-credit:hover .fusion-credit__label,
.fusion-credit:focus-visible .fusion-credit__label { color: rgba(255,255,255,0.85); }
.fusion-credit img {
    height: 96px;
    width: auto;
    display: block;
    opacity: 0.9;
    transition: opacity var(--t-fast), transform var(--t-fast);
}
.fusion-credit:hover img,
.fusion-credit:focus-visible img {
    opacity: 1;
    transform: scale(1.04);
}
.fusion-credit:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 4px;
    border-radius: 4px;
}
@media (max-width: 600px) {
    .fusion-credit img { height: 80px; }
}

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 13px;
    opacity: 0.7;
    text-align: center;
}

@media (max-width: 800px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 20px; }
}
@media (max-width: 500px) {
    .site-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   404
   ============================================================ */

.notfound { text-align: center; padding: 100px 0; }
.notfound h1 { font-size: 96px; color: var(--c-primary); margin: 0; line-height: 1; }
.notfound p { color: var(--c-text-muted); font-size: 18px; margin: 16px 0 32px; }
.notfound a { display: inline-block; padding: 14px 32px; background: var(--c-primary); color: #fff; border-radius: var(--radius-md); font-weight: 600; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cards-grid > * { animation: fadeUp 0.6s var(--t-base) backwards; }
.cards-grid > *:nth-child(1) { animation-delay: 0.05s; }
.cards-grid > *:nth-child(2) { animation-delay: 0.1s; }
.cards-grid > *:nth-child(3) { animation-delay: 0.15s; }
.cards-grid > *:nth-child(4) { animation-delay: 0.2s; }
.cards-grid > *:nth-child(5) { animation-delay: 0.25s; }
.cards-grid > *:nth-child(6) { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   REFRESH 2026-05 — UX/Design polish
   ============================================================ */

/* Header com glassmorphism quando rolar (toggled via JS .is-scrolled) */
.site-header {
    transition: background var(--t-base), backdrop-filter var(--t-base), border-color var(--t-base);
}
.site-header.is-scrolled {
    background: rgba(31, 42, 58, 0.78);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom-color: rgba(255,255,255,0.12);
}

/* Hero — tipografia mais hierárquica + glow sutil no título */
.hero { padding: clamp(56px, 8vw, 120px) 0 clamp(72px, 10vw, 140px); }
.hero h1 {
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #e8eef9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__subtitle { letter-spacing: 0.01em; }

/* Search box — micro-interação no focus */
.hero-search {
    transition: box-shadow var(--t-base), transform var(--t-base);
}
.hero-search:focus-within {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.20), 0 0 0 6px rgba(255,255,255,0.10);
}
.hero-search__field { transition: background var(--t-fast); }
.hero-search__field:focus-within { background: var(--c-bg-soft); border-radius: var(--radius-md); }

/* Stats — número com gradient + glow */
.hero-stats__num {
    background: linear-gradient(180deg, #ffffff 0%, #c5d3ec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 24px rgba(255,255,255,0.15);
}

/* Section spacing — ritmo refinado */
.section { padding: clamp(56px, 8vw, 96px) 0; }

/* Section head — descrição em italic mais suave */
.section-head__title h2 { line-height: 1.15; }
.section-head__title p { font-weight: 400; opacity: 0.82; }

/* CARDS — polish: depth maior, sweep no cover, badge com mais polimento */
.prop-card {
    box-shadow: var(--shadow-sm);
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color var(--t-base);
}
.prop-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(31, 42, 58, 0.14), 0 4px 12px rgba(31, 42, 58, 0.06);
}
.prop-card__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
    opacity: 0.7;
    transition: opacity var(--t-base);
}
.prop-card:hover .prop-card__cover::after { opacity: 1; }

.prop-card__cover img { transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1); }

.prop-badge {
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    -webkit-backdrop-filter: blur(8px);
}

.prop-card__price {
    letter-spacing: -0.5px;
    transition: transform var(--t-fast);
}
.prop-card:hover .prop-card__price { transform: translateY(-1px); }

/* Cities — hover mais sofisticado */
.city-chip {
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.city-chip:hover {
    border-color: var(--c-primary);
    box-shadow: 0 10px 24px rgba(41, 128, 185, 0.18);
}
.city-chip__count {
    transition: background var(--t-fast), color var(--t-fast);
}
.city-chip:hover .city-chip__count {
    background: var(--c-primary);
    color: #fff;
}

/* CTA final — substitui inline styles do home.php */
.cta-final {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.cta-final h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.6px;
    line-height: 1.15;
}
.cta-final p {
    color: var(--c-text-muted);
    font-size: clamp(15px, 1.6vw, 17px);
    margin: 0 0 32px;
    line-height: 1.6;
}
.cta-final__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-final .hero-search__btn,
.cta-final .site-cta-whats {
    margin: 0;
    padding: 14px 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Scroll reveal — fade-in elegante quando seção entra na viewport */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Foco visível consistente (a11y) */
:focus-visible {
    outline: 2px solid var(--c-primary-light);
    outline-offset: 3px;
    border-radius: 4px;
}
.site-nav a:focus-visible,
.site-cta-whats:focus-visible,
.site-cta-area:focus-visible {
    outline-color: #fff;
}

/* Reduce motion — neutraliza scroll reveal quando o usuário pediu */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE FIRST POLISH 2026-05 — refinos pra <920px
   ============================================================ */

/* Tap highlight discreto + safe-area pro notch (iPhone) */
html { -webkit-tap-highlight-color: rgba(41, 128, 185, 0.15); }
body { padding-bottom: env(safe-area-inset-bottom); }

/* Container — padding adaptativo (16px em mobile pequeno, 20px médio, 24px desktop) */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
}
@media (min-width: 481px) and (max-width: 768px) {
    .container { padding: 0 20px; }
}

/* HEADER MOBILE — burger maior (44px touch target) + animação */
@media (max-width: 920px) {
    .site-burger {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-md);
        font-size: 24px;
        transition: background var(--t-fast);
    }
    .site-burger:hover,
    .site-burger:focus-visible { background: rgba(255,255,255,0.1); }

    .site-header__inner { gap: 16px; }

    /* Menu mobile com animação slide-down */
    .site-nav {
        transform: translateY(-12px);
        opacity: 0;
        transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 220ms ease;
        gap: 0;
    }
    body.nav-open .site-nav {
        transform: translateY(0);
        opacity: 1;
        z-index: 99;
    }
    body.nav-open .site-nav a {
        padding: 14px 20px;
        font-size: 15px;
        color: var(--c-text);
        border-radius: 0;
        border-bottom: 1px solid var(--c-border-light);
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    body.nav-open .site-nav a:last-child { border-bottom: none; }
    body.nav-open .site-nav a.is-active,
    body.nav-open .site-nav a:hover {
        background: var(--c-bg-soft);
        color: var(--c-primary);
    }

    /* Quando menu aberto, adiciona overlay escuro atrás (clicável pra fechar) */
    body.nav-open::after {
        content: '';
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: rgba(0,0,0,0.4);
        z-index: 98;
        animation: navOverlayIn 200ms ease;
    }
    @keyframes navOverlayIn { from { opacity: 0; } to { opacity: 1; } }
}

/* HERO MOBILE — padding reduzido + spacing entre elementos */
@media (max-width: 768px) {
    .hero { padding: 48px 0 64px; }
    .hero h1 { letter-spacing: -0.5px; }
    .hero__subtitle { margin-bottom: 28px; padding: 0 8px; }

    /* Search box — corner radius unificado, padding interno menor */
    .hero-search {
        border-radius: var(--radius-lg);
        padding: 6px;
        gap: 0;
    }
    .hero-search__tabs {
        padding: 4px 4px 0;
        gap: 4px;
        margin-bottom: 4px;
    }
    .hero-search__tab {
        padding: 11px 12px;
        font-size: 13px;
        min-height: 44px;
    }
    .hero-search__field {
        padding: 10px 14px;
        border-radius: 8px;
        margin: 2px 0;
    }
    .hero-search__field label {
        font-size: 10px;
        margin-bottom: 2px;
    }
    .hero-search__field input,
    .hero-search__field select {
        font-size: 15px;  /* >= 16px evita zoom no iOS */
        min-height: 28px;
    }
    .hero-search__btn {
        margin: 6px 2px 2px;
        padding: 14px;
        font-size: 15px;
        min-height: 48px;
        width: calc(100% - 4px);
        border-radius: var(--radius-md);
    }

    /* Stats — espaçamento melhor entre os 2x2 */
    .hero-stats { margin-top: 32px; gap: 20px 16px; }
    .hero-stats__num { font-size: 28px; }
}

/* SECTIONS MOBILE — padding reduzido, head simplificado */
@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .section-head { margin-bottom: 28px; gap: 16px; }
    .section-head__title h2 { font-size: 22px; }
    .section-head__title p { font-size: 14px; }
    .section-head__cta {
        padding: 9px 14px;
        font-size: 13px;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }
}

/* CARDS MOBILE — minmax menor, sem hover lift (touch nao tem hover real) */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
@media (hover: none) {
    /* Touch devices: desabilita hover lift que dá feedback estranho ao tocar */
    .prop-card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    .prop-card:active {
        transform: scale(0.98);
        transition: transform 120ms ease;
    }
    .prop-card__cover img,
    .prop-card:hover .prop-card__cover img { transform: none; }
}

/* Card body em mobile — padding reduzido + tipografia ajustada */
@media (max-width: 480px) {
    .prop-card__body { padding: 16px; }
    .prop-card__price { font-size: 20px; }
    .prop-card__title { font-size: 15px; min-height: 38px; }
    .prop-card__features { gap: 8px; padding-top: 12px; }
    .prop-feature { font-size: 11.5px; }
}

/* Cidades em mobile — chips full-width */
@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .city-chip { padding: 14px 16px; min-height: 48px; }
}

/* CTA final em mobile — botões full-width pra touch */
@media (max-width: 480px) {
    .cta-final__actions { flex-direction: column; gap: 10px; }
    .cta-final__actions a {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
}

/* FOOTER MOBILE — links com touch target maior */
@media (max-width: 800px) {
    .site-footer__grid { padding: 36px 16px 28px; gap: 28px; }
    .site-footer a {
        margin-bottom: 6px;
        padding: 6px 0;
        min-height: 32px;
    }
}

/* Banner carousel em mobile — dots maiores pra touch */
@media (max-width: 768px) {
    .banner-carousel__dots button { width: 28px; height: 6px; }
    .banner-carousel__dots button.is-active { width: 44px; }
}

/* Detalhe do imóvel em mobile — sticky desabilitado, contact card fluido */
@media (max-width: 980px) {
    .prop-contact-card { position: static; padding: 24px; }
}

/* Search page — filtros em mobile colapsam acima dos resultados */
@media (max-width: 900px) {
    .search-filters {
        padding: 16px;
        margin-bottom: 16px;
    }
    .search-filters input,
    .search-filters select {
        min-height: 44px;
        font-size: 15px;
    }
    .search-filters__btn { min-height: 48px; }
}

/* Iframes e embeds — full responsive */
iframe, embed, object { max-width: 100%; }
