/* =============================================================
   IMOBILIERICK — Identidade Visual
   Dark · Ouro · Champanhe
   ============================================================= */

/* ── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
    --bg:          #0A0A0A;
    --bg-2:        #131313;
    --bg-3:        #1C1C1C;
    --gold:        #C9A878;
    --gold-light:  #E2C99A;
    --gold-dark:   #9B7A4C;
    --white:       #F0EDE8;
    --text:        #C8C5C0;
    --muted:       #6A6762;
    --border:      rgba(201, 168, 120, 0.12);
    --border-mid:  rgba(201, 168, 120, 0.25);
    --border-hi:   rgba(201, 168, 120, 0.45);

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-ui:      'Inter', system-ui, -apple-system, sans-serif;

    --max-w: 1200px;
    --nav-h: 80px;
    --pad:   40px;
    --section-gap: 120px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    font-weight: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── UTILITÁRIOS ────────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.section-label {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--white);
}
.section-title em {
    font-style: italic;
    color: var(--gold-light);
}

.section-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-sub {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── BOTÕES ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
    background: var(--gold);
    color: #0A0A0A;
}
.btn--gold:hover { background: var(--gold-light); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-hi);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--sm  { padding: 10px 20px; font-size: 11px; }
.btn--lg  { padding: 17px 38px; font-size: 13px; }

/* ── LOGO ───────────────────────────────────────────────────── */
.logo-mark {
    width: 46px;
    height: 62px;
    flex-shrink: 0;
}
.logo-mark--sm { width: 34px; height: 46px; }

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.logo-text__brand {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: var(--white);
    line-height: 1;
}
.logo-text__name {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    line-height: 1;
}

/* ── FADE-IN ────────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── NAVEGAÇÃO ──────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 600;
    height: var(--nav-h);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border);
}

.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(240, 237, 232, 0.78);
    text-shadow: 0 1px 8px rgba(0,0,0,0.55);
    transition: color 0.2s;
}
.nav__link:hover { color: var(--gold-light); }

/* mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 600;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.nav--open .nav__toggle span:nth-child(1),
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2),
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3),
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* slideshow de fotos */
.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
}

/* Cada slide tem animação própria — as transições se sobrepõem,
   eliminando o flash preto: enquanto um sai, o próximo já está entrando */
.hero__slide:nth-child(1) { animation: cf1 18s ease-in-out infinite; }
.hero__slide:nth-child(2) { animation: cf2 18s ease-in-out infinite; }
.hero__slide:nth-child(3) { animation: cf3 18s ease-in-out infinite; }

@keyframes cf1 {
    0%, 27.8%  { opacity: 1; }   /* visível 0-5s */
    38.9%      { opacity: 0; }   /* apagado em 7s */
    88.9%      { opacity: 0; }   /* aguarda até 16s */
    100%       { opacity: 1; }   /* reaparece no loop */
}
@keyframes cf2 {
    0%, 27.8%  { opacity: 0; }   /* aguarda 0-5s */
    38.9%      { opacity: 1; }   /* visível em 7s */
    61.1%      { opacity: 1; }   /* segura até 11s */
    72.2%      { opacity: 0; }   /* apagado em 13s */
    100%       { opacity: 0; }
}
@keyframes cf3 {
    0%, 61.1%  { opacity: 0; }   /* aguarda 0-11s */
    72.2%      { opacity: 1; }   /* visível em 13s */
    94.4%      { opacity: 1; }   /* segura até 17s */
    100%       { opacity: 0; }   /* apaga no loop */
}

/* overlay escuro para legibilidade do texto */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(10, 10, 10, 0.30) 0%,
            rgba(10, 10, 10, 0.55) 50%,
            rgba(10, 10, 10, 0.82) 100%);
    z-index: 1;
}

/* decorative vertical lines via overlay pseudo */
.hero__overlay::before,
.hero__overlay::after {
    content: '';
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
    opacity: 0.2;
}
.hero__overlay::before { right: 14%; top: 0; height: 55%; }
.hero__overlay::after  { left: 14%; bottom: 0; height: 40%; }

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--nav-h) + 60px) var(--pad) 80px;
    max-width: 820px;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 44px;
}

.hero__line {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 100px);
    font-weight: 300;
    line-height: 1.04;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}
.hero__title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero__subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(240, 237, 232, 0.62);
    line-height: 1.8;
    margin-bottom: 52px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero__cta .btn--outline {
    background: rgba(10, 10, 10, 0.45);
    border-color: rgba(240, 237, 232, 0.7);
    color: var(--white);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero__cta .btn--outline:hover {
    background: rgba(10, 10, 10, 0.6);
    border-color: var(--gold);
    color: var(--gold);
}

.hero__creci {
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--muted);
    opacity: 0.5;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero__scroll span {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    49%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── SOBRE ──────────────────────────────────────────────────── */
.sobre {
    padding: var(--section-gap) 0;
    background: var(--bg-2);
}

.sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* visual side */
.sobre__visual { position: relative; }

.sobre__frame {
    position: relative;
    aspect-ratio: 3 / 4;
    max-width: 440px;
    overflow: hidden;
    border: 1px solid var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 120, 0.15), 0 32px 80px rgba(0, 0, 0, 0.45);
}

.sobre__photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sobre__initials {
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 300;
    color: var(--border-mid);
    line-height: 1;
    letter-spacing: -0.04em;
}

.sobre__photo-placeholder > span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.5;
}

