:root {
    --ink: #151515;
    --muted: #6f6a61;
    --paper: #fbfaf7;
    --surface: #ffffff;
    --line: rgba(21, 21, 21, 0.11);
    --gold: #b8945f;
    --forest: #1f3b34;
    --shadow: 0 24px 70px rgba(21, 21, 21, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 4vw, 56px);
    color: #fff;
    transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(251, 250, 247, 0.94);
    color: var(--ink);
    box-shadow: 0 12px 34px rgba(21, 21, 21, 0.08);
    backdrop-filter: saturate(160%) blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 13px;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    box-shadow: 0 8px 22px rgba(21, 21, 21, 0.1);
}

.brand-text {
    font-size: 18px;
}

.desktop-nav,
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.desktop-nav a {
    font-size: 14px;
    opacity: 0.92;
}

.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-light {
    background: #fff;
    color: var(--ink);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-ghost {
    border-color: currentColor;
    color: inherit;
}

.btn-outline {
    border-color: var(--line);
    background: transparent;
    color: var(--ink);
}

.mobile-toggle,
.mobile-close {
    display: none;
}

.hero-home {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 116px clamp(20px, 5vw, 72px) 44px;
    color: #fff;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(9, 18, 16, 0.62)), url("../img/hero-home.png");
    background-position: center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-content h1,
.internal-hero h1 {
    margin: 0 auto;
    max-width: 870px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 8vw, 92px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-content > p:not(.eyebrow),
.internal-hero p:not(.eyebrow) {
    max-width: 650px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(16px, 2.2vw, 21px);
    line-height: 1.6;
}

.search-box {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
    gap: 10px;
    width: min(1180px, 100%);
    margin: 36px auto 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.list-section .search-box {
    margin: 0 0 32px;
    border-color: var(--line);
}

.search-box label {
    display: grid;
    gap: 5px;
    text-align: left;
}

.search-box span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.search-box input,
.search-box select {
    width: 100%;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #f4f0e9;
    color: var(--ink);
    padding: 0 13px;
    outline: 0;
}

.search-box input:focus,
.search-box select:focus {
    border-color: var(--gold);
    background: #fff;
}

.search-advanced {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.search-advanced summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding: 0 16px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}

.search-advanced summary::-webkit-details-marker {
    display: none;
}

.search-advanced summary span {
    color: var(--ink);
    font-size: 13px;
}

.search-advanced summary small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.search-advanced summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(201, 150, 76, 0.16);
    color: var(--gold-dark);
    font-weight: 900;
}

.search-advanced[open] summary::after {
    content: "-";
}

.search-advanced-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 16px 16px;
    border-top: 1px solid var(--line);
}

.search-actions {
    display: flex;
    align-items: end;
    gap: 8px;
}

.site-search-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.site-search-modern .search-primary-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.72fr) minmax(170px, 0.82fr) minmax(260px, 1.45fr) auto;
    align-items: end;
    gap: 10px;
}

.site-search-modern .search-field {
    position: relative;
    min-width: 0;
}

.site-search-modern .search-field-query input {
    padding-left: 16px;
}

.site-search-modern .search-submit-wrap {
    display: flex;
    align-items: end;
}

.site-search-modern .search-submit-button {
    min-height: 56px;
    white-space: nowrap;
}

.search-advanced-modern {
    grid-column: auto;
}

.search-advanced-modern summary {
    border-radius: 18px;
}

.search-advanced-modern[open] summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.search-advanced-main-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.search-deep-filters {
    margin: 0 16px 16px;
    border: 1px dashed var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
}

.search-deep-filters summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 0 14px;
    cursor: pointer;
    list-style: none;
}

.search-deep-filters summary::-webkit-details-marker {
    display: none;
}

.search-deep-filters summary span {
    color: var(--ink);
    font-size: 13px;
}

.search-deep-filters summary small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.search-advanced-deep-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.search-advanced-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 16px 16px;
}

