/* ═══════════════════════════════════════════════════════════════════════════
   ACOMODARE IMÓVEIS — DESIGN SYSTEM FUTURISTA
   "Trindade Space" — Moderno, Sereno, Premium
   Inspirado em fintech premium e SpaceX
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────────────────────── */
:root {
    --bg-deep:       #050911;
    --bg-surface:    #0C0F1D;
    --bg-card:       rgba(255,255,255,.04);
    --border:        rgba(255,255,255,.07);
    --border-gold:   rgba(201,162,39,.35);
    --gold:          #C9A227;
    --gold-light:    #E8C97A;
    --gold-dim:      #A0801C;
    --gold-glow:     rgba(201,162,39,.2);
    --white:         #FFFFFF;
    --text:          rgba(255,255,255,.9);
    --text-dim:      rgba(255,255,255,.55);
    --text-faint:    rgba(255,255,255,.25);
    --green:         #00C48C;
    --red:           #FF4757;
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --transition:    all .3s cubic-bezier(.25,.46,.45,.94);
    --font:          'Inter', -apple-system, sans-serif;
    --gold-gradient: linear-gradient(135deg,#C9A227,#E8C97A,#9E7C1A);
    --card-shadow:   0 4px 32px rgba(0,0,0,.4);
    --glow-gold:     0 0 40px rgba(201,162,39,.25);
}

/* ── RESET & BASE ───────────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body.aco-page {
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAVIGATION ─────────────────────────────────────────────────────────────── */
.aco-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px,4vw,60px);
    background: rgba(5,9,17,.85);
    backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--border-gold);
    transition: var(--transition);
}

.aco-nav.scrolled { background: rgba(5,9,17,.97); }

.aco-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Ícone da logo sem círculo — clip central */
.aco-nav-logo-icon {
    width: 40px; height: 40px;
    overflow: hidden; position: relative;
    clip-path: inset(12%);
    filter: drop-shadow(0 0 8px rgba(201,162,39,.5));
}

.aco-nav-logo-icon img {
    width: 130%; height: 130%;
    position: absolute; top: -15%; left: -15%;
    object-fit: cover; object-position: center 30%;
}

.aco-nav-brand {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .12em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aco-nav-sub {
    font-size: 9px;
    letter-spacing: .2em;
    color: rgba(201,162,39,.5);
    font-weight: 500;
    margin-top: 2px;
}

/* Links da nav */
.aco-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.aco-nav-links li a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text-dim);
    transition: var(--transition);
}

.aco-nav-links li a:hover {
    background: rgba(255,255,255,.06);
    color: var(--white);
}

.aco-nav-links li a.aco-nav-active {
    color: var(--gold-light);
    background: rgba(201,162,39,.08);
}

.aco-nav-cta {
    background: var(--gold-gradient) !important;
    color: #050911 !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 16px rgba(201,162,39,.3) !important;
}

.aco-nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(201,162,39,.45) !important;
    background: rgba(255,255,255,.08) !important;
}

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.aco-hero {
    position: relative;
    height: 100vh; min-height: 680px; max-height: 980px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: var(--bg-deep);
}

/* Animated radial glow no fundo */
.aco-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,162,39,.12), transparent),
        radial-gradient(ellipse 60% 40% at 80% 90%, rgba(201,162,39,.06), transparent);
    animation: heroPulse 6s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: .7; }
    50%       { opacity: 1; }
}

/* Foto de fundo se houver */
.aco-hero-bg {
    position: absolute; inset: 0;
    background: var(--hero-bg-url,'') center/cover no-repeat;
    opacity: .25;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.aco-hero.loaded .aco-hero-bg { transform: scale(1); }

/* Grid lines decorativos */
.aco-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(201,162,39,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,162,39,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.aco-hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeSlideUp 1s ease-out both;
}

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

/* Logo hero — apenas o ícone central sem círculo */
.aco-hero-logo-mark {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    position: relative;
    clip-path: inset(10%);
    filter: drop-shadow(0 0 30px rgba(201,162,39,.7));
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(201,162,39,.5)); }
    50%       { filter: drop-shadow(0 0 40px rgba(201,162,39,.9)); }
}

