/* =========================================================
   Adelmo Santana — Consultor Imobiliário
   Sistema de design: Editorial Elegante — teal + azul
   ========================================================= */

:root {
    --bg: #F7F9FC;
    --bg-alt: #EEF2F8;
    --surface: #FFFFFF;
    --ink: #101828;
    --ink-soft: #475467;
    --ink-muted: #667085;
    --navy: #082E67;       /* teal — cor de marca */
    --navy-deep: #041F4A;  /* teal profundo */
    --brick: #D71920;      /* azul — accent de destaque */
    --brick-deep: #A90F16; /* azul profundo */
    --gold: #F5C451;       /* azul claro — realces sobre fundo escuro */
    --line: #DCE3EE;
    --line-strong: #C4CEDD;
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 16px 40px -20px rgba(15, 42, 40, 0.35);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brick);
    font-weight: 600;
    margin: 0 0 14px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy-deep);
    margin: 0;
    line-height: 1.15;
    font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { color: var(--ink-soft); margin: 0; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid transparent;
    transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color .2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brick); color: #fff; }
.btn-primary:hover { background: var(--brick-deep); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: var(--surface); border-color: var(--line-strong); color: var(--navy-deep); }
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(248, 251, 251, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-deep);
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}
.brand small {
    display: block;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: 0.03em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
}
.nav-links a:hover { color: var(--brick); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
    background: var(--bg);
    color: var(--ink);
    padding: 76px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 8%, rgba(8, 46, 103, 0.16), transparent 50%),
        radial-gradient(circle at -5% 95%, rgba(215, 25, 32, 0.10), transparent 45%);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.hero .eyebrow { color: var(--brick); }
.hero h1 { color: var(--navy-deep); white-space: pre-line; }
.hero-sub {
    color: var(--ink-soft);
    font-size: 17px;
    max-width: 480px;
    margin-top: 20px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-tags {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px;
}
.hero-tags span {
    font-size: 13px; font-weight: 600; color: var(--navy-deep);
    background: var(--surface);
    border: 1px solid var(--line-strong); padding: 7px 14px; border-radius: 999px;
}
.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--navy), var(--navy-deep));
    box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.seal {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(4,31,74,0.86);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(125,211,252,0.55);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.seal-ring {
    width: 46px; height: 46px; border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 13px;
    color: var(--gold);
}
.seal strong { display: block; font-size: 14px; }
.seal span { display: block; font-size: 12px; color: rgba(255,255,255,0.7); }


/* ---------- Stats strip ---------- */
.stats {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 34px 0;
    gap: 20px;
}
.stat b {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--navy-deep);
    display: block;
}
.stat span { font-size: 13.5px; color: var(--ink-muted); }

/* ---------- Section shell ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head {
    max-width: 640px;
    margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 16px; }

/* ---------- Serviços ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color .2s ease, transform .2s ease;
}
.service-card:hover { border-color: var(--brick); transform: translateY(-4px); }
.service-num {
    font-family: var(--font-display);
    color: var(--brick);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}
.service-card h3 { margin-bottom: 10px; font-size: 19px; }
.service-card p { font-size: 14.5px; }

/* ---------- Categorias ---------- */
.cat-strip {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.cat-pill {
    border: 1px solid var(--line-strong);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: var(--surface);
}

/* ---------- Imóveis ---------- */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.filter-btn {
    border: 1px solid var(--line-strong);
    background: var(--surface);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
}
.filter-btn.is-active, .filter-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.imoveis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.imovel-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.imovel-photo { position: relative; aspect-ratio: 4/3; background: var(--bg-alt); overflow: hidden; }
.imovel-photo img { width: 100%; height: 100%; object-fit: cover; }
.imovel-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--brick); color: #fff;
    font-size: 12px; font-weight: 700;
    padding: 6px 13px; border-radius: 999px;
}
.imovel-ficha {
    position: absolute; top: 14px; right: 14px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(11,88,80,0.85); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 11px;
    border: 1.5px solid var(--gold);
}
.imovel-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.imovel-cat { font-size: 12.5px; font-weight: 700; color: var(--brick); text-transform: uppercase; letter-spacing: .05em; }
.imovel-body h3 { font-size: 18px; }
.imovel-loc { font-size: 13.5px; color: var(--ink-muted); display: flex; align-items: center; gap: 6px; }
.imovel-desc { font-size: 14px; flex: 1; }
.imovel-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 8px; padding-top: 16px; border-top: 1px dashed var(--line-strong);
}
.imovel-preco { font-family: var(--font-display); font-size: 16px; color: var(--navy-deep); font-weight: 600; }
.imovel-link { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-muted); }

