:root {
    --public-ink: #101723;
    --public-navy: #101b2d;
    --public-navy-soft: #18283f;
    --public-gold: var(--gold, #c9974f);
    --public-paper: #f4f7fb;
    --public-card: rgba(255, 255, 255, 0.94);
    --public-line: rgba(16, 23, 35, 0.11);
    --public-muted: #607089;
    --public-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    --public-shadow-soft: 0 16px 44px rgba(15, 23, 42, 0.09);
}

body {
    background:
        linear-gradient(180deg, #eef3f8 0%, #f8fafc 34%, #eef3f8 100%);
    color: var(--public-ink);
}

.eyebrow {
    letter-spacing: 0;
}

.site-header {
    top: 16px;
    left: clamp(16px, 3vw, 42px);
    right: clamp(16px, 3vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background: rgba(12, 21, 35, 0.72);
    color: #fff;
    padding: 12px 14px 12px 16px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px) saturate(150%);
}

.site-header.is-scrolled {
    top: 12px;
    border-color: rgba(16, 23, 35, 0.1);
    background: rgba(255, 255, 255, 0.94);
    color: var(--public-ink);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.brand {
    min-width: 0;
    gap: 12px;
}

.brand-logo,
.brand-mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 17px;
}

.brand-logo {
    padding: 7px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.brand-mark {
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .brand-mark {
    border-color: var(--public-line);
    background: #fff;
}

.brand-text {
    max-width: 260px;
    overflow: hidden;
    color: inherit;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.desktop-nav {
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 5px;
}

.site-header.is-scrolled .desktop-nav {
    border-color: rgba(16, 23, 35, 0.08);
    background: rgba(16, 23, 35, 0.04);
}

.desktop-nav a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border-radius: 999px;
    padding: 0 14px;
    color: inherit;
    font-size: 14px;
    font-weight: 750;
    opacity: 0.88;
    transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    background: rgba(255, 255, 255, 0.18);
    opacity: 1;
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active {
    background: var(--public-navy);
    color: #fff;
}

.header-actions {
    gap: 8px;
}

.btn {
    min-height: 46px;
    border-radius: 999px;
    font-weight: 850;
    letter-spacing: 0;
}

.btn-dark {
    background: linear-gradient(135deg, var(--public-navy), #1d3150);
    color: #fff;
    box-shadow: 0 14px 30px rgba(16, 27, 45, 0.2);
}

.btn-light {
    background: #fff;
    color: var(--public-navy);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.btn-ghost,
.btn-outline {
    border-color: rgba(16, 23, 35, 0.14);
    background: rgba(255, 255, 255, 0.12);
}

.site-header:not(.is-scrolled) .btn-ghost {
    border-color: rgba(255, 255, 255, 0.32);
}

.hero-home {
    min-height: 790px;
    padding: 150px clamp(22px, 5vw, 76px) 54px;
}

.hero-media {
    background-image:
        linear-gradient(180deg, rgba(7, 13, 24, 0.38), rgba(7, 13, 24, 0.84)),
        linear-gradient(90deg, rgba(10, 22, 38, 0.72), rgba(10, 22, 38, 0.16) 45%, rgba(10, 22, 38, 0.72)),
        url("../img/hero-home.png");
}

.hero-content {
    width: min(1120px, 100%);
}

.hero-content .eyebrow,
.internal-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f5d092;
    padding: 0 13px;
    font-size: 12px;
}

.hero-content h1,
.internal-hero h1 {
    max-width: 900px;
    color: #fff;
    font-size: 72px;
    line-height: 0.98;
    text-wrap: balance;
}

.hero-content > p:not(.eyebrow),
.internal-hero p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    line-height: 1.65;
    text-wrap: balance;
}

.search-box,
.search-panel {
    width: min(1220px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    padding: 16px;
    box-shadow: var(--public-shadow);
    backdrop-filter: blur(18px) saturate(145%);
}

.search-box {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.list-section .search-box,
.list-section .search-panel {
    margin: 0 auto 34px;
    border-color: rgba(16, 23, 35, 0.1);
}

.search-box label,
.search-panel label {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.search-box span,
.search-panel span {
    color: var(--public-muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: none;
}

.search-box input,
.search-box select,
.search-panel input,
.search-panel select {
    min-height: 54px;
    border: 1px solid rgba(16, 23, 35, 0.1);
    border-radius: 16px;
    background: #f7f9fc;
    color: var(--public-ink);
    font-weight: 650;
}

.search-box input::placeholder,
.search-panel input::placeholder {
    color: #9ba7b7;
}

.search-box input:focus,
.search-box select:focus,
.search-panel input:focus,
.search-panel select:focus {
    border-color: rgba(201, 151, 79, 0.7);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 151, 79, 0.14);
}

.search-advanced {
    border-color: rgba(16, 23, 35, 0.1);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.search-advanced summary {
    min-height: 58px;
    padding: 0 18px;
}

.search-advanced summary span {
    color: var(--public-ink);
    font-size: 14px;
    font-weight: 850;
}

.search-advanced summary small {
    color: var(--public-muted);
}

.search-advanced summary::after {
    background: rgba(201, 151, 79, 0.16);
    color: #9b6a2e;
}

.search-advanced-grid {
    gap: 12px;
    padding: 16px 18px 18px;
    border-top-color: rgba(16, 23, 35, 0.08);
}

.search-actions {
    grid-column: 1 / -1;
    justify-content: center;
}

.search-actions .btn,
.lancamento-public-filters .search-actions .btn {
    width: min(260px, 100%);
}

.site-search-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 30px;
}

.site-search-modern .search-primary-row {
    display: grid;
    grid-template-columns: minmax(155px, 0.72fr) minmax(175px, 0.82fr) minmax(270px, 1.45fr) auto;
    align-items: end;
    gap: 12px;
}

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

.site-search-modern .search-field span {
    color: #647287;
}

.site-search-modern .search-field input,
.site-search-modern .search-field select {
    width: 100%;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

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

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

.site-search-modern .search-submit-button {
    min-height: 58px;
    padding-inline: 28px;
    border-radius: 18px;
    white-space: nowrap;
}

.search-advanced-modern {
    grid-column: auto;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.96));
}

.search-advanced-modern summary {
    min-height: 60px;
    border-radius: 22px;
}

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

.search-advanced-modern summary small {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(201, 151, 79, 0.13);
    color: #8d632d;
}

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

.search-deep-filters {
    margin: 0 18px 18px;
    border: 1px dashed rgba(16, 23, 35, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
}

.search-deep-filters summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    color: var(--public-ink);
    cursor: pointer;
    list-style: none;
}

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

.search-deep-filters summary span {
    color: var(--public-ink);
    font-size: 14px;
    font-weight: 850;
}

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

.search-advanced-deep-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(16, 23, 35, 0.08);
}

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

.search-advanced-actions .btn {
    width: auto;
    min-width: 160px;
}

.internal-hero {
    position: relative;
    overflow: hidden;
    padding: 168px clamp(22px, 5vw, 76px) 104px;
    background:
        linear-gradient(135deg, rgba(16, 27, 45, 0.96), rgba(29, 49, 80, 0.96)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: auto, 44px 44px, 44px 44px;
    color: #fff;
}

.internal-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(201, 151, 79, 0.72), transparent);
}

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

.internal-hero-content h1 {
    margin-top: 8px;
}

.internal-hero + .list-section {
    position: relative;
    z-index: 2;
    margin-top: -54px;
    padding-top: 0;
}

.section,
.list-section {
    padding-left: clamp(20px, 5vw, 72px);
    padding-right: clamp(20px, 5vw, 72px);
}

.section-heading {
    align-items: flex-end;
    margin-bottom: 28px;
}

.section-heading h2,
.cta-band h2,
.detail-content h2 {
    color: var(--public-ink);
    font-size: 46px;
    line-height: 1.08;
    text-wrap: balance;
}

.muted-section {
    background:
        linear-gradient(180deg, #f7fafc, #eef3f8);
}

.cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 1240px;
    align-items: stretch;
}

.property-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid rgba(16, 23, 35, 0.1);
    border-radius: 26px;
    background: var(--public-card);
    box-shadow: var(--public-shadow-soft);
}

.property-card:hover {
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.15);
}

.property-image,
.property-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: linear-gradient(135deg, #e8edf3, #f8fafc);
}

.property-image > img,
.property-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-image > span,
.property-chip {
    left: 16px;
    top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.92);
    color: var(--public-navy);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.11);
}

.public-card-badge {
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 32px);
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 151, 79, 0.36);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 237, 0.9));
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    color: var(--public-navy);
    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;
}