.aco-hero-logo-mark img {
    width: 130%; height: 130%;
    position: absolute; top: -15%; left: -15%;
    object-fit: cover; object-position: center 30%;
}

.aco-hero-brand-name {
    font-size: clamp(32px,5vw,52px);
    font-weight: 900;
    letter-spacing: .2em;
    background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.aco-hero-brand-tag {
    font-size: 11px;
    letter-spacing: .3em;
    color: rgba(201,162,39,.5);
    font-weight: 500;
    margin-bottom: 36px;
}

.aco-hero-titulo {
    font-size: clamp(26px,4vw,50px);
    font-weight: 300;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.aco-hero-titulo strong {
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aco-hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ── BUSCA HERO ─────────────────────────────────────────────────────────────── */
.aco-hero-busca {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
}

.aco-hero-busca-campos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px; align-items: end;
}

.aco-hero-campo label {
    display: block;
    font-size: 10px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    color: rgba(201,162,39,.7);
    margin-bottom: 6px;
}

.aco-hero-campo select {
    width: 100%; padding: 12px 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font); font-size: 14px;
    transition: var(--transition);
    appearance: none;
}

.aco-hero-campo select:focus {
    outline: none; border-color: var(--gold);
    background: rgba(201,162,39,.08);
}

.aco-hero-campo select option { background: #0C0F1D; color: white; }

.aco-hero-busca-btn {
    background: var(--gold-gradient);
    color: #050911; border: none;
    padding: 12px 24px; border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 14px; font-weight: 700;
    letter-spacing: .04em; cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(201,162,39,.35);
    transition: var(--transition);
}

.aco-hero-busca-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,162,39,.5);
}

/* ── BADGES HERO ────────────────────────────────────────────────────────────── */
.aco-hero-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }

.aco-hero-badge {
    border: 1px solid rgba(255,255,255,.12);
    color: var(--text-dim);
    background: rgba(255,255,255,.04);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px; font-weight: 500;
    letter-spacing: .04em;
    transition: var(--transition);
}

.aco-hero-badge:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,162,39,.1);
    transform: translateY(-2px);
}

.aco-hero-badge-wa {
    background: rgba(37,211,102,.1);
    border-color: rgba(37,211,102,.3);
    color: #00C48C;
}

.aco-hero-badge-wa:hover { background: rgba(37,211,102,.2); }

/* ── SCROLL INDICATOR ───────────────────────────────────────────────────────── */
.aco-hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.aco-hero-scroll span { font-size: 10px; letter-spacing: .2em; color: var(--gold); font-weight: 600; }

.aco-hero-scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: .8; }
    50%       { transform: scaleY(.6); opacity: .4; }
}

/* ── STATS BAR ──────────────────────────────────────────────────────────────── */
.aco-stats-bar {
    background: rgba(201,162,39,.07);
    border-top: 1px solid rgba(201,162,39,.15);
    border-bottom: 1px solid rgba(201,162,39,.15);
    padding: 20px 0;
}

.aco-stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    text-align: center; gap: 0;
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
}

.aco-stat-item {
    padding: 12px 20px;
    border-right: 1px solid rgba(201,162,39,.15);
}

.aco-stat-item:last-child { border-right: none; }

.aco-stat-num {
    font-size: 32px; font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 4px;
}

.aco-stat-label {
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-faint); font-weight: 500;
}

/* ── CATEGORIAS ─────────────────────────────────────────────────────────────── */
.aco-categorias-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.aco-categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
    gap: 12px; margin-top: 40px;
}

.aco-cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none; color: var(--text);
    transition: var(--transition);
    position: relative; overflow: hidden;
}

.aco-cat-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s;
}

.aco-cat-card:hover {
    border-color: var(--border-gold);
    background: rgba(201,162,39,.05);
    transform: translateY(-4px);
}