/* corner accent */
.sobre__accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--border-mid);
    pointer-events: none;
    z-index: -1;
}

/* content side */
.sobre__content { padding-right: 10px; }

.sobre__content .section-title {
    margin-bottom: 28px;
}

.sobre__text {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 20px;
}
.sobre__text strong { color: var(--white); font-weight: 400; }
.sobre__text em     { color: var(--gold-light); font-style: italic; }

.sobre__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 40px 0;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.stat__number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat__label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.stat__divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── MENU MOBILE (filho direto do body, sem conflito de stacking) ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 500;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.mobile-menu.is-open {
    display: flex;
}
.mobile-menu__link {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240, 237, 232, 0.85);
    transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--gold-light); }

/* ── PROCESSO ───────────────────────────────────────────────── */
.processo {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

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

.processo__card {
    background: var(--bg-2);
    padding: 48px 32px;
    border-top: 2px solid var(--border);
    transition: border-top-color 0.3s ease;
}
.processo__card:hover { border-top-color: var(--gold); }

.processo__number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 300;
    color: var(--border-mid);
    line-height: 1;
    margin-bottom: 28px;
}

.processo__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.processo__text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
}

/* ── IMÓVEIS ────────────────────────────────────────────────── */
.imoveis {
    padding: var(--section-gap) 0;
    background: var(--bg-2);
}

.imoveis__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

/* card */
.imovel-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.35s ease;
}
.imovel-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
}

.imovel-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.imovel-card__img img {
    transition: transform 0.55s ease;
}
.imovel-card:hover .imovel-card__img img {
    transform: scale(1.05);
}

.imovel-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: #0A0A0A;
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.imovel-card__body { padding: 26px; }

.imovel-card__location {
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.imovel-card__name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 12px;
}

.imovel-card__specs {
    list-style: none;
    display: flex;
    gap: 16px;
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 16px;
}
.imovel-card__specs li + li::before {
    content: '·';
    margin-right: 16px;
}

.imovel-card__price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 20px;
}

/* rodapé dos imóveis */
.imoveis__rodape {
    text-align: center;
    padding: 52px 40px;
    border: 1px solid var(--border);
    background: var(--bg);
}
.imoveis__rodape p {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
}

/* ── CTA FINAL ──────────────────────────────────────────────── */
.cta-final {
    padding: 140px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.cta-final__inner {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
}
.cta-final__title em {
    font-style: italic;
    color: var(--gold-light);
}

.cta-final__text {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 44px;
}

.cta-final__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    font-size: 13px;
    color: var(--muted);
}
.cta-final__social a { transition: color 0.2s; }
.cta-final__social a:hover { color: var(--gold); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
    padding: 44px 0 28px;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__info {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    line-height: 1.8;
}

.footer__links {
    display: flex;
    gap: 24px;
}
.footer__links a {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }

.footer__copy {
    text-align: center;
    font-size: 11.5px;
    color: var(--muted);
    opacity: 0.4;
}

/* ── RESPONSIVO ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --pad: 28px; }

    .processo__grid  { grid-template-columns: repeat(2, 1fr); }
    .imoveis__grid   { grid-template-columns: repeat(2, 1fr); }
    .sobre__grid     { gap: 48px; }

    .prop-grid { grid-template-columns: 1fr 320px; gap: 40px; }
}

@media (max-width: 768px) {
    :root {
        --pad: 20px;
        --section-gap: 72px;
    }

    /* nav mobile */
    .nav__toggle { display: flex; }
    .nav__links { display: none; }
    .nav__link { font-size: 18px; letter-spacing: 0.2em; }

    /* hero */
    .hero__content {
        padding-top: calc(var(--nav-h) + 24px);
        padding-bottom: 60px;
    }
    .hero__eyebrow { margin-bottom: 24px; gap: 14px; }
    .hero__title { font-size: clamp(40px, 13vw, 62px); }
    .hero__subtitle { font-size: 14px; }
    .hero__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hero__cta .btn { width: 100%; }

    /* section header */
    .section-header { margin-bottom: 40px; }

    /* sobre */
    .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
    .sobre__visual { display: none; }
    .sobre__stats { flex-wrap: wrap; gap: 20px; }

    /* processo / imoveis */
    .processo__grid { grid-template-columns: 1fr; gap: 2px; }
    .imoveis__grid  { grid-template-columns: 1fr; }
    .imovel-card__specs { flex-wrap: wrap; gap: 6px; }

    /* cta final */
    .cta-final { padding: 80px 0; }

    /* footer */
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer__links { justify-content: center; }
}