.property-card-badges {
    position: absolute;
    z-index: 3;
    left: 16px;
    top: 16px;
    display: flex;
    max-width: calc(100% - 32px);
    flex-wrap: wrap;
    gap: 8px;
}

.property-card-badge,
.detail-tag {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 151, 79, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.13);
    color: var(--public-navy);
    padding: 0 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.property-card-badge-purpose,
.detail-tag-purpose {
    border-color: rgba(201, 151, 79, 0.54);
    background: linear-gradient(135deg, rgba(201, 151, 79, 0.96), rgba(224, 184, 110, 0.94));
    color: #fff;
}

.property-price-stack,
.detail-price-stack {
    display: grid;
    gap: 6px;
    margin: 2px 0 16px;
}

.property-price-line,
.detail-price-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
}

.property-price-item {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.property-price-note {
    display: block;
    color: var(--public-muted);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.25;
    opacity: 0.76;
}

.property-price-line span,
.detail-price-line span {
    color: var(--public-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.property-price-line strong,
.detail-price-line strong,
.property-body .property-price-line strong {
    display: inline;
    margin: 0;
    color: var(--public-ink);
    font-size: 21px;
    line-height: 1.15;
}

.property-price-line-secondary strong,
.detail-price-line-secondary strong {
    color: var(--public-muted);
    font-size: 15px;
}

.property-price-consult {
    color: var(--public-muted);
}

.detail-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-price-stack {
    margin: 16px 0 10px;
}

.detail-price-line strong {
    color: var(--public-navy);
    font-size: clamp(24px, 2.4vw, 34px);
}

.detail-value-breakdown {
    display: grid;
    gap: 8px;
    margin: 14px 0 4px;
    border: 1px solid rgba(201, 151, 79, 0.24);
    border-radius: 18px;
    background: rgba(255, 248, 237, 0.62);
    padding: 12px;
}

.detail-value-breakdown p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    color: var(--public-muted);
    font-weight: 800;
}

.detail-value-breakdown strong {
    color: var(--public-ink);
}

.detail-value-breakdown .is-featured {
    border-radius: 12px;
    background: rgba(201, 151, 79, 0.14);
    color: var(--public-ink);
    padding: 8px 10px;
}

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

.property-body,
.property-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.property-body h3,
.property-card-body h3 {
    display: -webkit-box;
    min-height: 52px;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--public-ink);
    font-size: 21px;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.property-card-body h3 a {
    color: inherit;
}

.property-body p,
.property-card-body p {
    color: var(--public-muted);
    line-height: 1.55;
}

.property-card-body > p:not(.property-type) {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.property-type {
    min-height: 24px;
    font-weight: 750;
}

.property-body strong,
.property-price {
    margin-top: 2px;
    color: var(--public-navy);
    font-size: 22px;
    line-height: 1.15;
}

.property-body ul,
.property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

.property-body li,
.property-specs li {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(16, 23, 35, 0.08);
    border-radius: 999px;
    background: #f6f8fb;
    padding: 0 10px;
    color: var(--public-muted);
    font-size: 13px;
    font-weight: 750;
}

.property-card-actions {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
}

.property-card-actions .btn {
    width: 100%;
    min-height: 46px;
    padding-inline: 14px;
    white-space: nowrap;
}

.launch-card {
    border-radius: 28px;
}

.launch-card .property-card-media {
    display: grid;
    aspect-ratio: 16 / 10;
    min-height: 0;
}

.launch-card .property-card-media img,
.launch-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
}

.launch-card-placeholder {
    display: grid;
    min-height: 240px;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(16, 23, 35, 0.1), rgba(201, 151, 79, 0.16)),
        #eef3f8;
    color: var(--public-muted);
    font-weight: 900;
}

.launch-card .property-card-body {
    gap: 12px;
}

.launch-card .property-card-body h3 {
    font-size: 24px;
}

.launch-card .property-card-actions {
    grid-template-columns: 1fr 1fr;
}

.lancamento-public-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(180px, 0.7fr);
    align-items: end;
    gap: 12px;
}