.aco-cat-card:hover::before { transform: scaleX(1); }
.aco-cat-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.aco-cat-nome { font-size: 14px; font-weight: 600; letter-spacing: .04em; margin-bottom: 4px; }
.aco-cat-count { font-size: 12px; color: var(--gold); font-weight: 700; }

/* ── SEÇÕES ─────────────────────────────────────────────────────────────────── */
.aco-section { padding: 80px 0; }
.aco-section-dark { background: var(--bg-deep); }
.aco-section-surface { background: var(--bg-surface); }

.aco-section-header { margin-bottom: 56px; }

.aco-section-label {
    font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}

.aco-section-label::before,
.aco-section-label::after {
    content: ''; display: inline-block;
    height: 1px; width: 32px; background: var(--gold); opacity: .5;
}

.aco-section-title {
    font-size: clamp(28px,4vw,46px); font-weight: 800;
    line-height: 1.15; letter-spacing: -.03em; color: var(--white);
}

.aco-section-title span { color: var(--gold-light); }

.aco-section-desc {
    font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-top: 12px;
    max-width: 520px;
}

/* ── CONTAINER & GRID ───────────────────────────────────────────────────────── */
.aco-container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px,4vw,60px); }

.aco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 20px; margin-top: 36px;
}

/* ── CARDS DE IMÓVEL ────────────────────────────────────────────────────────── */
.aco-card-imovel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.aco-card-imovel::after {
    content: ''; position: absolute;
    inset: 0; border-radius: var(--radius-lg);
    border: 1px solid transparent;
    background: var(--gold-gradient) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0; transition: opacity .35s;
    pointer-events: none;
}

.aco-card-imovel:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow), var(--glow-gold);
}

.aco-card-imovel:hover::after { opacity: 1; }

.aco-card-thumb {
    position: relative; aspect-ratio: 16/10; overflow: hidden;
    background: rgba(255,255,255,.03);
}

.aco-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; transition: transform .6s ease;
}

.aco-card-imovel:hover .aco-card-thumb img { transform: scale(1.06); }

.aco-thumb-placeholder {
    display: flex; align-items: center; justify-content: center;
    height: 200px; font-size: 60px; color: rgba(255,255,255,.1);
}

.aco-card-codigo {
    position: absolute; top: 14px; left: 14px;
    background: rgba(5,9,17,.85); backdrop-filter: blur(8px);
    color: var(--gold-light); font-size: 10px; font-weight: 700;
    letter-spacing: .1em; padding: 4px 12px;
    border-radius: 3px; border: 1px solid var(--border-gold);
}

.aco-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--gold-gradient); color: #050911;
    font-size: 10px; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
}

/* ── BADGE EXCLUSIVO ── */
.aco-badge-exclusive {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(201,162,39,.92), rgba(232,201,122,.88));
    color: #050911;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(201,162,39,.45);
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* ── CARD EXCLUSIVO — borda dourada + brilho ── */
.aco-card-exclusive {
    border-color: rgba(201,162,39,.35) !important;
    box-shadow: 0 0 0 1px rgba(201,162,39,.15), 0 4px 24px rgba(0,0,0,.3) !important;
}
.aco-card-exclusive:hover {
    border-color: rgba(201,162,39,.65) !important;
    box-shadow: 0 0 0 1px rgba(201,162,39,.3), 0 8px 40px rgba(201,162,39,.18), 0 16px 48px rgba(0,0,0,.4) !important;
}
.aco-card-exclusive::after {
    border-image: linear-gradient(135deg, #C9A227, transparent, #C9A227) 1 !important;
    opacity: 0.6;
}

.aco-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.aco-card-body h3 {
    font-size: 16px; font-weight: 700; line-height: 1.4;
    letter-spacing: -.01em; margin-bottom: 6px; color: var(--white);
}

.aco-card-body h3 a { transition: color .2s; }
.aco-card-body h3 a:hover { color: var(--gold-light); }

.aco-card-bairro {
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 14px; opacity: .8;
}

.aco-card-specs {
    display: flex; gap: 14px; font-size: 12px;
    color: var(--text-dim); margin-bottom: 16px; flex-wrap: wrap;
}

.aco-card-specs span { display: flex; align-items: center; gap: 4px; }

.aco-card-valor {
    font-size: 22px; font-weight: 800; letter-spacing: -.02em;
    color: var(--white); margin: auto 0 18px;
}

.aco-card-valor small {
    font-size: 13px; font-weight: 400;
    color: var(--text-faint); margin-right: 4px;
}

.aco-card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

/* ── BOTÕES ─────────────────────────────────────────────────────────────────── */
.aco-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px; border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 13px; font-weight: 600;
    letter-spacing: .04em; cursor: pointer; border: none;
    transition: var(--transition); text-decoration: none;
}