.section {
    padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.muted-section {
    background: #f1ede5;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.section-heading h2,
.cta-band h2,
.detail-content h2 {
    margin: 0;
    max-width: 680px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.06;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.property-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 16px 40px rgba(21, 21, 21, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.property-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.property-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.property-card:hover .property-image > img {
    transform: scale(1.04);
}

.property-image span {
    position: absolute;
    left: 14px;
    top: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 12px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.property-card-media {
    position: relative;
    display: block;
    overflow: hidden;
}

.public-card-badge {
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 32px);
    min-height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 148, 95, 0.34);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.88));
    box-shadow: 0 12px 28px rgba(21, 21, 21, 0.1);
    color: var(--ink);
    padding: 0 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.property-chip.public-card-badge {
    position: absolute;
    z-index: 2;
    left: 16px;
    top: 16px;
}

.public-card-badge-inline {
    margin-bottom: 10px;
}

.site-condominio-count {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.property-body {
    padding: 20px;
}

.property-body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.property-body p {
    margin: 0 0 14px;
    color: var(--muted);
}

.property-body .property-card-broker {
    margin-top: -6px;
    font-size: 13px;
    font-weight: 800;
    color: var(--forest);
}

.property-body strong {
    display: block;
    margin-bottom: 18px;
    font-size: 19px;
}

.property-body ul,
.detail-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 13px;
}

.empty-state {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    padding: 34px;
    text-align: center;
}

.empty-state h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.empty-state p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.split-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-cta a {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 12px;
    padding: clamp(36px, 6vw, 76px);
    color: #fff;
    background: linear-gradient(135deg, rgba(31, 59, 52, 0.96), rgba(21, 21, 21, 0.92));
}

.split-cta a:last-child {
    background: linear-gradient(135deg, rgba(184, 148, 95, 0.92), rgba(50, 47, 42, 0.92));
}

.split-cta span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
    text-transform: uppercase;
}

.split-cta strong {
    max-width: 520px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.08;
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.neighborhood-grid a {
    display: grid;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 22px;
}

.neighborhood-grid span {
    font-size: 22px;
    font-weight: 800;
}

.neighborhood-grid strong {
    color: var(--muted);
    font-size: 14px;
}

.neighborhood-grid small {
    color: var(--muted);
}

.empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.site-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1200px;
    margin: 34px auto 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 14px;
}

.site-pagination > span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.site-pagination > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.pagination-number,
.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 900;
}

.pagination-number {
    border: 1px solid var(--line);
    background: var(--paper);
}

.pagination-number.is-active {
    border-color: var(--forest);
    background: var(--forest);
    color: #fff;
}

.pagination-ellipsis {
    color: var(--muted);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(52px, 8vw, 90px) clamp(20px, 6vw, 86px);
    background: var(--forest);
    color: #fff;
}

.cta-band-light {
    background: var(--paper);
    color: var(--ink);
}

.internal-hero {
    padding: 148px clamp(20px, 5vw, 72px) 70px;
    background: var(--forest);
    color: #fff;
    text-align: center;
}

.internal-hero .btn {
    margin-top: 28px;
}

.property-detail {
    background: #fff;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 65fr) minmax(360px, 35fr);
    min-height: 680px;
    background: var(--paper);
}

.detail-hero-media {
    position: relative;
    min-height: 680px;
}

.detail-hero-media > img,
.detail-hero-photo-button,
.detail-hero-photo-button > img {
    width: 100%;
    height: 100%;
}

.detail-hero-media > img,
.detail-hero-photo-button > img {
    object-fit: cover;
}

.detail-hero-photo-button {
    display: block;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: #f3f0ea;
    cursor: zoom-in;
}

.detail-hero-photo-button > img {
    display: block;
    transition: transform 0.35s ease;
}

.detail-hero-photo-button:hover > img {
    transform: scale(1.025);
}

.detail-gallery-open-button {
    position: absolute;
    right: clamp(16px, 2vw, 28px);
    bottom: clamp(16px, 2vw, 28px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 999px;
    padding: 12px 18px;
    color: #fff;
    background: rgba(12, 22, 36, 0.72);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.detail-gallery-open-button:hover {
    transform: translateY(-2px);
    background: rgba(12, 22, 36, 0.86);
}

.detail-gallery-open-button span {
    font-size: 14px;
    font-weight: 800;
}

.detail-gallery-open-button small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
}

.detail-summary-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: clamp(28px, 4.2vw, 58px);
    background: var(--paper);
}

