﻿:root {
    --primary: #7A8F82;
    --primary-dark: #5F7468;
    --accent: #E6E2D5;
    --bg: #F6F7F6;
    --card: #FFFFFF;
    --text: #23302B;
    --muted: #6C7B73;
    --stroke: rgba(0,0,0,.08);
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --radius: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

a {
    color: var(--primary-dark);
}

    a:hover {
        color: var(--primary);
    }

.page-wrap {
    padding: 18px 0 60px;
}

.h-title {
    font-size: 1.55rem;
    font-weight: 750;
    letter-spacing: .2px;
    margin: 0 0 6px;
}

.sub {
    color: var(--muted);
    margin: 0;
}

.cardx {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.p-22 {
    padding: 22px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(95,116,104,.12);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: .85rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
    margin-top: 14px;
}

.kpi {
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 12px;
    background: #fff;
}

    .kpi .v {
        font-weight: 800;
        font-size: 1.05rem;
    }

    .kpi .l {
        color: var(--muted);
        font-size: .82rem;
    }

.btn-whats {
    background: #1DB954;
    border: 0;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 800;
    font-size: 1rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

    .btn-whats:hover {
        filter: brightness(.95);
    }

.btn-ghost {
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
    font-weight: 700;
    color: var(--text);
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.thumb {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
}

    .thumb.active {
        border-color: var(--primary);
    }

.section-title {
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0 0 10px;
}

.desc {
    color: #2a3a33;
    line-height: 1.65;
}

.mapbox {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
}

/* sticky no desktop */
@media (min-width: 992px) {
    .sticky-col {
        position: sticky;
        top: 16px;
    }
}

/* responsivo */
@media (max-width: 768px) {
    .hero-img {
        height: 280px;
    }

    .thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