.aco-btn-gold {
    background: var(--gold-gradient); color: #050911;
    box-shadow: 0 4px 16px rgba(201,162,39,.3);
}

.aco-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,.5); }

.aco-btn-outline {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
}

.aco-btn-outline:hover { background: rgba(201,162,39,.1); }

.aco-btn-glass {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    color: var(--white);
}

.aco-btn-glass:hover { background: rgba(255,255,255,.1); }

.aco-btn-wa { background: #25D366; color: #fff; }
.aco-btn-wa:hover { background: #1ebe5c; box-shadow: 0 6px 20px rgba(37,211,102,.4); }

.aco-btn-lg { padding: 16px 32px; font-size: 15px; border-radius: var(--radius-md); }
.aco-btn-full { width: 100%; justify-content: center; }

/* ── FORMULÁRIOS ────────────────────────────────────────────────────────────── */
.aco-form-page {
    min-height: 100vh; background: var(--bg-deep);
    display: flex; align-items: center; justify-content: center;
    padding: 80px 20px;
}

.aco-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    width: 100%; max-width: 520px;
    position: relative; overflow: hidden;
}

.aco-form-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold-gradient);
}

.aco-form-title {
    font-size: 26px; font-weight: 800; letter-spacing: -.02em;
    color: var(--white); margin-bottom: 6px;
}

.aco-form-subtitle { font-size: 14px; color: var(--text-dim); margin-bottom: 32px; }

.aco-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.aco-field label {
    font-size: 12px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--text-dim);
}

.aco-field input,
.aco-field select,
.aco-field textarea {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-family: var(--font); font-size: 14px;
    color: var(--white); width: 100%;
    transition: var(--transition);
}

.aco-field input:focus,
.aco-field select:focus,
.aco-field textarea:focus {
    outline: none; border-color: var(--gold);
    background: rgba(201,162,39,.06);
    box-shadow: 0 0 0 3px rgba(201,162,39,.1);
}

.aco-field input::placeholder { color: var(--text-faint); }
.aco-field select option { background: var(--bg-surface); color: white; }

.aco-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.aco-form-msg {
    padding: 14px 16px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 500; margin-top: 8px;
}

.aco-form-msg.sucesso { background: rgba(0,196,140,.1); border: 1px solid rgba(0,196,140,.3); color: #00C48C; }
.aco-form-msg.erro    { background: rgba(255,71,87,.1);  border: 1px solid rgba(255,71,87,.3);  color: #FF4757; }

/* ── DIFERENCIAIS ───────────────────────────────────────────────────────────── */
.aco-dif-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
}

.aco-dif-item {
    padding: 40px 32px;
    background: var(--bg-surface);
    transition: var(--transition);
    position: relative; overflow: hidden;
}

.aco-dif-item::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold-gradient); transition: width .5s;
}

.aco-dif-item:hover { background: rgba(201,162,39,.04); }
.aco-dif-item:hover::before { width: 100%; }

.aco-dif-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.aco-dif-item h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -.01em; }
.aco-dif-item p  { font-size: 14px; color: var(--text-dim); line-height: 1.75; }