.detail-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 500;
    line-height: 1.08;
}

.detail-location {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.detail-price {
    display: block;
    padding: 14px 0 4px;
    color: var(--forest);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1;
}

.detail-code {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.quick-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 6px 0 4px;
    padding: 0;
    list-style: none;
}

.quick-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    padding: 10px;
}

.quick-specs strong,
.quick-specs small {
    display: block;
}

.quick-specs strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.1;
}

.quick-specs small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.feature-icon {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(184, 148, 95, 0.45);
    border-radius: 11px;
    background: #fff;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
    display: block;
}

.feature-area::before,
.feature-terreno::before {
    inset: 9px;
    border: 2px solid var(--gold);
}

.feature-area::after {
    right: 7px;
    bottom: 7px;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.feature-terreno::after {
    left: 8px;
    right: 8px;
    bottom: 11px;
    border-top: 2px solid var(--gold);
}

.feature-quartos::before,
.feature-suites::before {
    left: 7px;
    right: 7px;
    bottom: 10px;
    height: 9px;
    border: 2px solid var(--gold);
    border-radius: 3px;
}

.feature-quartos::after,
.feature-suites::after {
    left: 9px;
    top: 10px;
    width: 9px;
    height: 6px;
    border: 2px solid var(--gold);
    border-radius: 3px 3px 0 0;
}

.feature-suites {
    background: #f9f4ec;
}

.feature-banheiros::before {
    left: 9px;
    right: 9px;
    bottom: 9px;
    height: 11px;
    border: 2px solid var(--gold);
    border-radius: 0 0 8px 8px;
}

.feature-banheiros::after {
    left: 11px;
    top: 8px;
    width: 10px;
    border-top: 2px solid var(--gold);
}

.feature-vagas::before {
    left: 7px;
    right: 7px;
    top: 11px;
    height: 12px;
    border: 2px solid var(--gold);
    border-radius: 5px;
}

.feature-vagas::after {
    left: 11px;
    right: 11px;
    bottom: 7px;
    border-top: 2px solid var(--gold);
}

.feature-pet::before {
    left: 10px;
    top: 13px;
    width: 13px;
    height: 11px;
    border-radius: 50%;
    background: var(--gold);
}

.feature-pet::after {
    left: 8px;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 7px -2px 0 var(--gold), 14px 0 0 var(--gold);
}

.detail-contact-button {
    width: fit-content;
    min-height: 46px;
    margin-top: 0;
    padding-inline: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.property-share {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.property-share-button {
    min-height: 46px;
    padding-inline: 18px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.property-share-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 24;
    display: grid;
    min-width: 250px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.18);
}

.property-share-menu[hidden] {
    display: none;
}

.property-share-menu button,
.property-share-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    padding: 12px 16px;
    font: inherit;
    font-weight: 800;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.property-share-menu button:last-child,
.property-share-menu a:last-child {
    border-bottom: 0;
}

.property-share-menu button:hover,
.property-share-menu a:hover {
    background: #f8f5ef;
    color: var(--forest);
}

.property-share-feedback {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    min-height: 16px;
    color: var(--forest);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.property-share-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.property-share-modal[hidden] {
    display: none;
}

.property-share-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 32, 0.54);
    backdrop-filter: blur(4px);
}

.property-share-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    width: min(520px, calc(100vw - 32px));
    max-height: calc(100vh - 34px);
    overflow: auto;
    border: 1px solid rgba(184, 148, 95, 0.24);
    border-radius: 24px;
    background: #fff;
    padding: clamp(22px, 4vw, 32px);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.property-share-dialog h2 {
    margin: -6px 0 0;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.05;
}

.property-share-description {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.property-share-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.property-share-close:hover {
    background: #f8f5ef;
}

.property-share-link-field {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.property-share-link-field input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    color: var(--ink);
    padding: 0 14px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.property-share-modal-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.property-share-modal-actions .btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    text-align: center;
}

.property-share-qr {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(184, 148, 95, 0.22);
    border-radius: 18px;
    background: #fbf8f1;
    padding: 14px;
}

.property-share-qr-image {
    position: relative;
    display: grid;
    place-items: center;
    width: 132px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.property-share-qr-fallback {
    position: absolute;
    display: grid;
    place-items: center;
    inset: 18px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(18, 30, 49, 0.12) 50%, transparent 0) 0 0 / 12px 12px,
        linear-gradient(rgba(18, 30, 49, 0.12) 50%, transparent 0) 0 0 / 12px 12px,
        #fff;
    color: rgba(18, 30, 49, 0.52);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.property-share-qr-image img {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 112px;
    height: 112px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.16s ease;
}

.property-share-qr-image.is-loaded img {
    opacity: 1;
}

.property-share-qr-image.is-loaded .property-share-qr-fallback {
    display: none;
}

.property-share-qr strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
}

.property-share-qr p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.property-share-modal-open {
    overflow: hidden;
}

.site-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 10000;
    max-width: min(360px, calc(100vw - 32px));
    border: 1px solid rgba(184, 148, 95, 0.34);
    border-radius: 16px;
    background: rgba(12, 22, 36, 0.95);
    color: #fff;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: clamp(56px, 8vw, 100px) clamp(20px, 6vw, 86px);
}

.detail-description p {
    color: var(--muted);
    line-height: 1.9;
    text-align: justify;
}

.public-formatted-text {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.detail-description .public-formatted-text,
.condominio-public-content .public-formatted-text {
    text-align: left;
}

.property-features {
    display: grid;
    align-content: start;
    gap: 18px;
    border-left: 1px solid var(--line);
    padding-left: clamp(24px, 4vw, 44px);
}

.property-features h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
}

.property-feature-groups {
    display: grid;
    gap: 24px;
}

.property-feature-group {
    display: grid;
    gap: 12px;
}

.property-feature-group h4 {
    margin: 0;
    color: var(--forest);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.property-features-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.feature-item strong {
    color: var(--ink);
    font-weight: 800;
}

.feature-check {
    display: inline-grid;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    place-items: center;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(184, 148, 95, 0.14);
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.features-empty {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.broker-contact-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    padding: 0 clamp(20px, 6vw, 86px) clamp(56px, 8vw, 100px);
}

.broker-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    padding: clamp(24px, 4vw, 36px);
}

.broker-card h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
}

.broker-card p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.broker-contact-section .broker-card > .btn {
    margin-top: 22px;
    width: fit-content;
}

.broker-profile {
    display: flex;
    align-items: center;
    gap: 18px;
}

.broker-avatar {
    width: 86px;
    height: 86px;
    flex: 0 0 86px;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(184, 148, 95, 0.16), rgba(255, 255, 255, 0.92));
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 26px;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(31, 31, 28, 0.12);
}

