:root {
    --lux-black: #0b0b0d;
    --lux-navy: #0d1b2a;
    --lux-gold: #d4af37;
    --lux-gold-light: #f4d06f;
    --lux-silver: #c0c0c0;
    --lux-ice: #f5f5f5;

    --color-bg: var(--lux-black);
    --color-bg-elevated: #10141c;
    --color-surface: rgba(18, 22, 30, 0.72);
    --color-surface-solid: #141820;
    --color-text: var(--lux-ice);
    --color-muted: rgba(192, 192, 192, 0.85);
    --color-accent: var(--lux-gold);
    --color-accent-dark: #b8962e;
    --color-primary: var(--lux-black);
    --color-primary-light: var(--lux-navy);
    --color-border-gold: rgba(212, 175, 55, 0.28);
    --color-border-gold-strong: rgba(212, 175, 55, 0.45);

    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.4);

    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font: "Montserrat", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    background:
        radial-gradient(ellipse 100% 70% at 50% -15%, rgba(212, 175, 55, 0.14), transparent 52%),
        linear-gradient(180deg, var(--lux-navy) 0%, var(--lux-black) 42%, #050506 100%);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--lux-gold-light);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

a:hover {
    color: var(--lux-gold);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1120px, 100% - 2rem);
    margin-inline: auto;
}

/* ——— Cabeçalho público ——— */
.site-header {
    background: rgba(11, 11, 13, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--lux-ice);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s, filter 0.2s;
}

.logo:hover {
    filter: brightness(1.12) drop-shadow(0 0 12px rgba(212, 175, 55, 0.25));
}

.logo-img {
    height: clamp(42px, 5.2vw, 54px);
    width: auto;
    max-width: min(220px, 50vw);
    object-fit: contain;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1.1rem;
}

.main-nav a {
    color: rgba(245, 245, 245, 0.82);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.4rem 0;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.15rem;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--lux-gold-light);
    text-decoration: none;
}

.nav-admin {
    border: 1px solid var(--color-border-gold-strong);
    padding: 0.4rem 0.85rem !important;
    border-radius: 999px;
    margin-left: 0.35rem;
    background: rgba(212, 175, 55, 0.08);
    letter-spacing: 0.1em;
}

.nav-admin::after {
    display: none;
}

.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-gold);
    color: var(--lux-ice);
    width: 44px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
    content: "";
    display: block;
    height: 2px;
    width: 20px;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
    margin: 5px auto;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(11, 11, 13, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.35rem;
        gap: 0;
        box-shadow: var(--shadow);
        border-bottom: 1px solid var(--color-border-gold);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .main-nav a::after {
        display: none;
    }

    .nav-admin {
        margin-left: 0;
        margin-top: 0.65rem;
        text-align: center;
    }
}

.site-main {
    flex: 1;
}

/* ——— Rodapé ——— */
.site-footer {
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.95) 0%, var(--lux-black) 100%);
    color: rgba(245, 245, 245, 0.72);
    margin-top: auto;
    padding: 1.75rem 0;
    font-size: 0.88rem;
    border-top: 1px solid var(--color-border-gold);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.footer-meta p {
    margin: 0 0 0.35rem;
}

.footer-meta p:last-child {
    margin-bottom: 0;
}

.footer-professional {
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(245, 245, 245, 0.9);
}

.footer-creci {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(245, 245, 245, 0.88);
}

.footer-creci-placeholder {
    font-style: italic;
    color: rgba(192, 192, 192, 0.65);
}

.footer-links a {
    color: var(--lux-gold-light);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.footer-links a:hover {
    color: var(--lux-gold);
}

/* ——— Hero ——— */
.hero {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.18), transparent 55%),
        linear-gradient(165deg, var(--lux-navy) 0%, var(--lux-black) 55%, #060608 100%);
    color: var(--lux-ice);
    padding: clamp(2.75rem, 7vw, 5rem) 0;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.06), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(244, 208, 111, 0.05), transparent 35%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero h1 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

.hero h1::before {
    content: "";
    display: block;
    width: 3rem;
    height: 2px;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light), transparent);
    border-radius: 2px;
}

.hero p {
    margin: 0 0 1.25rem;
    color: rgba(245, 245, 245, 0.82);
    font-size: 1.02rem;
    font-weight: 400;
    max-width: 62ch;
}

.hero p:last-of-type {
    margin-bottom: 1.75rem;
}