/* ── PARCEIROS CARDS ────────────────────────────────────────────────────────── */
.aco-parceiros-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.aco-parceiro-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px 32px;
    position: relative; overflow: hidden; transition: var(--transition);
}

.aco-parceiro-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--glow-gold);
}

.aco-parceiro-destaque {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, rgba(201,162,39,.08), rgba(201,162,39,.02));
}

.aco-parceiro-card > span  { font-size: 40px; display: block; margin-bottom: 20px; }
.aco-parceiro-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -.01em; }
.aco-parceiro-card p  { font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-bottom: 28px; }

.aco-parc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 700; letter-spacing: .06em;
    background: var(--gold-gradient); color: #050911;
    transition: var(--transition);
}

.aco-parc-btn:hover { box-shadow: 0 8px 24px rgba(201,162,39,.4); transform: translateY(-2px); }

.aco-parceiro-destaque .aco-parc-btn {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
}

.aco-parceiro-destaque .aco-parc-btn:hover { background: rgba(201,162,39,.15); }

/* ── ARQUIVO DE IMÓVEIS ─────────────────────────────────────────────────────── */
.aco-arquivo { min-height: 100vh; background: var(--bg-deep); padding-top: 68px; }

.aco-arquivo-hero {
    padding: 64px 0 48px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.aco-arquivo-hero::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.aco-arquivo-hero h1 {
    font-size: clamp(28px,4vw,48px); font-weight: 800;
    letter-spacing: -.03em; color: var(--white); line-height: 1.15;
}

.aco-arquivo-hero h1 span { color: var(--gold-light); }
.aco-arquivo-sub { font-size: 15px; color: var(--text-dim); margin-top: 8px; }

.aco-filtros {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px;
}

.aco-filtros-titulo {
    font-size: 11px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}

.aco-filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
    gap: 14px; align-items: end;
}

.aco-filtro-campo label {
    font-size: 11px; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-dim);
    display: block; margin-bottom: 6px;
}

.aco-filtro-campo select,
.aco-filtro-campo input[type=text] {
    width: 100%; padding: 11px 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 14px;
    color: var(--white); transition: var(--transition); appearance: none;
}

.aco-filtro-campo select:focus,
.aco-filtro-campo input:focus {
    outline: none; border-color: var(--gold);
    background: rgba(201,162,39,.06);
}

.aco-filtro-campo select option { background: var(--bg-surface); }

.aco-filtro-check label {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text); cursor: pointer;
    text-transform: none; letter-spacing: 0;
}

.aco-btn-buscar {
    background: var(--gold-gradient); color: #050911; border: none;
    padding: 12px 22px; border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 13px; font-weight: 700;
    letter-spacing: .06em; cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}

.aco-btn-buscar:hover { box-shadow: 0 6px 20px rgba(201,162,39,.4); }

.aco-btn-limpar {
    font-size: 13px; color: var(--text-faint);
    text-decoration: underline; margin-left: 10px; cursor: pointer;
}

.aco-contagem { font-size: 13px; color: var(--text-dim); padding: 16px 0; }
.aco-contagem strong { color: var(--white); font-size: 18px; font-weight: 800; margin-right: 4px; }

.aco-paginacao {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 40px 0;
}

.aco-paginacao .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-dim);
    font-size: 14px; font-weight: 500; transition: var(--transition);
}

.aco-paginacao .page-numbers:hover {
    border-color: var(--gold); color: var(--gold-light);
}

.aco-paginacao .page-numbers.current {
    background: var(--gold-gradient);
    color: #050911; font-weight: 800; border-color: transparent;
}

/* ── SINGLE IMÓVEL ──────────────────────────────────────────────────────────── */
.aco-single-imovel { min-height: 100vh; background: var(--bg-deep); padding-top: 68px; }

.aco-imovel-hero {
    position: relative;
    height: 60vh; min-height: 400px; max-height: 600px;
    display: flex; align-items: flex-end; overflow: hidden;
    background: var(--bg-surface);
}