.broker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-action-card {
    display: grid;
    align-content: start;
    gap: 16px;
}

.contact-action-card p:not(.eyebrow) {
    line-height: 1.7;
}

.contact-action-card .contact-muted {
    color: var(--muted);
}

.broker-whatsapp-button {
    margin-top: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 0 clamp(20px, 6vw, 86px) clamp(56px, 8vw, 100px);
}

.gallery-grid-item {
    display: block;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    cursor: zoom-in;
}

.gallery-grid img,
.gallery-grid-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.025);
    filter: saturate(1.04);
}

.public-gallery-open {
    overflow: hidden;
}

.public-gallery-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 3vw, 34px);
    z-index: 2000;
}

.public-gallery-lightbox.is-open {
    display: flex;
}

.public-gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 23, 0.88);
    backdrop-filter: blur(10px);
}

.public-gallery-dialog {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(1120px, 100%);
    height: min(780px, calc(100vh - 42px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(10, 16, 28, 0.96);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
}

.public-gallery-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.public-gallery-topbar strong {
    display: block;
    font-size: 16px;
}

.public-gallery-topbar span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 700;
}

.public-gallery-close,
.public-gallery-nav,
.public-gallery-thumbs button {
    border: 0;
    cursor: pointer;
}

.public-gallery-close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 28px;
    line-height: 1;
}