/* ——— Botões ——— */
.btn {
    display: inline-block;
    padding: 0.72rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(145deg, var(--lux-gold-light) 0%, var(--lux-gold) 38%, #9a7828 100%);
    color: var(--lux-black);
    border: 1px solid rgba(244, 208, 111, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 4px 24px rgba(212, 175, 55, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(145deg, #fff8dc 0%, var(--lux-gold-light) 45%, var(--lux-gold) 100%);
    color: var(--lux-black);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 8px 32px rgba(244, 208, 111, 0.35);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: var(--lux-ice);
    border: 1px solid var(--color-border-gold-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
    border-color: var(--lux-gold-light);
    color: var(--lux-gold-light);
    background: rgba(212, 175, 55, 0.12);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--lux-ice);
    border: 1px solid var(--color-border-gold);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    border-color: var(--lux-gold);
    color: var(--lux-gold-light);
    background: rgba(212, 175, 55, 0.1);
}

/* ——— Seções ——— */
.section {
    padding: clamp(2.25rem, 4.5vw, 3.75rem) 0;
}

.section--dual {
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.55) 0%, rgba(11, 11, 13, 0.2) 100%);
    padding-top: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.section-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.45rem);
    font-weight: 600;
    color: var(--lux-ice);
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 0.65rem;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3.25rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
}

.section-lead {
    margin: 0 0 1.85rem;
    color: var(--color-muted);
    max-width: 62ch;
    font-size: 1.02rem;
}

/* ——— Cards imóveis ——— */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.35rem;
}

.card {
    background: rgba(18, 22, 30, 0.55);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.card:hover {
    border-color: rgba(244, 208, 111, 0.45);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.card-img {
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, rgba(13, 27, 42, 0.9), rgba(212, 175, 55, 0.12));
    object-fit: cover;
}

.card-body {
    padding: 1.1rem 1.2rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--lux-ice);
    letter-spacing: 0.02em;
}

.card-meta {
    font-size: 0.84rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.card-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--lux-gold-light);
    margin-top: auto;
    letter-spacing: 0.02em;
}

/* ——— Blocos promo ——— */
.promo {
    background: rgba(13, 27, 42, 0.45);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.5rem, 3vw, 2.35rem);
    margin-bottom: 1.5rem;
    color: rgba(245, 245, 245, 0.78);
}

.promo h2 {
    margin-top: 0;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--lux-ice);
    letter-spacing: 0.02em;
}

.promo p {
    color: rgba(192, 192, 192, 0.9);
}

.promo ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0 0;
}

.promo li {
    margin: 0.35rem 0;
}

.two-col {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 800px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* ——— Formulários (site público) ——— */
.form {
    max-width: 560px;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: rgba(244, 208, 111, 0.92);
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-sm);
    font: inherit;
    background: rgba(0, 0, 0, 0.35);
    color: var(--lux-ice);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(192, 192, 192, 0.45);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.form-row textarea {
    min-height: 120px;
    resize: vertical;
}

.alert {
    padding: 0.9rem 1.05rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(46, 125, 50, 0.15);
    color: #c8e6c9;
    border-color: rgba(129, 199, 132, 0.45);
}

.alert-error {
    background: rgba(183, 28, 28, 0.18);
    color: #ffcdd2;
    border-color: rgba(239, 154, 154, 0.4);
}

.badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--lux-silver);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.badge-disponivel {
    background: rgba(46, 125, 50, 0.2);
    color: #e8f5e9;
    border-color: rgba(129, 199, 132, 0.45);
}

.badge-alugado {
    background: rgba(230, 81, 0, 0.18);
    color: #ffe0b2;
    border-color: rgba(255, 183, 77, 0.4);
}

.badge-manutencao {
    background: rgba(194, 24, 91, 0.18);
    color: #fce4ec;
    border-color: rgba(240, 98, 148, 0.4);
}

/* ═══════════ Admin (tema claro para leitura) ═══════════ */
body.admin-body {
    background: #e6e8ee;
    color: #1a1c24;
}

.admin-body a {
    color: #0d1b2a;
}

.admin-body a:hover {
    color: #b8962e;
}

.admin-body {
    --color-muted: #5c6478;
}

.admin-body .section-title,
.admin-body .section-lead {
    color: inherit;
}

.admin-body .section-title::after {
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
}

.admin-header {
    background: linear-gradient(180deg, var(--lux-navy) 0%, var(--lux-black) 100%);
    color: var(--lux-ice);
    padding: 0.85rem 0;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--lux-gold), var(--lux-gold-light), var(--lux-gold), transparent) 1;
}