@media (max-width: 420px) {
    :root { --pad: 16px; }

    .hero__eyebrow .hero__line { display: none; }
    .hero__title { font-size: clamp(36px, 14vw, 52px); }

    .sobre__stats { gap: 16px; }
    .stat__number { font-size: 22px; }

    .imovel-card__body { padding: 18px; }
    .imovel-card__name { font-size: 20px; }
    .imovel-card__price { font-size: 22px; }

    .footer__links { flex-direction: column; align-items: center; gap: 14px; }
}

/* =============================================================
   PÁGINA DE IMÓVEL INDIVIDUAL
   ============================================================= */

/* hero da página do imóvel */
.prop-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.prop-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.prop-hero:hover .prop-hero__bg { transform: scale(1.03); }

.prop-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10,10,10,0.92) 0%,
        rgba(10,10,10,0.50) 50%,
        rgba(10,10,10,0.20) 100%);
}

.prop-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad) 60px;
}

.prop-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    transition: gap 0.2s;
}
.prop-back:hover { gap: 12px; }

.prop-hero__badge {
    display: inline-block;
    background: var(--gold);
    color: #0A0A0A;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.prop-hero__name {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.prop-hero__location {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.prop-hero__specs {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.prop-hero__specs span {
    font-size: 13px;
    color: var(--text);
    padding: 8px 20px;
    border: 1px solid var(--border-mid);
    margin-right: -1px;
    background: rgba(10,10,10,0.5);
}

.prop-hero__price-hero {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* conteúdo principal do imóvel */
.prop-content {
    padding: 80px 0;
    background: var(--bg);
}

.prop-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.prop-details h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
}

.prop-details p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 16px;
}

.prop-details h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    margin: 40px 0 16px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.prop-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.prop-features li {
    font-size: 14px;
    color: var(--text);
    padding-left: 16px;
    position: relative;
}
.prop-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 1px;
    background: var(--gold);
}

/* card de preço/CTA */
.prop-cta-card {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
    background: var(--bg-2);
    border: 1px solid var(--border-mid);
    padding: 40px 36px;
}

.prop-cta-card__label {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.prop-price {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}

.prop-price-note {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 32px;
}

.prop-cta-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.prop-cta-card__creci {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* galeria */
.prop-gallery {
    padding: 80px 0;
    background: var(--bg-2);
}

.prop-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 4px;
    margin-top: 32px;
}

.prop-gallery__item {
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid var(--border);
}
.prop-gallery__item:first-child {
    grid-row: 1 / 3;
}

.prop-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.prop-gallery__item:hover img { transform: scale(1.05); }

.prop-gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.4;
}

/* responsivo da página de imóvel */
@media (max-width: 900px) {
    .prop-grid { grid-template-columns: 1fr; }
    .prop-cta-card { position: static; }
    .prop-gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .prop-gallery__item:first-child { grid-row: auto; }
    .prop-hero__content { padding-bottom: 48px; }
}

@media (max-width: 600px) {
    .prop-hero { min-height: 56vh; }
    .prop-hero__content { padding-bottom: 36px; }
    .prop-hero__name { font-size: clamp(30px, 9vw, 46px); }
    .prop-hero__specs { gap: 0; }
    .prop-hero__specs span { font-size: 12px; padding: 7px 14px; }
    .prop-hero__price-hero { font-size: 26px; margin-top: 16px; }

    .prop-content { padding: 48px 0; }
    .prop-features { grid-template-columns: 1fr; }

    .prop-cta-card { padding: 28px 20px; }
    .prop-price { font-size: 30px; }

    .prop-gallery { padding: 48px 0; }
    .prop-gallery__grid { grid-template-columns: 1fr; }

    .prop-map-section { padding: 40px 0; }
    .prop-map-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ── SEÇÃO DE MAPA ──────────────────────────────────────────── */
.prop-map-section {
    padding: 64px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.prop-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.prop-map-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.prop-map-address svg {
    flex-shrink: 0;
    color: var(--gold);
}

.prop-map {
    width: 100%;
    height: 540px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.prop-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(30%) contrast(1.05);
}

@media (max-width: 600px) {
    .prop-map { height: 340px; }
}

/* ── FORMULÁRIO DE CONTATO ──────────────────────────────────── */
.contato {
    padding: var(--section-gap) 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.contato__inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.contato__header {
    margin-bottom: 44px;
}

.contato__sub {
    font-size: 14px;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.7;
}

.contato__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.contato__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contato__field label {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.contato__field input {
    background: var(--bg-2);
    border: 1px solid var(--border-mid);
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 300;
    padding: 16px 20px;
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0;
    /* permite selecionar e colar texto nos campos do formulário */
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
}

.contato__field input::placeholder {
    color: var(--muted);
    opacity: 0.45;
}

.contato__field input:focus {
    border-color: var(--gold);
}

.contato__form .btn {
    width: 100%;
    margin-top: 8px;
}

.contato__thanks {
    display: none;
    text-align: center;
    padding: 40px 0;
}
.contato__thanks p {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 8px;
}
.contato__thanks span {
    font-size: 14px;
    color: var(--muted);
}

@media (max-width: 600px) {
    .contato__field input { padding: 14px 16px; font-size: 16px; }
}