.public-gallery-image {
    align-self: center;
    justify-self: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
}

.public-gallery-nav {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 64px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 44px;
    line-height: 1;
    transform: translateY(-50%);
    z-index: 2;
}

.public-gallery-prev {
    left: 18px;
}

.public-gallery-next {
    right: 18px;
}

.public-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 16px 16px;
    background: rgba(255, 255, 255, 0.04);
}

.public-gallery-thumbs button {
    flex: 0 0 92px;
    height: 68px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0.64;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.public-gallery-thumbs button.is-active {
    border-color: #d7a658;
    opacity: 1;
    transform: translateY(-1px);
}

.public-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 760px) {
    .detail-gallery-open-button {
        right: 14px;
        bottom: 14px;
        left: 14px;
        justify-content: center;
    }

    .public-gallery-lightbox {
        padding: 0;
    }

    .public-gallery-dialog {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .public-gallery-topbar {
        padding: 14px;
    }

    .public-gallery-nav {
        width: 42px;
        height: 54px;
        font-size: 36px;
    }

    .public-gallery-prev {
        left: 10px;
    }

    .public-gallery-next {
        right: 10px;
    }

    .public-gallery-thumbs {
        gap: 8px;
        padding: 12px;
    }

    .public-gallery-thumbs button {
        flex-basis: 76px;
        height: 56px;
        border-radius: 12px;
    }
}

.site-footer {
    background: #151515;
    color: #fff;
    padding: 58px clamp(20px, 5vw, 72px) 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer nav,
.site-footer .footer-grid > div {
    display: grid;
    align-content: start;
    gap: 12px;
}

.site-footer p,
.site-footer a,
.site-footer span {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer strong {
    color: #fff;
}

.footer-bottom {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 44px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.58);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.footer-legal-links a {
    font-weight: 700;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    padding: 8px 18px 8px 9px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(21, 21, 21, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(21, 21, 21, 0.28);
}

.whatsapp-float-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    letter-spacing: 0;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    background: rgba(21, 21, 21, 0.48);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-panel {
    margin-left: auto;
    width: min(88vw, 390px);
    height: 100%;
    display: grid;
    align-content: start;
    gap: 24px;
    background: var(--paper);
    padding: 24px;
    box-shadow: var(--shadow);
}

.mobile-menu nav {
    display: grid;
    gap: 8px;
}

.mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    font-size: 24px;
    font-family: Georgia, "Times New Roman", serif;
}

@media (max-width: 1060px) {
    .desktop-nav,
    .header-actions .btn {
        display: none;
    }

    .mobile-toggle,
    .mobile-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 46px;
        min-height: 42px;
        border: 1px solid currentColor;
        border-radius: 999px;
        background: transparent;
        color: inherit;
        cursor: pointer;
    }

    .mobile-toggle {
        flex-direction: column;
        gap: 5px;
    }

    .mobile-toggle span {
        width: 18px;
        height: 2px;
        background: currentColor;
    }

    .search-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-search-modern,
    .site-search-modern .search-primary-row {
        grid-template-columns: 1fr;
    }

    .search-advanced-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-actions {
        grid-column: 1 / -1;
        align-items: stretch;
    }

    .cards-grid,
    .neighborhood-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header {
        padding: 14px 18px;
    }

    .brand-text {
        font-size: 16px;
    }

    .hero-home {
        min-height: 100svh;
        padding: 96px 18px 26px;
        align-items: end;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1,
    .internal-hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .hero-content > p:not(.eyebrow),
    .internal-hero p:not(.eyebrow) {
        margin-left: 0;
    }

    .search-box {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .site-search-modern {
        padding: 10px;
    }

    .site-search-modern .search-primary-row,
    .search-advanced-main-grid,
    .search-advanced-deep-grid {
        grid-template-columns: 1fr;
    }

    .site-search-modern .search-submit-button,
    .search-advanced-actions .btn {
        width: 100%;
    }

    .search-advanced summary {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 14px;
    }

    .search-advanced summary::after {
        position: absolute;
        right: 14px;
        top: 12px;
    }

    .search-advanced-grid {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .search-actions {
        display: grid;
    }

    .search-deep-filters {
        margin: 0 12px 12px;
    }

    .search-advanced-actions {
        display: grid;
        padding: 0 12px 12px;
    }

    .section-heading,
    .cta-band,
    .detail-content {
        display: grid;
    }

    .cards-grid,
    .neighborhood-grid,
    .split-cta,
    .footer-grid,
    .detail-hero,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }

    .detail-hero {
        min-height: auto;
    }

    .detail-hero-media {
        min-height: auto;
    }

    .detail-hero-media img {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .detail-summary-panel {
        padding: 26px 18px 30px;
    }

    .detail-actions {
        width: 100%;
    }

    .detail-actions .detail-contact-button {
        flex: 1 1 145px;
        min-width: 145px;
    }

    .property-share {
        flex: 1.15 1 170px;
        min-width: 170px;
    }

    .property-share-button {
        width: 100%;
    }

    .property-share-menu {
        right: 0;
        left: 0;
        min-width: 0;
    }

    .property-share-feedback {
        left: 50%;
        transform: translateX(-50%);
    }

    .property-share-dialog {
        width: min(100%, calc(100vw - 26px));
        padding: 24px;
        border-radius: 20px;
    }

    .property-share-dialog h2 {
        padding-right: 38px;
    }

    .property-share-modal-actions,
    .property-share-qr {
        grid-template-columns: 1fr;
    }

    .property-share-qr {
        text-align: center;
    }

    .property-share-qr-image {
        margin-inline: auto;
    }

    .quick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-body ul,
    .detail-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-features {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-top: 24px;
        padding-left: 0;
    }

    .property-features-list {
        grid-template-columns: 1fr;
    }

    .broker-contact-section {
        grid-template-columns: 1fr;
    }

    .broker-profile {
        align-items: flex-start;
    }

    .broker-avatar {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
        border-radius: 20px;
        font-size: 22px;
    }

    .site-pagination,
    .site-pagination > div {
        display: grid;
        justify-content: stretch;
    }

    .split-cta a {
        min-height: 260px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        min-height: 50px;
        padding-right: 14px;
    }
}

.condominio-public-section {
    width: min(1180px, calc(100% - 40px));
    margin: 42px auto;
}

.condominio-public-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) 1.08fr;
    gap: 28px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.condominio-public-media {
    position: relative;
    min-height: 320px;
    background: #eef1f5;
}

.condominio-public-media-button {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.condominio-public-media img,
.condominio-public-media-button img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.condominio-public-content {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(24px, 4vw, 42px);
}

.condominio-public-content h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: 0;
}

.condominio-public-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.condominio-public-location {
    color: var(--ink) !important;
    font-weight: 800;
}

.condominio-public-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.condominio-public-features li {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 12px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.condominio-public-gallery,
.site-condominios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.condominio-public-gallery-item {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    border-radius: 18px;
    background: transparent;
    overflow: hidden;
    cursor: zoom-in;
}

.condominio-public-gallery img,
.condominio-public-gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    object-fit: cover;
}

.site-condominio-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.site-condominio-card img,
.site-condominio-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.site-condominio-placeholder {
    display: grid;
    place-items: center;
    background: #eee9df;
    color: var(--muted);
    font-weight: 800;
}

.site-condominio-card > div {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.site-condominio-card h3 {
    margin: 0;
    font-size: 24px;
}

.site-condominio-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 780px) {
    .condominio-public-card {
        grid-template-columns: 1fr;
    }

    .condominio-public-media img {
        min-height: 240px;
    }

    .condominio-public-features {
        grid-template-columns: 1fr;
    }
}

.lancamento-public-filters {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
}

.lancamento-public-grid {
    align-items: stretch;
}

.launch-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.launch-card-media {
    position: relative;
    min-height: 230px;
    background: #eee9df;
}

.launch-card-media img,
.launch-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
}

.launch-card-placeholder,
.launch-hero-placeholder {
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 800;
}

.launch-chip {
    position: absolute;
    left: 16px;
    top: 16px;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--forest);
    font-size: 12px;
    font-weight: 800;
}

.launch-card-body {
    display: grid;
    gap: 13px;
    padding: 24px;
}

.launch-card-body h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
}

.launch-card-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.launch-card-meta,
.launch-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.launch-card-meta span,
.launch-card-specs span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 11px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.launch-card-price {
    color: var(--forest);
    font-size: 20px;
}

.launch-detail {
    display: grid;
    gap: 34px;
}

.launch-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 0;
    width: min(1220px, calc(100% - 40px));
    margin: 118px auto 0;
    border: 1px solid var(--line);
    border-radius: 30px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.launch-hero-media img,
.launch-hero-placeholder {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    background: #eee9df;
}

.launch-summary-panel {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(28px, 4vw, 48px);
}

.launch-summary-panel h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 500;
    line-height: 1;
}