.aco-imovel-hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: .7;
}

.aco-imovel-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,9,17,.95) 0%, rgba(5,9,17,.3) 70%, transparent 100%);
}

.aco-imovel-hero-content {
    position: relative; z-index: 2;
    padding: 40px clamp(20px,4vw,60px); width: 100%;
}

.aco-imovel-hero h1 {
    font-size: clamp(22px,3.5vw,40px); font-weight: 800;
    letter-spacing: -.02em; color: var(--white); line-height: 1.2; margin-bottom: 10px;
}

.aco-imovel-hero-preco {
    font-size: clamp(26px,3vw,38px); font-weight: 800;
    color: var(--gold-light); letter-spacing: -.02em;
}

.aco-codigo-badge {
    background: rgba(201,162,39,.15);
    border: 1px solid var(--border-gold);
    color: var(--gold-light); font-size: 11px; font-weight: 700;
    padding: 5px 14px; border-radius: 3px; letter-spacing: .08em;
    display: inline-block;
}

.aco-status {
    font-size: 11px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; padding: 5px 14px; border-radius: 3px;
    color: white; display: inline-block;
}

.aco-imovel-hero-meta {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap; margin-bottom: 12px;
}

.aco-breadcrumb {
    font-size: 12px; color: var(--text-faint); padding: 20px 0;
    display: flex; align-items: center; gap: 8px;
}

.aco-breadcrumb a { color: var(--gold-dim); transition: color .2s; }
.aco-breadcrumb a:hover { color: var(--gold-light); }
.aco-breadcrumb-sep { color: var(--border); }

.aco-single-layout {
    display: grid; grid-template-columns: 1fr 360px;
    gap: 32px; padding: 40px 0 80px; align-items: start;
}

.aco-single-sidebar { position: sticky; top: 84px; }

.aco-specs-bar {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden; margin: 24px 0;
}

.aco-spec {
    flex: 1; padding: 18px 12px; text-align: center;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}

.aco-spec:last-child { border-right: none; }
.aco-spec > span   { font-size: 20px; }
.aco-spec strong   { font-size: 18px; font-weight: 800; color: var(--white); }
.aco-spec small    { font-size: 10px; color: var(--text-faint); letter-spacing: .06em; text-transform: uppercase; }

.aco-single-section {
    margin-bottom: 36px; padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.aco-single-section h2 {
    font-size: 20px; font-weight: 700; color: var(--white);
    margin-bottom: 18px; letter-spacing: -.01em;
    display: flex; align-items: center; gap: 12px;
}

.aco-single-section h2::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}

.aco-diferenciais-list {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; list-style: none;
}

.aco-diferenciais-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px; color: var(--text);
    border-left: 2px solid var(--gold);
}

.aco-mapa iframe {
    width: 100%; height: 340px;
    border-radius: var(--radius-md); border: none; display: block;
}

/* Sidebar */
.aco-sidebar-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px; margin-bottom: 14px;
}

.aco-sidebar-box h3 {
    font-size: 14px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--text-dim);
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.aco-sidebar-valor { border-top: 2px solid var(--gold); }

.aco-valor-destaque {
    font-size: 32px; font-weight: 800;
    color: var(--gold-light); letter-spacing: -.02em; margin-bottom: 8px;
}

.aco-valor-destaque span {
    font-size: 16px; font-weight: 300;
    color: var(--text-faint); margin-right: 2px;
}

.aco-badge-sidebar {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text-dim); margin: 3px 0;
}

.aco-info-table { width: 100%; border-collapse: collapse; }
.aco-info-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.aco-info-table td { padding: 9px 4px; font-size: 13px; }
.aco-info-table td:first-child {
    font-size: 11px; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; color: var(--text-faint); width: 44%;
}
.aco-info-table td:last-child { color: var(--white); }

/* Formulário de interesse */
.aco-form-interesse input,
.aco-form-interesse textarea {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font); font-size: 14px;
    color: var(--white); width: 100%; margin-bottom: 10px;
    transition: var(--transition);
}