.lancamento-public-filters .search-actions {
    grid-column: auto;
}

.public-filter-panel {
    width: 100%;
    max-width: 1240px;
}

.public-filter-panel > summary {
    display: none;
}

.neighborhood-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1240px;
}

.neighborhood-grid a {
    position: relative;
    overflow: hidden;
    min-height: 142px;
    border: 1px solid rgba(16, 23, 35, 0.1);
    border-radius: 24px;
    background:
        linear-gradient(135deg, #fff, #f6f8fb);
    padding: 24px;
    box-shadow: var(--public-shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.neighborhood-grid a:hover {
    transform: translateY(-3px);
    box-shadow: var(--public-shadow);
}

.neighborhood-grid span {
    color: var(--public-ink);
    font-size: 23px;
    line-height: 1.15;
}

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

.site-condominios-grid {
    max-width: 1240px;
    margin: 0 auto;
    gap: 24px;
}

.site-condominio-card {
    border-radius: 26px;
    box-shadow: var(--public-shadow-soft);
}

.site-condominio-card img,
.site-condominio-placeholder {
    aspect-ratio: 16 / 10;
}

.site-condominio-card > div {
    padding: 24px;
}

.site-condominio-card .btn {
    width: fit-content;
}

.empty-state {
    border: 1px solid rgba(16, 23, 35, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--public-shadow-soft);
}

.empty-state h3 {
    color: var(--public-ink);
}

.empty-state p {
    color: var(--public-muted);
}

.split-cta {
    gap: 0;
}

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

.cta-band {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 82% 20%, rgba(201, 151, 79, 0.18), transparent 34%),
        linear-gradient(135deg, var(--public-navy), #223754);
    color: #fff;
}

.cta-band:not(.cta-band-light) .eyebrow {
    color: #f5d092;
}

.cta-band:not(.cta-band-light) h2 {
    color: rgba(255, 255, 255, 0.96);
}

.cta-band:not(.cta-band-light) p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
}

.cta-band:not(.cta-band-light) .btn-light {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.94);
    color: var(--public-navy);
}

.cta-band:not(.cta-band-light) .btn-light:hover,
.cta-band:not(.cta-band-light) .btn-light:focus-visible {
    background: #fff;
    color: var(--public-navy);
}

.cta-band-light {
    border-top: 1px solid rgba(16, 23, 35, 0.08);
    background: #fff;
}

.detail-hero,
.launch-hero {
    width: min(1260px, calc(100% - 40px));
    min-height: 0;
    margin: 110px auto 0;
    overflow: hidden;
    border: 1px solid rgba(16, 23, 35, 0.1);
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--public-shadow);
}