/* ---------- Sobre ---------- */
.sobre-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}
.sobre-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
    background: var(--bg-alt);
}
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre-list { margin-top: 26px; display: grid; gap: 14px; }
.sobre-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.check {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: var(--navy); color: #fff; font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.sobre-credentials {
    display: flex; gap: 26px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line);
}
.sobre-credentials div b { display: block; font-family: var(--font-display); font-size: 22px; color: var(--navy-deep); }
.sobre-credentials div span { font-size: 12.5px; color: var(--ink-muted); }

/* ---------- Depoimentos ---------- */
.depo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.depo-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 28px;
}
.depo-quote { font-family: var(--font-display); font-size: 19px; color: var(--navy-deep); line-height: 1.5; }
.depo-quote::before { content: "\201C"; color: var(--brick); }
.depo-quote::after { content: "\201D"; color: var(--brick); }
.depo-who { margin-top: 18px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.depo-who span { font-weight: 400; color: var(--ink-muted); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; max-width: 780px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 20px 24px; font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
    color: var(--navy-deep); display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q::after { content: "+"; font-size: 22px; color: var(--brick); font-weight: 400; transition: transform .2s ease; }
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 14.5px; }

/* ---------- Contato / CTA ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--brick), var(--brick-deep));
    border-radius: var(--radius-lg);
    padding: 56px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.78); margin-top: 12px; }
.contact-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius);
    padding: 26px;
    display: grid;
    gap: 16px;
}
.contact-row { display: flex; align-items: center; gap: 14px; font-size: 14.5px; }
.contact-row b { display: block; font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.icon-dot {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(125,211,252,0.18);
    color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px;
}

.form-section { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
input, select, textarea {
    width: 100%;
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14.5px;
    background: var(--bg);
    color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy); }
textarea { resize: vertical; min-height: 100px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brick-deep); color: rgba(255,255,255,0.7); padding: 52px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 34px; }
.footer-grid h4 { color: #fff; font-size: 14px; font-family: var(--font-body); font-weight: 700; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { font-size: 14px; color: rgba(255,255,255,0.62); }
.footer-grid a:hover { color: var(--gold); }
.footer-grid li { margin-bottom: 10px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12.5px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 50;
    background: #25D366; color: #fff; width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    font-size: 26px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-grid, .sobre-grid, .cta-band { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .imoveis-grid { grid-template-columns: repeat(2, 1fr); }
    .depo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 720px) {
    .nav-links { display: none; }
    .services-grid, .imoveis-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .cta-band, .form-section { padding: 30px; }
    .header-row { padding: 14px 0; }
}


/* ===== Signature upgrade: navy + red, immersive property carousel ===== */
.hero { padding-top: 64px; background: linear-gradient(135deg,#fff 0%,#f5f8fd 58%,#edf2f9 100%); }
.hero-grid { grid-template-columns: .88fr 1.12fr; gap: 52px; }
.hero h1 { font-size: clamp(2.8rem,5vw,5rem); letter-spacing:-.045em; }
.hero-sub { font-size:18px; line-height:1.75; }
.hero-visual { aspect-ratio: 1.08/1; border-radius: 30px 30px 30px 8px; box-shadow:0 32px 80px -30px rgba(4,31,74,.55); isolation:isolate; }
.hero-slides,.hero-slide,.hero-shade { position:absolute; inset:0; width:100%; height:100%; }
.hero-slide { object-fit:cover; opacity:0; transform:scale(1.05); transition:opacity .9s ease,transform 5.5s ease; }
.hero-slide.is-active { opacity:1; transform:scale(1); }
.hero-shade { z-index:1; background:linear-gradient(180deg,transparent 45%,rgba(4,31,74,.62) 100%); pointer-events:none; }
.seal { z-index:3; }
.hero-counter { position:absolute; z-index:3; right:22px; top:22px; display:flex; align-items:center; gap:10px; padding:9px 12px; color:#fff; background:rgba(4,31,74,.72); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.2); border-radius:999px; font-size:11px; letter-spacing:.12em; }
.hero-counter i { width:28px; height:1px; background:rgba(255,255,255,.6); }
.brand-mark { background:var(--navy-deep)!important; border-radius:10px!important; box-shadow:inset 0 -5px 0 var(--brick); }
.site-header { border-bottom:1px solid rgba(8,46,103,.08); }
.service-card,.imovel-card,.depo-card,.form-section { transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.service-card:hover,.imovel-card:hover,.depo-card:hover { transform:translateY(-6px); box-shadow:0 22px 50px -28px rgba(4,31,74,.45); border-color:#aebbd0; }
.imovel-photo { overflow:hidden; }
.imovel-photo img { transition:transform .65s cubic-bezier(.2,.7,.2,1); }
.imovel-card:hover .imovel-photo img { transform:scale(1.055); }
.stats { border-top:4px solid var(--brick); }
.cta-band { background:linear-gradient(135deg,var(--navy-deep),var(--navy)); }
.site-footer { background:var(--navy-deep); border-top:5px solid var(--brick); }
.wa-float { font-size:13px; font-weight:800; letter-spacing:.03em; }
:focus-visible { outline:3px solid rgba(215,25,32,.35); outline-offset:3px; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior:auto!important; transition-duration:.01ms!important; animation-duration:.01ms!important; animation-iteration-count:1!important; } }
@media (max-width:980px){ .hero-grid{grid-template-columns:1fr}.hero-visual{order:0;max-width:none;aspect-ratio:16/10}.hero h1{font-size:clamp(2.6rem,8vw,4.4rem)} }
@media (max-width:720px){ .hero{padding:42px 0 72px}.hero-visual{aspect-ratio:4/3;border-radius:22px 22px 22px 6px}.hero-counter{top:14px;right:14px}.container{padding:0 20px}.header-actions .btn{padding:12px 16px;font-size:13px}.hero-sub{font-size:16px} }

/* ===== Galerias laterais dos imóveis ===== */
.imovel-gallery { position: relative; }
.imovel-track { display:flex; width:100%; height:100%; transition:transform .62s cubic-bezier(.22,.7,.2,1); will-change:transform; }
.imovel-track img { min-width:100%; width:100%; height:100%; flex:0 0 100%; object-fit:cover; transition:none !important; transform:none !important; }
.imovel-card:hover .imovel-track img { transform:none !important; }
.gallery-arrow { position:absolute; top:50%; z-index:5; transform:translateY(-50%); width:38px; height:38px; border:1px solid rgba(255,255,255,.52); border-radius:50%; background:rgba(4,22,51,.68); color:#fff; display:grid; place-items:center; font-size:25px; line-height:1; cursor:pointer; opacity:0; transition:.25s ease; backdrop-filter:blur(8px); }
.gallery-prev { left:12px; }.gallery-next { right:12px; }
.imovel-gallery:hover .gallery-arrow { opacity:1; }
.gallery-arrow:hover { background:#c41e2f; border-color:#c41e2f; transform:translateY(-50%) scale(1.06); }
.gallery-dots { position:absolute; z-index:5; left:50%; bottom:13px; transform:translateX(-50%); display:flex; gap:5px; padding:5px 7px; border-radius:999px; background:rgba(3,18,43,.42); backdrop-filter:blur(7px); }
.gallery-dots i { display:block; width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.48); transition:.25s ease; }
.gallery-dots i.is-active { width:18px; border-radius:999px; background:#fff; }
.gallery-count { position:absolute; right:13px; bottom:12px; z-index:5; background:rgba(3,18,43,.62); color:#fff; border-radius:999px; padding:5px 9px; font-size:11px; font-weight:700; backdrop-filter:blur(8px); }

/* Vitrine contínua: imagens passando de lado */
.vitrine-wrap { overflow:hidden; margin:4px 0 32px; padding:4px 0 10px; mask-image:linear-gradient(to right,transparent,#000 5%,#000 95%,transparent); -webkit-mask-image:linear-gradient(to right,transparent,#000 5%,#000 95%,transparent); }
.vitrine-track { display:flex; gap:14px; width:max-content; animation:vitrineMove 42s linear infinite; }
.vitrine-wrap:hover .vitrine-track { animation-play-state:paused; }
.vitrine-item { position:relative; width:245px; height:150px; flex:0 0 auto; overflow:hidden; border-radius:18px; box-shadow:0 12px 30px rgba(4,25,59,.12); background:#e9eef5; }
.vitrine-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s ease; }
.vitrine-item:hover img { transform:scale(1.05); }
.vitrine-item span { position:absolute; left:12px; bottom:10px; background:rgba(4,24,56,.77); color:#fff; padding:6px 10px; border-radius:999px; font-size:11px; font-weight:700; backdrop-filter:blur(7px); }
@keyframes vitrineMove { from { transform:translateX(0); } to { transform:translateX(calc(-50% - 7px)); } }
@media (max-width:700px) { .gallery-arrow{opacity:1;width:34px;height:34px}.vitrine-item{width:205px;height:128px}.vitrine-track{animation-duration:34s} }
@media (prefers-reduced-motion:reduce) { .vitrine-track{animation:none}.imovel-track{transition:none} }