.aco-form-interesse input::placeholder,
.aco-form-interesse textarea::placeholder { color: var(--text-faint); }

.aco-form-interesse input:focus,
.aco-form-interesse textarea:focus {
    outline: none; border-color: var(--gold);
    background: rgba(201,162,39,.06);
}

.aco-check-pdf {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12px; color: var(--text-dim); cursor: pointer; margin-bottom: 14px;
}

/* Compartilhar */
.aco-compartilhar { display: flex; gap: 8px; }

.aco-share-wa,
.aco-share-fb,
.aco-share-tw {
    flex: 1; padding: 9px 10px; border-radius: var(--radius-sm);
    text-align: center; font-size: 12px; font-weight: 600;
    letter-spacing: .04em; transition: var(--transition);
}

.aco-share-wa { background: #25D366; color: #fff; }
.aco-share-fb { background: #1877f2; color: #fff; }
.aco-share-tw { background: #1da1f2; color: #fff; }

.aco-share-wa:hover,
.aco-share-fb:hover,
.aco-share-tw:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ── MODAL ──────────────────────────────────────────────────────────────────── */
.aco-modal {
    position: fixed; inset: 0;
    background: rgba(5,9,17,.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}

.aco-modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg); padding: 40px;
    max-width: 440px; width: 90%;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,.6), var(--glow-gold);
}

.aco-modal-content::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.aco-modal-content h3 {
    font-size: 22px; font-weight: 800;
    color: var(--white); margin-bottom: 8px; letter-spacing: -.01em;
}

.aco-modal-content p { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }

.aco-modal-content input {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    font-family: var(--font); font-size: 14px;
    color: var(--white); width: 100%; margin-bottom: 12px;
    transition: var(--transition);
}

.aco-modal-content input:focus {
    outline: none; border-color: var(--gold);
    background: rgba(201,162,39,.06);
}

.aco-modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none;
    font-size: 24px; cursor: pointer;
    color: var(--text-faint); transition: color .2s;
}

.aco-modal-close:hover { color: var(--white); }

/* ── DASHBOARD ──────────────────────────────────────────────────────────────── */
.aco-dashboard-page { min-height: 100vh; background: var(--bg-deep); padding-top: 68px; }

.aco-dashboard-layout {
    display: grid; grid-template-columns: 260px 1fr;
    gap: 0; min-height: calc(100vh - 68px);
}

.aco-dash-sidebar {
    background: var(--bg-surface);
    border-right: 1px solid var(--border); padding: 32px 0;
}

.aco-dash-user {
    padding: 0 24px 28px;
    border-bottom: 1px solid var(--border); margin-bottom: 20px;
}

.aco-dash-user-icon {
    width: 56px; height: 56px;
    background: rgba(201,162,39,.15);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 12px;
}

.aco-dash-user-name { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 2px; }

.aco-dash-user-type {
    font-size: 11px; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gold);
    background: rgba(201,162,39,.1); padding: 3px 10px;
    border-radius: 20px; display: inline-block;
}

.aco-dash-nav { list-style: none; }

.aco-dash-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 24px; font-size: 14px; font-weight: 500;
    color: var(--text-dim); transition: var(--transition);
}

.aco-dash-nav a:hover,
.aco-dash-nav a.active {
    background: rgba(201,162,39,.06);
    color: var(--white);
    border-left: 2px solid var(--gold);
}

.aco-dash-content { padding: 36px; }

.aco-dash-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 16px; margin-bottom: 36px;
}

.aco-dash-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 24px;
}

.aco-dash-card-num { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 4px; }

.aco-dash-card-label {
    font-size: 12px; color: var(--text-faint); font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase;
}

/* ── TERMOS ─────────────────────────────────────────────────────────────────── */
.aco-termos {
    background: rgba(201,162,39,.06);
    border: 1px solid rgba(201,162,39,.2);
    border-radius: var(--radius-md); padding: 20px;
    font-size: 13px; color: var(--text-dim); line-height: 1.75;
    margin-bottom: 20px; max-height: 160px; overflow-y: auto;
}