.detail-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
}

.detail-hero-media,
.detail-hero-media > img,
.detail-hero-photo-button,
.detail-hero-photo-button > img {
    min-height: clamp(420px, 44vw, 540px);
}

.detail-summary-panel,
.launch-summary-panel {
    background:
        linear-gradient(180deg, #fff, #f5f8fb);
}

.detail-hero h1,
.launch-summary-panel h1 {
    color: var(--public-ink);
    font-size: 42px;
}

.detail-price {
    color: var(--public-navy);
}

.quick-specs li,
.broker-card,
.launch-info-grid div,
.launch-unit-card,
.launch-legal-note,
.condominio-public-card {
    border-color: rgba(16, 23, 35, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.condominio-public-media {
    background: linear-gradient(135deg, #eef3f8, #f8fafc);
}

.condominio-public-media-button:hover img,
.condominio-public-gallery-item:hover img {
    transform: scale(1.025);
}

.condominio-public-media img,
.condominio-public-gallery-item img {
    transition: transform 0.25s ease;
}

.condominio-gallery-open-button {
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(14px);
}

.detail-content,
.broker-contact-section,
.gallery-grid {
    width: min(1260px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.detail-content {
    gap: clamp(24px, 4vw, 40px);
    padding-top: clamp(32px, 5vw, 56px);
    padding-bottom: clamp(34px, 5vw, 60px);
}

.detail-content,
.launch-content,
.launch-commercial-section,
.launch-plants-section,
.launch-gallery-strip,
.condominio-public-section,
.broker-contact-section {
    margin-top: clamp(20px, 2.5vw, 30px);
}

.detail-description p {
    color: var(--public-muted);
    text-align: left;
}

.gallery-grid {
    gap: 14px;
}

.gallery-grid img,
.gallery-grid-item img {
    border-radius: 22px;
    box-shadow: var(--public-shadow-soft);
}

.broker-card {
    border-radius: 26px;
}

.broker-card h2 {
    color: var(--public-ink);
}

.condominio-public-section,
.launch-content,
.launch-commercial-section,
.launch-plants-section,
.launch-units-section,
.launch-legal-note,
.launch-gallery-strip {
    width: min(1260px, calc(100% - 40px));
}

.condominio-public-card {
    border-radius: 28px;
}

.launch-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
}

.launch-hero-media img,
.launch-hero-placeholder {
    min-height: clamp(400px, 42vw, 520px);
}

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

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

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

.launch-units-grid,
.launch-plants-grid,
.launch-info-grid {
    gap: 18px;
}

.launch-unit-card {
    border-radius: 24px;
}

.launch-unit-card .btn {
    width: fit-content;
}

.site-pagination {
    max-width: 1240px;
    border-radius: 24px;
    box-shadow: var(--public-shadow-soft);
}

.whatsapp-float {
    right: 24px;
    bottom: 24px;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 46px rgba(37, 211, 102, 0.24), 0 14px 40px rgba(15, 23, 42, 0.16);
}

.whatsapp-float-icon {
    width: 40px;
    height: 40px;
    font-weight: 900;
}

@media (min-width: 781px) and (max-width: 1040px) {
    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        max-width: min(320px, calc(100vw - 36px));
    }
}

.mobile-menu-panel {
    background:
        linear-gradient(180deg, #fff, #eef3f8);
}

@media (min-width: 1180px) {
    .hero-home .search-box {
        grid-template-columns: repeat(6, minmax(0, 1fr)) minmax(180px, 0.8fr);
    }

    .hero-home .site-search-modern {
        grid-template-columns: 1fr;
    }

    .hero-home .site-search-modern .search-primary-row {
        grid-template-columns: minmax(155px, 0.72fr) minmax(175px, 0.82fr) minmax(270px, 1.45fr) auto;
    }

    .hero-home .search-actions {
        grid-column: 7;
        grid-row: 1;
        align-items: end;
    }

    .hero-home .search-advanced {
        grid-row: auto;
    }

    .hero-home .search-actions .btn {
        width: 100%;
    }
}

@media (max-width: 1120px) {
    .site-header {
        border-radius: 22px;
    }

    .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;
    }

    .brand-text {
        max-width: 52vw;
    }

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

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

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

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

    .lancamento-public-filters .search-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 780px) {
    .site-header {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 10px;
    }

    .brand-logo,
    .brand-mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .brand-text {
        max-width: 58vw;
        font-size: 15px;
    }

    .hero-home {
        min-height: auto;
        padding: 116px 16px 26px;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        text-align: center;
    }

    .internal-hero-content {
        width: min(100%, 340px);
    }

    .hero-content h1,
    .internal-hero h1 {
        max-width: min(100%, 320px);
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(28px, 7.6vw, 31px);
        line-height: 1.03;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .hero-content > p:not(.eyebrow),
    .internal-hero p:not(.eyebrow) {
        margin-left: auto;
        margin-right: auto;
        max-width: 32ch;
        font-size: 16px;
    }

    .search-box,
    .lancamento-public-filters {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: 1fr;
        border-radius: 22px;
        padding: 12px;
    }

    .public-filter-panel {
        width: 100%;
        max-width: 100%;
        border: 1px solid rgba(16, 23, 35, 0.1);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--public-shadow-soft);
    }

    .public-filter-panel > summary {
        display: flex;
        min-height: 58px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 16px;
        color: var(--public-ink);
        cursor: pointer;
        font-weight: 900;
        list-style: none;
    }

    .public-filter-panel > summary::-webkit-details-marker {
        display: none;
    }

    .public-filter-panel > summary::after {
        content: "+";
        display: inline-grid;
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        place-items: center;
        border: 1px solid rgba(16, 23, 35, 0.1);
        border-radius: 999px;
        background: #f6f8fb;
        color: var(--public-navy);
        font-size: 18px;
        line-height: 1;
    }

    .public-filter-panel[open] > summary::after {
        content: "-";
    }

    .public-filter-panel > summary small {
        color: var(--public-muted);
        font-size: 12px;
        font-weight: 750;
    }

    .public-filter-panel .lancamento-public-filters {
        border: 0;
        border-top: 1px solid rgba(16, 23, 35, 0.08);
        border-radius: 0 0 22px 22px;
        box-shadow: none;
    }

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

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

    .search-actions,
    .lancamento-public-filters .search-actions {
        grid-column: 1 / -1;
    }

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

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

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

    .internal-hero {
        padding: 122px 18px 88px;
    }

    .internal-hero + .list-section {
        margin-top: -42px;
    }

    .section,
    .list-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading {
        display: grid;
        gap: 8px;
    }

    .section-heading h2,
    .cta-band h2,
    .detail-content h2 {
        font-size: 34px;
    }

    .cards-grid,
    .neighborhood-grid,
    .site-condominios-grid,
    .split-cta,
    .detail-hero,
    .launch-hero,
    .detail-content,
    .broker-contact-section,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .property-card-actions,
    .launch-card .property-card-actions {
        grid-template-columns: 1fr;
    }

    .property-body h3,
    .property-card-body h3 {
        min-height: 0;
        font-size: 20px;
    }

    .detail-hero,
    .launch-hero,
    .detail-content,
    .broker-contact-section,
    .gallery-grid,
    .condominio-public-section,
    .launch-content,
    .launch-commercial-section,
    .launch-plants-section,
    .launch-units-section,
    .launch-legal-note,
    .launch-gallery-strip {
        width: min(100% - 28px, 1260px);
    }

    .detail-hero,
    .launch-hero {
        margin-top: 86px;
        border-radius: 24px;
    }

    .detail-hero-media,
    .detail-hero-media > img,
    .detail-hero-photo-button,
    .detail-hero-photo-button > img,
    .launch-hero-media img,
    .launch-hero-placeholder {
        min-height: 250px;
    }

    .detail-summary-panel,
    .launch-summary-panel {
        padding: 22px 18px;
    }

    .detail-hero h1,
    .launch-summary-panel h1 {
        font-size: 32px;
    }

    .quick-specs {
        grid-template-columns: 1fr 1fr;
    }

    .cta-band {
        display: grid;
        padding: 42px 18px;
    }

    .whatsapp-float {
        right: max(14px, env(safe-area-inset-right));
        bottom: calc(14px + env(safe-area-inset-bottom));
        width: 56px;
        min-width: 56px;
        height: 56px;
        min-height: 56px;
        max-width: 56px;
        justify-content: center;
        border-radius: 999px;
        padding: 0;
    }

    .whatsapp-float > span:not(.whatsapp-float-icon) {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .whatsapp-float-icon {
        width: 42px;
        height: 42px;
    }

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

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

    .public-gallery-topbar {
        padding-top: calc(14px + env(safe-area-inset-top));
    }

    .public-gallery-image {
        max-height: calc(100dvh - 158px);
        object-fit: contain;
    }

    .public-gallery-thumbs {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
}

@media (min-width: 680px) and (max-width: 900px) {
    .cards-grid,
    .lancamento-public-grid,
    .neighborhood-grid,
    .site-condominios-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-card-actions,
    .launch-card .property-card-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 440px) {
    .quick-specs {
        grid-template-columns: 1fr;
    }

    .property-body ul,
    .property-specs {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

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

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

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