.launch-gallery-strip,
.launch-plants-grid,
.launch-units-grid,
.launch-info-grid {
    display: grid;
    gap: 16px;
}

.launch-gallery-strip {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.launch-gallery-strip-item {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
}

.launch-gallery-strip img,
.launch-plants-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    object-fit: cover;
}

.launch-gallery-strip-item img {
    display: block;
    transition: transform 0.25s ease;
}

.launch-gallery-strip-item:hover img {
    transform: scale(1.04);
}

.launch-content,
.launch-commercial-section,
.launch-plants-section,
.launch-units-section,
.launch-legal-note,
.launch-contact-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.launch-commercial-section,
.launch-plants-section,
.launch-units-section {
    display: grid;
    gap: 18px;
}

.launch-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.launch-info-grid div,
.launch-unit-card,
.launch-legal-note {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    padding: 20px;
}

.launch-info-grid span,
.launch-unit-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.launch-info-grid strong,
.launch-unit-card strong {
    display: block;
    margin-top: 5px;
}

.launch-payment-note,
.launch-legal-note {
    color: var(--muted);
    line-height: 1.7;
}

.launch-plants-grid,
.launch-units-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.launch-unit-card {
    display: grid;
    gap: 13px;
}

.launch-unit-topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.launch-unit-status {
    border-radius: 999px;
    padding: 7px 10px;
    background: #eee9df;
    color: var(--forest);
    font-size: 12px;
    font-weight: 800;
}

