/* ============================================================
   Prime Imóveis — CSS
   ============================================================ */

:root {
    --primary: #1e3a5f;
    --primary-hover: #152c4a;
    --primary-soft: rgba(30, 58, 95, 0.08);
    --accent: #c9a961;
    --accent-hover: #b8964a;
    --whatsapp: #25D366;

    --bg: #ffffff;
    --bg-alt: #f8f7f4;
    --bg-dark: #0f1825;
    --bg-dark-alt: #1a2537;

    --text: #1a2332;
    --text-dim: #6b7280;
    --text-bright: #ffffff;
    --text-light: #b8c0cc;

    --border: #e5e7eb;
    --border-strong: #d1d5db;

    --font-head: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius: 6px;
    --radius-lg: 12px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);

    --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Top bar ---------- */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-info svg { color: var(--accent); }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text strong {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 2px;
}
.logo-text em {
    font-family: var(--font-head);
    font-style: normal;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 4px;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}
.nav a {
    color: var(--text-dim);
    position: relative;
    padding: 4px 0;
}
.nav a:hover { color: var(--primary); }
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--t);
}
.nav a:hover::after { width: 100%; }

.menu-toggle { display: none; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--t);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}
.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-ghost:hover {
    background: var(--primary);
    color: #fff;
}
.btn-block { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 24, 37, 0.9) 0%, rgba(15, 24, 37, 0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
    max-width: 1000px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.hero-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
}
.hero-desc {
    font-size: 1.1rem;
    max-width: 620px;
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---------- Quick search ---------- */
.quick-search {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    align-items: end;
}
.search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.search-field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
}
.search-field select {
    padding: 12px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: all var(--t);
}
.search-field select:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}
.search-btn {
    padding: 12px 24px;
    height: 46px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}
.stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.stat span {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
}
.section-header h2 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}
.section-header p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-top: 12px;
}

/* ---------- Tipos de imóveis ---------- */
.tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.tipo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--t);
}
.tipo-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.tipo-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--t);
}
.tipo-card:hover .tipo-icon {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.05);
}
.tipo-card h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 6px;
}
.tipo-card span {
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

/* ---------- Destaques / Imóveis ---------- */
.filtros-imoveis {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filtro {
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    transition: all var(--t);
}
.filtro:hover { border-color: var(--primary); color: var(--primary); }
.filtro.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.imoveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.imovel-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t);
    cursor: pointer;
}
.imovel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}
.imovel-card.is-hidden { display: none; }

.imovel-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}
.imovel-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    z-index: 2;
}
.imovel-badge.aluguel { background: var(--accent); color: var(--primary); }
.imovel-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t);
    z-index: 2;
}
.imovel-fav:hover { background: var(--primary); color: #fff; }

.imovel-body {
    padding: 22px 24px 24px;
}
.imovel-cat {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 6px;
}
.imovel-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}
.imovel-location {
    font-size: 13.5px;
    color: var(--text-dim);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.imovel-location svg { color: var(--primary); flex-shrink: 0; }

.imovel-features {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.imovel-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dim);
}
.imovel-feature svg { color: var(--primary); }

.imovel-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.imovel-price strong {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.imovel-price span {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

/* ---------- Financiamento ---------- */
.financiamento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.financiamento-text .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
}
.financiamento-text h2 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}
.financiamento-text p {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.financiamento-aviso {
    background: rgba(201, 169, 97, 0.15);
    border-left: 3px solid var(--accent);
    padding: 14px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 13.5px !important;
    font-style: italic;
}

.financiamento-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

.form-field { margin-bottom: 18px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.form-field input,
.form-field select {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: all var(--t);
}
.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.financiamento-resultado {
    margin-top: 28px;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.fin-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--border);
}
.fin-linha:last-of-type { border-bottom: none; }
.fin-linha span { color: var(--text-dim); }
.fin-linha strong { color: var(--text); font-weight: 600; }
.fin-parcela {
    padding: 16px 0;
    border-bottom: 2px solid var(--primary) !important;
    border-top: 2px solid var(--primary);
    margin: 8px 0;
}
.fin-parcela span { color: var(--primary); font-weight: 600; }
.fin-parcela strong {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--primary);
}
.fin-note {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 12px;
    text-align: center;
    font-style: italic;
}

/* ---------- Equipe / Corretores ---------- */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.corretor {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--t);
}
.corretor:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.corretor-foto {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
    transition: filter var(--t);
}
.corretor:hover .corretor-foto { filter: grayscale(0%); }

.corretor-info {
    padding: 24px 22px 28px;
    text-align: center;
}
.corretor-info h3 {
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 4px;
}
.corretor-info > span {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}
.corretor-info p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 18px;
}
.corretor-actions { display: flex; justify-content: center; }
.corretor-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--t);
}
.corretor-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* ---------- CTA Final ---------- */
.cta-contato {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    color: #fff;
    text-align: center;
}
.cta-inner {
    max-width: 720px;
    margin: 0 auto;
}
.cta-contato .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}
.cta-contato h2 {
    color: #fff;
    margin-bottom: 20px;
}
.cta-contato h2 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
}
.cta-contato p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: var(--text-light);
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-contato .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}
.cta-contato .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal[hidden] { display: none; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 24, 37, 0.85);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all var(--t);
}
.modal-close:hover { background: var(--primary); color: #fff; }

.modal-image {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}
.modal-body { padding: 32px 36px 36px; }
.modal-cat {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}
.modal-title {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 6px;
}
.modal-location {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.modal-feature {
    text-align: center;
}
.modal-feature svg {
    color: var(--primary);
    margin-bottom: 6px;
}
.modal-feature strong {
    display: block;
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
}
.modal-feature span {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.modal-price {
    text-align: center;
    margin-bottom: 24px;
}
.modal-price span {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.modal-price strong {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}
.footer h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li {
    padding: 5px 0;
    font-size: 14px;
}
.footer a:hover { color: var(--accent); }
.logo-footer .logo-mark {
    background: var(--accent);
    color: var(--primary);
}
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text em { color: var(--accent); }
.footer-bottom {
    padding: 24px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom a { color: var(--accent); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--t);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* ---------- Demo banner ---------- */
.demo-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    z-index: 90;
}
.demo-banner a {
    color: var(--accent);
    font-weight: 600;
}
.demo-banner a:hover { color: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 991px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .header-actions { display: none; }

    .hero { min-height: auto; }
    .hero-content { padding: 60px 24px; }
    .quick-search { grid-template-columns: 1fr 1fr; }
    .search-btn { grid-column: span 2; }
    .hero-stats { gap: 30px; }
    .stat strong { font-size: 1.8rem; }

    .financiamento-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 575px) {
    .container { padding: 0 18px; }
    .section { padding: 60px 0; }

    .top-info { display: none; }
    .top-info:last-child { display: flex; }

    .quick-search { grid-template-columns: 1fr; }
    .search-btn { grid-column: auto; }

    .imoveis-grid { grid-template-columns: 1fr; }
    .financiamento-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .modal-body { padding: 24px 22px 28px; }

    .demo-banner { bottom: 12px; left: 12px; right: 90px; font-size: 11px; }
    .whatsapp-float { bottom: 12px; right: 12px; width: 52px; height: 52px; }
}