.admin-header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-header a {
    color: rgba(245, 245, 245, 0.88);
    font-size: 0.88rem;
}

.admin-header a:hover {
    color: var(--lux-gold-light);
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.admin-main {
    padding: 1.5rem 0 2.5rem;
}

.admin-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(11, 11, 13, 0.08);
    border: 1px solid rgba(13, 27, 42, 0.08);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    background: #fff;
    border-radius: var(--radius);
    padding: 1rem 1.15rem;
    box-shadow: 0 8px 28px rgba(11, 11, 13, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.stat strong {
    display: block;
    font-size: 1.65rem;
    color: #0d1b2a;
    font-family: var(--font-display);
}

.stat span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.table-wrap {
    overflow-x: auto;
}

table.data {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table.data th,
table.data td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e6ef;
}

table.data th {
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f6 100%);
    font-weight: 600;
    color: #0d1b2a;
}

table.data tr:hover td {
    background: #fafbfd;
}

.actions {
    white-space: nowrap;
}

.actions a {
    margin-right: 0.5rem;
}

.admin-body .form-row label {
    color: #0d1b2a;
    letter-spacing: 0.04em;
}

.admin-body .form-row input,
.admin-body .form-row select,
.admin-body .form-row textarea {
    background: #fff;
    color: #1a1c24;
    border: 1px solid #cfd6e4;
}

.admin-body .form-row input:focus,
.admin-body .form-row select:focus,
.admin-body .form-row textarea:focus {
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.admin-body .btn-primary {
    background: linear-gradient(145deg, var(--lux-gold-light) 0%, var(--lux-gold) 50%, #9a7828 100%);
    color: var(--lux-black);
}

.admin-body .btn-primary:hover {
    background: linear-gradient(145deg, #fff8dc 0%, var(--lux-gold-light) 50%, var(--lux-gold) 100%);
}

/* Login admin */
.login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.15), transparent 50%),
        linear-gradient(165deg, var(--lux-navy) 0%, var(--lux-black) 100%);
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: rgba(18, 22, 30, 0.75);
    border: 1px solid var(--color-border-gold-strong);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.login-card h1 {
    margin: 0 0 0.25rem;
    font-size: 1.45rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--lux-ice);
    letter-spacing: 0.02em;
}

.login-card .sub {
    margin: 0 0 1.5rem;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.login-card .form-row label {
    color: rgba(244, 208, 111, 0.9);
}

.login-card .form-row input {
    background: rgba(0, 0, 0, 0.35);
    border-color: var(--color-border-gold);
    color: var(--lux-ice);
}

.login-card .alert-error {
    background: rgba(183, 28, 28, 0.22);
    color: #ffcdd2;
}

/* ——— Filtros listagem imóveis (público) ——— */
.imovel-filters-panel {
    margin-bottom: 2rem;
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius);
    background: rgba(13, 27, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 1rem 1rem;
}

.imovel-filters-summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lux-ice);
    padding: 1rem 0 0.5rem;
    list-style: none;
}

.imovel-filters-summary::-webkit-details-marker {
    display: none;
}

.imovel-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem 1.25rem;
    align-items: end;
}

.imovel-filters-group-title {
    grid-column: 1 / -1;
    margin: 1rem 0 0.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lux-ice);
    opacity: 0.9;
}

.imovel-filters-group-title:first-of-type {
    margin-top: 0;
}

.imovel-filters-grid .form-row label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244, 208, 111, 0.88);
}

.imovel-filters-grid .form-row select,
.imovel-filters-grid .form-row input {
    font-size: 0.85rem;
}

.imovel-filters-actions {
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* ——— Formulário admin imóvel estendido ——— */
.admin-body .imovel-form-extended {
    max-width: 920px;
}

.admin-body .imovel-form-section-title {
    margin: 1.75rem 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: #0d1b2a;
    border-bottom: 2px solid rgba(212, 175, 55, 0.35);
    padding-bottom: 0.35rem;
}

.admin-body .imovel-form-details {
    margin-bottom: 0.75rem;
    border: 1px solid #dfe3ec;
    border-radius: var(--radius-sm);
    background: #fafbfd;
}

.admin-body .imovel-form-details summary {
    cursor: pointer;
    font-weight: 600;
    padding: 0.65rem 1rem;
    color: #0d1b2a;
}

.admin-body .imovel-form-details-body {
    padding: 0 1rem 1rem;
    border-top: 1px solid #eef1f6;
}