.launch-unit-status-disponivel {
    background: #e6f4ec;
    color: #17603a;
}

.launch-unit-status-reservada {
    background: #fff4d7;
    color: #8a5a00;
}

.launch-unit-status-vendida {
    background: #f4e3df;
    color: #8f2f1d;
}

.launch-unit-price {
    color: var(--forest);
    font-size: 20px;
}

@media (max-width: 920px) {
    .lancamento-public-filters {
        grid-template-columns: 1fr 1fr;
    }

    .launch-hero {
        grid-template-columns: 1fr;
        margin-top: 92px;
    }

    .launch-hero-media img,
    .launch-hero-placeholder {
        min-height: 340px;
    }
}

@media (max-width: 620px) {
    .lancamento-public-filters,
    .launch-info-grid,
    .launch-plants-grid,
    .launch-units-grid,
    .launch-gallery-strip {
        grid-template-columns: 1fr;
    }

    .launch-hero,
    .launch-content,
    .launch-commercial-section,
    .launch-plants-section,
    .launch-units-section,
    .launch-legal-note,
    .launch-contact-section,
    .launch-gallery-strip {
        width: min(100% - 28px, 1180px);
    }
}

.property-card-partner {
    border-color: rgba(31, 59, 52, 0.18);
}

.partner-property-badge {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    color: var(--forest);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    left: 14px;
    padding: 7px 10px;
    position: absolute;
    top: 14px;
    z-index: 2;
}

.detail-partner-badge {
    background: color-mix(in srgb, var(--gold) 20%, white);
    border-radius: 999px;
    color: var(--forest);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    margin: 4px 0 12px;
    padding: 8px 12px;
}

.detail-partner-note {
    background: #f7f4ec;
    border: 1px solid #eee3cf;
    border-radius: 16px;
    color: var(--forest);
    line-height: 1.55;
    margin: 14px 0 0;
    padding: 13px 14px;
}