.aco-termos h4 { color: var(--gold-light); font-size: 14px; font-weight: 700; margin-bottom: 10px; }

.aco-termos-check {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--text); cursor: pointer; margin-bottom: 20px;
}

.aco-termos-check input {
    width: 18px; height: 18px; accent-color: var(--gold);
    margin-top: 2px; flex-shrink: 0;
}

/* ── WA FLOAT + SUBMIT + CTA ────────────────────────────────────────────────── */
.aco-btn-wa-grande {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: #fff;
    padding: 15px 24px; border-radius: var(--radius-md);
    font-weight: 700; font-size: 15px;
    text-decoration: none; transition: var(--transition); margin: 12px 0;
}

.aco-btn-wa-grande:hover {
    background: #1ebe5c;
    box-shadow: 0 8px 28px rgba(37,211,102,.4);
    transform: translateY(-2px);
}

.aco-btn-outline-grande {
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-gold); color: var(--gold-light);
    padding: 13px 24px; border-radius: var(--radius-md);
    font-weight: 600; font-size: 14px; cursor: pointer;
    background: transparent; transition: var(--transition); text-decoration: none;
}

.aco-btn-outline-grande:hover {
    background: rgba(201,162,39,.1);
    box-shadow: 0 4px 20px rgba(201,162,39,.2);
}

.aco-btn-submit {
    background: var(--gold-gradient); color: #050911; border: none;
    padding: 15px; width: 100%;
    border-radius: var(--radius-md);
    font-family: var(--font); font-size: 15px; font-weight: 700;
    letter-spacing: .04em; cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 16px rgba(201,162,39,.3);
}

.aco-btn-submit:hover {
    box-shadow: 0 8px 28px rgba(201,162,39,.5);
    transform: translateY(-2px);
}

.aco-wa-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 24px rgba(37,211,102,.5);
    z-index: 900; text-decoration: none; transition: var(--transition);
    animation: waPulse 3s infinite;
}

.aco-wa-float:hover { transform: scale(1.12); }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
    50%       { box-shadow: 0 6px 40px rgba(37,211,102,.8); }
}

.aco-nenhum-resultado { text-align: center; padding: 80px 20px; color: var(--text-dim); }

.aco-cta-bottom {
    background: var(--bg-surface);
    border-top: 1px solid var(--border); padding: 72px 0; text-align: center;
}

.aco-cta-bottom h2 {
    font-size: clamp(24px,3.5vw,38px); font-weight: 800;
    letter-spacing: -.02em; color: var(--white); margin-bottom: 12px;
}

.aco-cta-bottom p { color: var(--text-dim); margin-bottom: 32px; }

.aco-cta-acoes { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVO ─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .aco-single-layout      { grid-template-columns: 1fr; }
    .aco-dif-grid           { grid-template-columns: 1fr 1fr; }
    .aco-parceiros-cards    { grid-template-columns: 1fr; }
    .aco-dashboard-layout   { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .aco-hero-busca-campos  { grid-template-columns: 1fr 1fr; }
    .aco-single-sidebar     { position: static; }
    .aco-nav-links          { display: none; }
}

@media (max-width: 640px) {
    .aco-hero-busca-campos  { grid-template-columns: 1fr; }
    .aco-grid               { grid-template-columns: 1fr; }
    .aco-dif-grid           { grid-template-columns: 1fr; gap: 1px; }
    .aco-diferenciais-list  { grid-template-columns: 1fr; }
    .aco-specs-bar          { flex-wrap: wrap; }
    .aco-spec               { min-width: 33%; }
    .aco-stats-grid         { grid-template-columns: 1fr 1fr; }
    .aco-stat-item          { border-right: none; border-bottom: 1px solid rgba(201,162,39,.15); }
}

@media (max-width: 820px){.aco-ficha-grid{grid-template-columns:1fr !important}}
