:root {
    --dc-uniq-black: #050505;
    --dc-uniq-black-soft: #0b0b0b;
    --dc-uniq-gold: #caa464;
    --dc-uniq-gold-2: #d8b777;
    --dc-uniq-copper: #c87632;
    --dc-uniq-cream: #f7f4ee;
    --dc-uniq-white: #ffffff;
    --dc-uniq-text: #101827;
    --dc-uniq-muted: #6f7787;
    --dc-uniq-line: rgba(202, 164, 100, .28);
    --dc-uniq-shadow: 0 32px 80px rgba(20, 22, 29, .14);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dc-uniq-cream);
}

.dc-uniq,
.dc-uniq * {
    box-sizing: border-box;
}

.dc-uniq {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--dc-uniq-cream);
    color: var(--dc-uniq-text);
    font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.dc-uniq-container {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.dc-uniq h1,
.dc-uniq h2,
.dc-uniq h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, Cambria, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.035em;
}

.dc-uniq p {
    margin: 0;
}

.dc-uniq a {
    color: inherit;
    text-decoration: none;
}

.dc-uniq-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    align-items: center;
    min-height: 88px;
    padding: 14px clamp(22px, 5vw, 78px);
    color: #fff;
    background: linear-gradient(180deg, rgba(10, 14, 12, .68), rgba(10, 14, 12, .34));
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: min-height .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.dc-uniq-header.is-scrolled,
.dc-uniq-header:hover {
    min-height: 78px;
    color: #171717;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 36px rgba(20, 22, 29, .1);
    border-bottom-color: rgba(20, 22, 29, .06);
}

.dc-uniq-logo {
    display: inline-flex;
    justify-self: start;
    align-items: center;
    min-width: 172px;
    color: var(--dc-uniq-gold);
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -.07em;
    line-height: 1;
}

.dc-uniq-logo img {
    display: block;
    max-width: 112px;
    max-height: 56px;
    object-fit: contain;
}

.dc-uniq-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3vw, 38px);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.dc-uniq-nav a {
    opacity: .98;
    transition: color .2s ease, opacity .2s ease;
}

.dc-uniq-nav a:hover {
    color: var(--dc-uniq-gold);
}

.dc-uniq-header-button {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 5px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--dc-uniq-gold-2), #bf7835);
    box-shadow: 0 18px 32px rgba(190, 123, 52, .25);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.dc-uniq-hero {
    position: relative;
    min-height: 100vh;
    padding: 118px 0 70px;
    display: flex;
    align-items: center;
    background: #0b0b0b;
    isolation: isolate;
}

.dc-uniq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: var(--dc-uniq-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
}

.dc-uniq-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 64% 45%, rgba(255,255,255,.04), transparent 31%),
        linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.58) 45%, rgba(0,0,0,.22) 100%),
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.68));
}

.dc-uniq-hero__shade {
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}

.dc-uniq-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(370px, 460px);
    align-items: center;
    gap: clamp(56px, 8vw, 118px);
}

.dc-uniq-hero__copy {
    max-width: 640px;
    color: #fff;
}

.dc-uniq-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid rgba(202, 164, 100, .78);
    border-radius: 4px;
    background: rgba(9, 9, 9, .58);
    color: var(--dc-uniq-gold-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.dc-uniq-hero h1 {
    margin-top: 32px;
    color: #fff;
    font-size: clamp(58px, 6.2vw, 108px);
    line-height: .93;
    text-shadow: 0 28px 60px rgba(0,0,0,.25);
}

.dc-uniq-hero__subtitle {
    margin-top: 22px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.dc-uniq-hero__text {
    max-width: 560px;
    margin-top: 18px;
    color: rgba(255,255,255,.92);
    font-size: clamp(17px, 1.4vw, 22px);
    font-weight: 500;
    line-height: 1.55;
}

.dc-uniq-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.dc-uniq-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(5,5,5,.62);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.dc-uniq-badges span:last-child:nth-child(odd) {
    border-color: rgba(202, 164, 100, .8);
    color: var(--dc-uniq-gold-2);
}

.dc-uniq-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.dc-uniq-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.02em;
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.dc-uniq-button:hover {
    transform: translateY(-2px);
}

.dc-uniq-button--gold {
    color: #fff !important;
    background: linear-gradient(135deg, #d8b86f, #c5742f);
    box-shadow: 0 18px 42px rgba(190, 123, 52, .28);
}

.dc-uniq-button--glass {
    color: #fff !important;
    border-color: rgba(255,255,255,.25);
    background: rgba(0,0,0,.48);
    backdrop-filter: blur(10px);
}

.dc-uniq-button--wide {
    min-width: min(100%, 490px);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.dc-uniq-form-card {
    position: relative;
    padding: clamp(34px, 4vw, 54px);
    border-radius: 18px;
    border-top: 5px solid var(--dc-uniq-gold-2);
    background: rgba(255,255,255,.88);
    box-shadow: 0 32px 80px rgba(0,0,0,.28);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.dc-uniq-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 15%, rgba(255,255,255,.86), transparent 32%), linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.58));
    pointer-events: none;
}

.dc-uniq-form-card > * {
    position: relative;
    z-index: 1;
}

.dc-uniq-form-card > span {
    display: block;
    color: #111;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 2.2vw, 38px);
    line-height: 1.1;
    text-align: center;
}

.dc-uniq-form-card > span em,
.dc-uniq h2 em {
    color: var(--dc-uniq-gold);
    font-style: normal;
}

.dc-uniq-form-card h2 {
    margin-top: 14px;
    color: #626a7b;
    font-family: Poppins, Inter, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    line-height: 1.55;
    text-transform: uppercase;
    text-align: center;
}

.dc-uniq-form {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.dc-uniq-form label {
    display: block;
    margin: 0;
}

.dc-uniq-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dc-uniq-form input {
    width: 100%;
    height: 58px;
    border: 0;
    border-bottom: 1px solid rgba(15,23,42,.22);
    border-radius: 0;
    background: transparent;
    color: var(--dc-uniq-text);
    outline: 0;
    font-size: 15px;
    font-weight: 600;
}

.dc-uniq-form input::placeholder,
.dc-uniq-form input:placeholder-shown {
    color: #98a2b5;
}

.dc-uniq-form button {
    width: 100%;
    min-height: 64px;
    margin-top: 8px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(135deg, #d8b86f, #c5742f);
    box-shadow: 0 18px 38px rgba(190, 123, 52, .24);
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.dc-uniq-form small {
    display: block;
    color: #94a0b4;
    font-size: 12px;
    text-align: center;
}

.dc-uniq-alert {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(16, 185, 129, .1);
    color: #047857;
    font-size: 13px;
    text-align: center;
}

.dc-uniq-section {
    position: relative;
    padding: clamp(92px, 10vw, 140px) 0;
    background: #fff;
}

.dc-uniq-section--dark {
    background: var(--dc-uniq-black);
    color: #fff;
}

.dc-uniq-section--wave::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 92px;
    background: #fff;
    clip-path: ellipse(65% 55% at 50% 0%);
}

.dc-uniq-center {
    max-width: 800px;
    text-align: center;
}

.dc-uniq-center--light {
    color: var(--dc-uniq-text);
}

.dc-uniq-eyebrow {
    display: block;
    margin-bottom: 20px;
    color: var(--dc-uniq-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.dc-uniq-center h2,
.dc-uniq-location-card h2,
.dc-uniq-final h2 {
    font-size: clamp(40px, 4.5vw, 72px);
    line-height: 1.08;
}

.dc-uniq-center p {
    max-width: 700px;
    margin: 24px auto 0;
    color: #687285;
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.7;
}

.dc-uniq-section--dark .dc-uniq-center p {
    color: rgba(255,255,255,.82);
}

.dc-uniq-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 74px;
}

.dc-uniq-why-grid article,
.dc-uniq-amenity-grid article,
.dc-uniq-stats-grid article {
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 26px 60px rgba(15,23,42,.06);
    text-align: center;
}

.dc-uniq-why-grid article {
    min-height: 300px;
    padding: 66px 36px 44px;
}

.dc-uniq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    color: var(--dc-uniq-gold);
    background: #fff;
    box-shadow: 0 18px 38px rgba(15,23,42,.08);
}

.dc-uniq-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dc-uniq-why-grid h3,
.dc-uniq-amenity-grid h3 {
    margin-top: 34px;
    font-size: 24px;
    line-height: 1.15;
}

.dc-uniq-why-grid p,
.dc-uniq-amenity-grid p {
    margin-top: 18px;
    color: #687285;
    font-size: 15px;
    line-height: 1.65;
}

.dc-uniq-amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    margin-top: 74px;
}

.dc-uniq-amenity-grid article {
    min-height: 258px;
    padding: 44px 28px 36px;
    border-color: rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 26px 60px rgba(0,0,0,.2);
}

.dc-uniq-icon--dark {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(202,164,100,.35);
    background: rgba(202,164,100,.08);
    box-shadow: none;
}

.dc-uniq-amenity-grid h3 {
    color: #fff;
    font-size: 22px;
}

.dc-uniq-amenity-grid p {
    color: #a9c8ed;
}

.dc-uniq-section-action {
    margin-top: 70px;
    text-align: center;
}

.dc-uniq-gallery-section {
    background: #fff;
}

.dc-uniq-gallery-carousel {
    position: relative;
    height: clamp(360px, 42vw, 560px);
    margin-top: 72px;
    overflow: hidden;
}

.dc-uniq-gallery-item {
    position: absolute;
    top: 52px;
    left: 50%;
    width: min(46vw, 630px);
    height: min(30vw, 410px);
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 58px rgba(15,23,42,.18);
    transform: translateX(-50%) scale(.82);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease, filter .35s ease;
}

.dc-uniq-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dc-uniq-gallery-item.is-active {
    z-index: 3;
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.dc-uniq-gallery-item.is-prev {
    z-index: 2;
    opacity: .85;
    transform: translateX(-118%) scale(.82) rotateY(11deg) rotateZ(6deg);
    filter: saturate(.88) brightness(.9);
}

.dc-uniq-gallery-item.is-next {
    z-index: 2;
    opacity: .85;
    transform: translateX(18%) scale(.82) rotateY(-11deg) rotateZ(-6deg);
    filter: saturate(.88) brightness(.9);
}

.dc-uniq-gallery-arrow {
    position: absolute;
    top: 42%;
    z-index: 5;
    width: 68px;
    height: 68px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--dc-uniq-gold);
    box-shadow: 0 16px 36px rgba(15,23,42,.14);
    cursor: pointer;
    font-size: 58px;
    line-height: 1;
}

.dc-uniq-gallery-arrow--prev { left: max(24px, calc(50% - 560px)); }
.dc-uniq-gallery-arrow--next { right: max(24px, calc(50% - 560px)); }

.dc-uniq-gallery-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 48px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dc-uniq-gallery-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 99px;
    background: #eadfc6;
    cursor: pointer;
}

.dc-uniq-gallery-dots button.is-active {
    width: 34px;
    background: var(--dc-uniq-gold);
}

.dc-uniq-tour {
    min-height: 720px;
    background: var(--dc-uniq-black);
    color: #fff;
}

.dc-uniq-tour .dc-uniq-center p { color: rgba(255,255,255,.8); }

.dc-uniq-tour-frame {
    margin-top: 70px;
    border: 1px solid rgba(202,164,100,.35);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0,0,0,.35);
}

.dc-uniq-tour-frame iframe,
.dc-uniq-tour-frame img {
    display: block;
    width: 100%;
    min-height: 520px;
    border: 0;
    object-fit: cover;
}

.dc-uniq-options {
    background: #fff;
}

.dc-uniq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 38px;
}

.dc-uniq-tabs span {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 28px;
    border: 1px solid #e4eaf2;
    border-radius: 999px;
    color: #6c7485;
    background: #fff;
    font-size: 14px;
    font-weight: 800;
}

.dc-uniq-tabs span.is-active {
    color: #fff;
    background: var(--dc-uniq-gold);
    box-shadow: 0 14px 28px rgba(202,164,100,.24);
}

.dc-uniq-option-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: center;
    gap: 64px;
    margin-top: 62px;
    padding: clamp(34px, 5vw, 70px);
    border: 1px solid #edf1f5;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 74px rgba(15,23,42,.08);
}

.dc-uniq-option-media {
    min-height: 360px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #f7f8fa;
    overflow: hidden;
}

.dc-uniq-option-media img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.dc-uniq-option-card h3 {
    font-size: clamp(34px, 3.8vw, 56px);
}

.dc-uniq-option-card p {
    margin-top: 20px;
    color: #687285;
    font-size: 17px;
    line-height: 1.75;
}

.dc-uniq-option-card .dc-uniq-button {
    margin-top: 34px;
    border-radius: 6px;
}

.dc-uniq-builder {
    background: #fff;
}

.dc-uniq-builder__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    align-items: center;
    gap: 86px;
}

.dc-uniq-builder-logo {
    display: block;
    max-width: 230px;
    max-height: 70px;
    object-fit: contain;
    margin-bottom: 34px;
}

.dc-uniq-builder-word {
    display: block;
    margin-bottom: 34px;
    color: #080808;
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.dc-uniq-builder h2 {
    font-size: clamp(42px, 4vw, 66px);
    line-height: 1.08;
}

.dc-uniq-builder h2 em {
    color: #d68b47;
    font-style: normal;
}

.dc-uniq-builder p {
    margin-top: 28px;
    color: #687285;
    font-size: 18px;
    line-height: 1.8;
}

.dc-uniq-builder .dc-uniq-button {
    margin-top: 36px;
    border-radius: 6px;
}

.dc-uniq-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.dc-uniq-stats-grid article {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 28px 36px;
    text-align: left;
}

.dc-uniq-icon--plain {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dc-uniq-icon--plain svg {
    width: 30px;
    height: 30px;
}

.dc-uniq-stats-grid strong {
    margin-top: 20px;
    color: #0b0b0b;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 42px;
    line-height: 1;
}

.dc-uniq-stats-grid span {
    margin-top: 10px;
    color: #6f7787;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.dc-uniq-location {
    background: #fff;
}

.dc-uniq-location-card {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.05fr);
    gap: clamp(42px, 6vw, 92px);
    align-items: center;
    padding: clamp(46px, 6vw, 78px);
    border-radius: 24px;
    background: #090909;
    color: #fff;
    box-shadow: 0 32px 80px rgba(0,0,0,.16);
}

.dc-uniq-location-card h2 {
    color: #fff;
    font-size: clamp(38px, 4vw, 58px);
}

.dc-uniq-location-card p {
    margin-top: 26px;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.75;
}

.dc-uniq-address-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 38px;
    padding: 26px 30px;
    border-radius: 10px;
    background: #fff;
    color: #111827;
}

.dc-uniq-address-card strong,
.dc-uniq-address-card span {
    display: block;
}

.dc-uniq-address-card strong {
    font-size: 18px;
    font-weight: 900;
}

.dc-uniq-address-card span {
    margin-top: 6px;
    color: #727b8c;
}

.dc-uniq-icon--address,
.dc-uniq-icon--small {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(202,164,100,.12);
    box-shadow: none;
}

.dc-uniq-location-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.dc-uniq-location-mini-grid article {
    min-height: 128px;
    padding: 22px;
    border-radius: 10px;
    background: #fff;
    color: #111827;
}

.dc-uniq-location-mini-grid strong,
.dc-uniq-location-mini-grid span {
    display: block;
}

.dc-uniq-location-mini-grid strong {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 900;
}

.dc-uniq-location-mini-grid span {
    margin-top: 8px;
    color: #727b8c;
    line-height: 1.55;
}

.dc-uniq-location-copy > .dc-uniq-button {
    margin-top: 34px;
    border-radius: 6px;
}

.dc-uniq-map-card {
    min-height: 390px;
    display: grid;
    place-items: center;
    border: 6px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: radial-gradient(circle at 20% 20%, rgba(202,164,100,.2), transparent 28%), #10141a;
    overflow: hidden;
    box-shadow: 0 28px 55px rgba(0,0,0,.28);
}

.dc-uniq-map-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    display: block;
}

.dc-uniq-map-card div {
    padding: 48px;
    color: #fff;
}

.dc-uniq-map-card strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    line-height: 1.1;
}

.dc-uniq-map-card span,
.dc-uniq-map-card p {
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,.7);
}

.dc-uniq-final {
    position: relative;
    padding: clamp(92px, 10vw, 132px) 0;
    background: radial-gradient(circle at 25% 34%, rgba(202,164,100,.16), transparent 28%), #050505;
    color: #fff;
}

.dc-uniq-final::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 74px;
    background: #fff;
    clip-path: ellipse(70% 54% at 50% 0%);
}

.dc-uniq-final__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, 430px);
    gap: clamp(50px, 7vw, 110px);
    align-items: center;
}

.dc-uniq-final h2 {
    color: #fff;
    font-size: clamp(40px, 4vw, 64px);
}

.dc-uniq-final h2 em {
    color: var(--dc-uniq-gold);
    font-style: normal;
}

.dc-uniq-final p {
    margin-top: 28px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.72;
}

.dc-uniq-final ul {
    display: grid;
    gap: 18px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.dc-uniq-final li {
    position: relative;
    padding-left: 34px;
    font-weight: 800;
}

.dc-uniq-final li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid var(--dc-uniq-gold);
    border-radius: 50%;
    color: var(--dc-uniq-gold);
    font-size: 12px;
}

.dc-uniq-form-card--dark {
    border-color: var(--dc-uniq-gold);
    background: rgba(15,15,15,.82);
    box-shadow: 0 32px 80px rgba(0,0,0,.45);
}

.dc-uniq-form-card--dark::before {
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}

.dc-uniq-form-card--dark > span,
.dc-uniq-form-card--dark h2 {
    color: #fff;
}

.dc-uniq-form-card--dark h2 {
    color: rgba(255,255,255,.7);
}

.dc-uniq-form-card--dark input {
    color: #fff;
    border-bottom-color: rgba(255,255,255,.2);
}

.dc-uniq-footer {
    padding: 60px 0 70px;
    background: var(--dc-uniq-cream);
    color: #737b8b;
    text-align: center;
}

.dc-uniq-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dc-uniq-footer__brand img {
    max-width: 112px;
    max-height: 58px;
    object-fit: contain;
}

.dc-uniq-footer__brand > strong {
    color: #141414;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.06em;
}

.dc-uniq-footer__mini {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #8b92a0;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.dc-uniq-footer__mini strong {
    color: #111;
    letter-spacing: -.03em;
}

.dc-uniq-footer__legal {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(15,23,42,.1);
}

.dc-uniq-footer__legal p {
    max-width: 820px;
    margin: 0 auto;
    color: #8b92a0;
    font-size: 12px;
    line-height: 1.65;
}

.dc-uniq-footer__legal nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
    color: #697084;
    font-size: 13px;
}

.dc-uniq-footer__legal small {
    display: block;
    margin-top: 22px;
    color: #9aa2b2;
}

@media (max-width: 1100px) {
    .dc-uniq-header {
        grid-template-columns: 1fr auto;
    }

    .dc-uniq-nav {
        display: none;
    }

    .dc-uniq-hero__grid,
    .dc-uniq-final__grid,
    .dc-uniq-location-card,
    .dc-uniq-builder__grid,
    .dc-uniq-option-card {
        grid-template-columns: 1fr;
    }

    .dc-uniq-why-grid,
    .dc-uniq-amenity-grid,
    .dc-uniq-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .dc-uniq-container {
        width: min(100% - 28px, 560px);
    }

    .dc-uniq-header {
        min-height: 72px;
        padding: 12px 16px;
    }

    .dc-uniq-logo {
        min-width: 0;
        font-size: 21px;
    }

    .dc-uniq-header-button {
        min-width: 116px;
        min-height: 44px;
        padding: 0 18px;
        font-size: 11px;
    }

    .dc-uniq-hero {
        padding-top: 96px;
        align-items: flex-start;
    }

    .dc-uniq-hero h1 {
        font-size: clamp(46px, 13vw, 66px);
    }

    .dc-uniq-tag {
        min-height: 38px;
        padding: 0 14px;
        font-size: 10px;
        letter-spacing: .15em;
    }

    .dc-uniq-form-card {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .dc-uniq-why-grid,
    .dc-uniq-amenity-grid,
    .dc-uniq-stats-grid,
    .dc-uniq-location-mini-grid {
        grid-template-columns: 1fr;
    }

    .dc-uniq-section {
        padding: 72px 0;
    }

    .dc-uniq-amenity-grid article,
    .dc-uniq-why-grid article {
        min-height: auto;
    }

    .dc-uniq-gallery-carousel {
        height: 390px;
        margin-top: 44px;
    }

    .dc-uniq-gallery-item {
        width: 78vw;
        height: 260px;
    }

    .dc-uniq-gallery-item.is-prev,
    .dc-uniq-gallery-item.is-next {
        opacity: .18;
    }

    .dc-uniq-gallery-arrow {
        width: 48px;
        height: 48px;
        font-size: 42px;
    }

    .dc-uniq-option-card,
    .dc-uniq-location-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .dc-uniq-map-card,
    .dc-uniq-map-card img,
    .dc-uniq-tour-frame iframe,
    .dc-uniq-tour-frame img {
        min-height: 280px;
    }
}

/* Fase 2F — unificação visual pública e acabamento UNIQ */
.dc-uniq {
    --dc-uniq-container: min(1136px, calc(100% - 48px));
    --dc-uniq-text: #121827;
    --dc-uniq-muted: #667085;
    --dc-uniq-blue-kill: #121827;
    background: #f8f5ee;
}

.dc-uniq :where(a, p, span, small, li, input, button, label, strong) {
    color: inherit;
}

.dc-uniq-container {
    width: var(--dc-uniq-container);
}

.dc-uniq-header {
    min-height: 92px;
    padding-inline: max(40px, calc((100vw - 1220px) / 2));
    grid-template-columns: 220px minmax(0, 1fr) 220px;
}

.dc-uniq-logo {
    color: #d4ae6b;
    font-size: 25px;
    letter-spacing: -.075em;
}

.dc-uniq-nav {
    gap: clamp(24px, 2.9vw, 42px);
    color: inherit;
}

.dc-uniq-header-button {
    min-width: 136px;
    min-height: 54px;
    border-radius: 6px;
}

.dc-uniq-hero {
    min-height: 100vh;
    padding-top: 118px;
    padding-bottom: 64px;
}

.dc-uniq-hero__grid {
    grid-template-columns: minmax(0, 560px) minmax(390px, 430px);
    justify-content: center;
    gap: clamp(78px, 9vw, 148px);
}

.dc-uniq-hero__copy {
    max-width: 560px;
}

.dc-uniq-hero h1 {
    max-width: 620px;
    font-size: clamp(64px, 5.95vw, 112px);
    line-height: .91;
    letter-spacing: -.055em;
}

.dc-uniq-hero__subtitle {
    margin-top: 18px;
    color: #fff;
    font-size: 18px;
    letter-spacing: .02em;
}

.dc-uniq-hero__text {
    max-width: 520px;
    margin-top: 12px;
    color: rgba(255, 255, 255, .92);
    font-size: 20px;
    line-height: 1.48;
}

.dc-uniq-badges {
    gap: 12px;
    margin-top: 28px;
}

.dc-uniq-badges span {
    min-height: 48px;
    padding: 0 22px;
    color: #fff;
    background: rgba(5, 5, 5, .58);
    border-color: rgba(255, 255, 255, .22);
    backdrop-filter: blur(8px);
}

.dc-uniq-badges span:last-child {
    border-color: rgba(216, 183, 119, .92);
    color: #e7c987;
}

.dc-uniq-form-card {
    width: 100%;
    max-width: 430px;
    min-height: 596px;
    padding: 48px 44px;
    border-radius: 20px;
    border-top-width: 5px;
}

.dc-uniq-form-card > span {
    font-size: 34px;
}

.dc-uniq-form-card h2,
.dc-uniq-final .dc-uniq-form-card h2,
.dc-uniq-form-card--dark h2 {
    margin-top: 12px;
    color: #657083;
    font-family: Poppins, Inter, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    line-height: 1.45;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.dc-uniq-form label span {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dc-uniq-form input {
    height: 62px;
    color: #121827;
    font-size: 15px;
    box-shadow: none !important;
}

.dc-uniq-form input::placeholder {
    color: #97a1b3;
    opacity: 1;
}

.dc-uniq-form button {
    border-radius: 6px;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.dc-uniq-form button:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
    box-shadow: 0 22px 44px rgba(190, 123, 52, .32);
}

.dc-uniq-section {
    padding: clamp(96px, 9vw, 142px) 0;
}

.dc-uniq-center h2,
.dc-uniq-location-card h2,
.dc-uniq-final > .dc-uniq-container > div > h2 {
    color: #121827;
    font-size: clamp(48px, 4.25vw, 72px);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.dc-uniq-center p,
.dc-uniq-builder p,
.dc-uniq-options p,
.dc-uniq-location-copy p {
    color: #667085;
}

.dc-uniq-why-grid {
    gap: 34px;
    margin-top: 74px;
}

.dc-uniq-why-grid article {
    min-height: 332px;
    padding: 54px 42px 44px;
    border: 1px solid rgba(20, 24, 33, .055);
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 20px 60px rgba(20, 24, 33, .065);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.dc-uniq-why-grid article:hover {
    transform: translateY(-10px);
    border-color: rgba(202, 164, 100, .55);
    box-shadow: 0 34px 86px rgba(20, 24, 33, .12);
}

.dc-uniq-icon {
    color: #caa464;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
}

.dc-uniq-why-grid article:hover .dc-uniq-icon,
.dc-uniq-amenity-grid article:hover .dc-uniq-icon {
    transform: translateY(-5px) rotate(-4deg);
    color: #fff;
    background: linear-gradient(135deg, #d8b777, #bd7835);
    box-shadow: 0 20px 42px rgba(202, 164, 100, .28);
}

.dc-uniq-section--dark {
    background: #050505;
}

.dc-uniq-section--dark .dc-uniq-center h2,
.dc-uniq-section--dark .dc-uniq-center h2:not(em) {
    color: #fff;
}

.dc-uniq-section--dark .dc-uniq-center h2 em,
.dc-uniq h2 em {
    color: #caa464;
}

.dc-uniq-section--dark .dc-uniq-center p {
    color: rgba(255, 255, 255, .86);
}

.dc-uniq-amenity-grid {
    gap: 34px;
    margin-top: 82px;
}

.dc-uniq-amenity-grid article {
    min-height: 292px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.dc-uniq-amenity-grid article:hover {
    transform: translateY(-10px);
    border-color: rgba(202, 164, 100, .52);
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
    box-shadow: 0 34px 86px rgba(0, 0, 0, .32);
}

.dc-uniq-amenity-grid h3,
.dc-uniq-amenity-grid p {
    color: #fff;
}

.dc-uniq-amenity-grid p {
    color: rgba(222, 232, 245, .82);
}

.dc-uniq-gallery-section {
    background: #fbfaf7;
}

.dc-uniq-gallery-carousel {
    margin-top: 80px;
}

.dc-uniq-gallery-item {
    transition: transform .35s ease, opacity .35s ease, filter .35s ease;
}

.dc-uniq-gallery-item img {
    box-shadow: 0 28px 70px rgba(20, 24, 33, .16);
}

.dc-uniq-gallery-arrow {
    color: #caa464;
    background: #fff;
    box-shadow: 0 18px 42px rgba(20, 24, 33, .14);
}

.dc-uniq-options {
    background: #fbfaf7;
}

.dc-uniq-tabs span {
    color: #667085;
    background: #fff;
    border-color: rgba(20, 24, 33, .12);
}

.dc-uniq-tabs span.is-active {
    color: #fff;
    background: linear-gradient(135deg, #d8b777, #bd7835);
    box-shadow: 0 18px 32px rgba(202, 164, 100, .28);
}

.dc-uniq-option-card {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 78px rgba(20, 24, 33, .11);
}

.dc-uniq-location {
    background: #fbfaf7;
}

.dc-uniq-location-card {
    width: min(1120px, calc(100% - 48px));
    border-radius: 24px;
    background: #070707;
    box-shadow: 0 34px 86px rgba(20, 24, 33, .14);
}

.dc-uniq-location-card h2,
.dc-uniq-location-copy h2 {
    color: #fff;
}

.dc-uniq-location-copy p {
    color: rgba(255, 255, 255, .78);
}

.dc-uniq-map-card {
    border: 8px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: linear-gradient(135deg, #151c25, #0a0d12);
    box-shadow: 0 28px 70px rgba(0,0,0,.32);
}

.dc-uniq-final {
    overflow: hidden;
}

.dc-uniq-final__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    align-items: center;
}

.dc-uniq-final .dc-uniq-form-card {
    max-height: none;
    min-height: 600px;
    overflow: hidden;
}

.dc-uniq-final .dc-uniq-form-card > span {
    font-size: 34px;
}

.dc-uniq-final .dc-uniq-form-card h2 {
    max-width: 100%;
    font-size: 12px !important;
    letter-spacing: .15em !important;
    line-height: 1.45 !important;
    color: rgba(255,255,255,.74) !important;
}

.dc-uniq-footer {
    background: #f4f0e8;
}

@media (max-width: 1024px) {
    .dc-uniq-header {
        grid-template-columns: 1fr auto;
        gap: 18px;
        min-height: 82px;
    }
    .dc-uniq-nav { display: none; }
    .dc-uniq-hero__grid,
    .dc-uniq-final__grid {
        grid-template-columns: 1fr;
    }
    .dc-uniq-form-card { max-width: 100%; }
}

@media (max-width: 640px) {
    .dc-uniq-container,
    .dc-uniq-location-card {
        width: min(100% - 32px, 1136px);
    }
    .dc-uniq-header {
        padding-inline: 18px;
    }
    .dc-uniq-header-button {
        min-width: 118px;
        min-height: 48px;
        padding-inline: 18px;
    }
    .dc-uniq-hero h1 {
        font-size: clamp(50px, 15vw, 72px);
    }
    .dc-uniq-form-card {
        padding: 34px 26px;
        min-height: auto;
    }
}

/* Fase 2G — Home de imóveis disponíveis */
.dc-uniq--home-list {
    background: #f7f3ec;
}

.dc-uniq-header--light {
    background: rgba(255, 255, 255, .94) !important;
    color: #121722 !important;
    box-shadow: 0 12px 34px rgba(10, 14, 20, .08);
}

.dc-home-hero {
    padding: clamp(120px, 12vw, 170px) 0 clamp(70px, 8vw, 110px);
    background:
        radial-gradient(circle at 12% 18%, rgba(208, 166, 96, .22), transparent 34%),
        linear-gradient(135deg, #0a0d12 0%, #131922 48%, #f5f0e8 48.1%, #f7f3ec 100%);
    color: #fff;
    overflow: hidden;
}

.dc-home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
}

.dc-home-hero h1 {
    margin: 16px 0 22px;
    max-width: 760px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(54px, 7vw, 104px);
    line-height: .92;
    letter-spacing: -.055em;
    color: #fff;
}

.dc-home-hero h1 em {
    color: #d2ac6a;
    font-style: normal;
}

.dc-home-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.6;
}

.dc-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.dc-home-stats {
    display: grid;
    gap: 18px;
}

.dc-home-stats article {
    min-height: 126px;
    padding: 26px;
    border: 1px solid rgba(210, 172, 106, .26);
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    color: #111723;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

.dc-home-stats strong {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    color: #111723;
}

.dc-home-stats span {
    display: block;
    margin-top: 10px;
    color: #687386;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.dc-home-listing {
    background: #fbfaf7;
    padding-top: clamp(70px, 8vw, 120px);
}

.dc-home-property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 34px);
    margin-top: clamp(42px, 5vw, 74px);
}

.dc-home-property-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(17, 23, 35, .08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 80px rgba(17, 23, 35, .09);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.dc-home-property-card:hover {
    transform: translateY(-8px);
    border-color: rgba(210, 172, 106, .48);
    box-shadow: 0 32px 110px rgba(17, 23, 35, .16);
}

.dc-home-property-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1.42;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1118, #202936);
    color: #d2ac6a;
    text-decoration: none;
}

.dc-home-property-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .42s ease, opacity .42s ease;
}

.dc-home-property-card:hover .dc-home-property-card__media img {
    transform: scale(1.055);
    opacity: .88;
}

.dc-home-property-card__media span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: -.04em;
}

.dc-home-property-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px;
}

.dc-home-property-card__region {
    color: #d2a253;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dc-home-property-card h3 {
    margin: 12px 0 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(25px, 2vw, 34px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.dc-home-property-card h3 a {
    color: #111723 !important;
    text-decoration: none !important;
}

.dc-home-property-card p {
    color: #667184;
    line-height: 1.58;
}

.dc-home-property-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.dc-home-property-card__meta span {
    border: 1px solid rgba(17, 23, 35, .08);
    border-radius: 999px;
    padding: 9px 13px;
    background: #f8f5ef;
    color: #111723;
    font-size: 12px;
    font-weight: 800;
}

.dc-home-property-card__actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.dc-home-property-card__actions .dc-uniq-button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
}

.dc-home-final {
    padding-top: clamp(72px, 8vw, 118px);
}

.dc-home-contact-card {
    display: grid;
    gap: 18px;
    align-content: center;
    min-height: 360px;
    border: 1px solid rgba(210, 172, 106, .32);
    border-radius: 26px;
    padding: clamp(34px, 4vw, 56px);
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
}

.dc-home-contact-card strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 5vw, 70px);
    color: #fff;
}

.dc-home-contact-card span {
    color: rgba(255,255,255,.72);
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Fase 2G — Lightbox da galeria */
.dc-uniq-gallery-item {
    cursor: zoom-in;
}

.dc-uniq-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(22px, 4vw, 54px);
    background: rgba(2, 4, 8, .88);
    backdrop-filter: blur(14px);
}

.dc-uniq-lightbox.is-open {
    display: flex;
}

.dc-uniq-lightbox__dialog {
    position: relative;
    width: min(1180px, 100%);
    max-height: 88vh;
    display: grid;
    gap: 14px;
}

.dc-uniq-lightbox__image-wrap {
    border-radius: 24px;
    overflow: hidden;
    background: #111723;
    box-shadow: 0 34px 120px rgba(0, 0, 0, .56);
}

.dc-uniq-lightbox__image-wrap img {
    display: block;
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    background: #0d1118;
}

.dc-uniq-lightbox__caption {
    color: rgba(255,255,255,.82);
    text-align: center;
    font-weight: 700;
}

.dc-uniq-lightbox__close,
.dc-uniq-lightbox__arrow {
    position: absolute;
    border: 0;
    cursor: pointer;
    color: #111723;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0,0,0,.28);
    transition: transform .24s ease, background .24s ease;
}

.dc-uniq-lightbox__close:hover,
.dc-uniq-lightbox__arrow:hover {
    transform: translateY(-2px);
    background: #d2ac6a;
}

.dc-uniq-lightbox__close {
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 26px;
    line-height: 1;
}

.dc-uniq-lightbox__arrow {
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    font-size: 34px;
    transform: translateY(-50%);
}

.dc-uniq-lightbox__arrow:hover {
    transform: translateY(calc(-50% - 2px));
}

.dc-uniq-lightbox__arrow--prev { left: -28px; }
.dc-uniq-lightbox__arrow--next { right: -28px; }

@media (max-width: 1100px) {
    .dc-home-property-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dc-home-hero__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .dc-home-property-grid { grid-template-columns: 1fr; }
    .dc-home-hero { padding-top: 110px; }
    .dc-uniq-lightbox__arrow--prev { left: 8px; }
    .dc-uniq-lightbox__arrow--next { right: 8px; }
    .dc-uniq-lightbox__close { top: 8px; right: 8px; }
}

/* Fase 2H — Home limpa com carrossel + ajustes de proporção */
:root {
    --dc-admin-offset: 0px;
}

.dc-uniq-header,
.dc-public-header {
    top: var(--dc-admin-offset, 0px) !important;
}

.dc-uniq--home-list {
    background: #f8f4ed;
}

.dc-uniq--home-list .dc-uniq-header {
    min-height: 86px;
}

.dc-home-hero--clean {
    position: relative;
    overflow: hidden;
    padding: clamp(130px, 10vw, 170px) 0 clamp(72px, 7vw, 108px);
    background:
        radial-gradient(circle at 86% 15%, rgba(207, 162, 86, .20), transparent 32%),
        linear-gradient(180deg, #fbfaf7 0%, #f5f0e8 100%);
    color: #111723;
}

.dc-home-hero--clean::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 52px;
    background: #fbfaf7;
    clip-path: ellipse(58% 60% at 50% 100%);
}

.dc-home-hero__clean-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 420px);
    align-items: center;
    gap: clamp(34px, 6vw, 84px);
}

.dc-home-hero__content h1 {
    margin: 14px 0 22px;
    max-width: 720px;
    color: #121722;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(50px, 6.2vw, 88px);
    line-height: .96;
    letter-spacing: -.05em;
}

.dc-home-hero__content h1 em {
    color: #c9a260;
    font-style: normal;
}

.dc-home-hero__content p {
    max-width: 620px;
    color: #5e6879;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.7;
}

.dc-home-hero__summary {
    display: grid;
    gap: 16px;
}

.dc-home-hero__summary article {
    display: grid;
    gap: 8px;
    min-height: 104px;
    padding: 22px 24px;
    border: 1px solid rgba(17, 23, 35, .07);
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 24px 70px rgba(17, 23, 35, .09);
}

.dc-home-hero__summary strong {
    color: #111723;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1;
    letter-spacing: -.04em;
}

.dc-home-hero__summary span {
    color: #687386;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dc-uniq-button--dark {
    color: #111723 !important;
    border-color: rgba(17, 23, 35, .22) !important;
    background: rgba(255, 255, 255, .74) !important;
}

.dc-uniq-button--dark:hover {
    color: #fff !important;
    border-color: transparent !important;
    background: #111723 !important;
}

.dc-home-listing {
    padding-top: clamp(76px, 8vw, 118px);
    padding-bottom: clamp(70px, 8vw, 112px);
    background: #fbfaf7;
}

.dc-home-carousel {
    position: relative;
    margin-top: clamp(38px, 5vw, 66px);
}

.dc-home-carousel__viewport {
    overflow: hidden;
    padding: 10px 4px 42px;
}

.dc-home-carousel__track {
    display: flex;
    gap: clamp(18px, 2vw, 26px);
    transition: transform .45s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.dc-home-carousel .dc-home-property-card {
    flex: 0 0 min(360px, calc(100vw - 64px));
    min-height: 0;
}

.dc-home-carousel__arrow {
    position: absolute;
    top: 43%;
    z-index: 3;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #c9a260;
    box-shadow: 0 18px 52px rgba(17, 23, 35, .14);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.dc-home-carousel__arrow:hover {
    transform: translateY(-2px) scale(1.04);
    background: linear-gradient(135deg, #d9bd78, #bd7835);
    color: #fff;
    box-shadow: 0 24px 68px rgba(189, 120, 53, .32);
}

.dc-home-carousel__arrow--prev { left: -18px; }
.dc-home-carousel__arrow--next { right: -18px; }

.dc-home-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: -12px;
}

.dc-home-carousel__dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(201, 162, 96, .32);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.dc-home-carousel__dots button.is-active {
    width: 28px;
    background: #c9a260;
}

.dc-home-property-card {
    border-radius: 24px;
}

.dc-home-property-card__media {
    aspect-ratio: 1.56;
    background: linear-gradient(135deg, #edf0f3, #d8dee6);
}

.dc-home-property-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.08));
    opacity: 0;
    transition: opacity .32s ease;
}

.dc-home-property-card:hover .dc-home-property-card__media::after {
    opacity: 1;
}

.dc-home-property-card__media span {
    display: grid;
    gap: 8px;
    place-items: center;
    color: rgba(17, 23, 35, .45);
    font-size: 22px;
}

.dc-home-property-card__media span small {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dc-home-property-card__body {
    padding: 24px 24px 26px;
}

.dc-home-property-card h3 {
    font-size: clamp(25px, 1.85vw, 31px);
}

.dc-home-property-card p {
    display: none;
}

.dc-home-property-card__actions {
    grid-template-columns: 1fr;
}

.dc-home-property-card__actions .dc-uniq-button--ghost {
    min-height: 42px;
    color: #111723 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.dc-home-support {
    padding: clamp(64px, 7vw, 104px) 0;
    background: #0a0a0a;
    color: #fff;
}

.dc-home-support__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
}

.dc-home-support h2 {
    margin: 12px 0 12px;
    max-width: 720px;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.dc-home-support p {
    max-width: 680px;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.65;
}

.dc-uniq-section--dark .dc-uniq-center h2,
.dc-uniq-final h2,
.dc-uniq--property .dc-uniq-section--dark h2,
.dc-uniq--property .dc-uniq-location h2 {
    color: #fff !important;
}

.dc-uniq-section--dark .dc-uniq-center h2 em,
.dc-uniq-final h2 em {
    color: #c9a260 !important;
}

.dc-uniq-card,
.dc-uniq-amenity,
.dc-uniq-location-card,
.dc-uniq-builder-stat {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.dc-uniq-card:hover,
.dc-uniq-amenity:hover,
.dc-uniq-location-card:hover,
.dc-uniq-builder-stat:hover {
    transform: translateY(-7px);
    border-color: rgba(201, 162, 96, .46) !important;
    box-shadow: 0 24px 76px rgba(17, 23, 35, .14);
}

@media (max-width: 1100px) {
    .dc-home-carousel__arrow--prev { left: 4px; }
    .dc-home-carousel__arrow--next { right: 4px; }
}

@media (max-width: 900px) {
    .dc-home-hero__clean-grid,
    .dc-home-support__grid {
        grid-template-columns: 1fr;
    }
    .dc-home-hero--clean {
        padding-top: 112px;
    }
    .dc-home-hero__summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .dc-home-hero__summary article {
        min-height: 92px;
        padding: 18px;
    }
}

@media (max-width: 640px) {
    .dc-home-hero__summary {
        grid-template-columns: 1fr;
    }
    .dc-home-carousel__arrow {
        width: 48px;
        height: 48px;
        font-size: 32px;
    }
}

/* Fase 2I — home vitrine limpa, carrossel proporcional e login refinado */
.dc-uniq--home-vitrine {
    background: #fbfaf7;
    color: #111723;
}

.dc-uniq--home-vitrine .dc-uniq-header {
    height: 84px;
    min-height: 84px;
    background: rgba(255, 255, 255, .96) !important;
    border-bottom: 1px solid rgba(17, 23, 35, .07);
    box-shadow: 0 18px 44px rgba(17, 23, 35, .08);
}

.dc-home-hero--vitrine {
    position: relative;
    overflow: hidden;
    padding: clamp(124px, 9vw, 150px) 0 clamp(52px, 5vw, 72px);
    background:
        radial-gradient(circle at 100% 0%, rgba(201, 162, 96, .15), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f7f2ea 100%);
    color: #111723;
}

.dc-home-hero--vitrine::before,
.dc-home-hero--vitrine::after {
    display: none !important;
    content: none !important;
}

.dc-home-hero__vitrine-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: end;
    gap: clamp(28px, 5vw, 74px);
}

.dc-home-hero--vitrine .dc-home-hero__content h1 {
    margin: 14px 0 18px;
    max-width: 760px;
    color: #111723;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(46px, 5.6vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
}

.dc-home-hero--vitrine .dc-home-hero__content h1 em {
    color: #c9a260;
    font-style: normal;
}

.dc-home-hero--vitrine .dc-home-hero__content p {
    max-width: 650px;
    color: #657084;
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.65;
}

.dc-home-hero--vitrine .dc-home-hero__actions {
    margin-top: 26px;
    gap: 12px;
}

.dc-home-hero__summary--inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.dc-home-hero__summary--inline article {
    min-height: 86px;
    padding: 18px 22px;
    border: 1px solid rgba(17, 23, 35, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 22px 56px rgba(17, 23, 35, .08);
}

.dc-home-hero__summary--inline strong {
    color: #111723;
    font-size: clamp(28px, 3vw, 42px);
}

.dc-home-hero__summary--inline span {
    color: #687386;
}

.dc-home-listing--carousel {
    padding-top: clamp(64px, 7vw, 92px) !important;
    padding-bottom: clamp(58px, 7vw, 94px) !important;
    background: #fbfaf7 !important;
}

.dc-home-listing--carousel .dc-uniq-center {
    max-width: 820px;
}

.dc-home-listing--carousel .dc-uniq-center h2 {
    color: #111723;
    font-size: clamp(42px, 4.8vw, 70px);
    line-height: 1.04;
}

.dc-home-carousel--compact {
    max-width: 1180px;
    margin-top: clamp(30px, 4vw, 48px) !important;
}

.dc-home-carousel--compact .dc-home-carousel__viewport {
    overflow: hidden;
    padding: 10px 4px 34px;
}

.dc-home-carousel--compact .dc-home-carousel__track {
    gap: 24px;
}

.dc-home-carousel--compact .dc-home-property-card {
    flex: 0 0 342px;
    max-width: 342px;
    min-height: auto;
    overflow: hidden;
    border: 1px solid rgba(17, 23, 35, .08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 56px rgba(17, 23, 35, .09);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.dc-home-carousel--compact .dc-home-property-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 96, .44);
    box-shadow: 0 30px 76px rgba(17, 23, 35, .14);
}

.dc-home-carousel--compact .dc-home-property-card__media {
    height: 214px;
    aspect-ratio: auto;
    border-radius: 0;
    background: linear-gradient(135deg, #111723, #1a2433);
}

.dc-home-carousel--compact .dc-home-property-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
}

.dc-home-carousel--compact .dc-home-property-card:hover .dc-home-property-card__media img {
    transform: scale(1.045);
}

.dc-home-carousel--compact .dc-home-property-card__media span {
    color: rgba(255, 255, 255, .70);
}

.dc-home-carousel--compact .dc-home-property-card__body {
    padding: 22px 22px 24px;
}

.dc-home-carousel--compact .dc-home-property-card__region {
    display: block;
    min-height: 1.2em;
    color: #c08a39;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dc-home-carousel--compact .dc-home-property-card h3 {
    min-height: 2.18em;
    margin: 10px 0 12px;
    color: #111723;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.dc-home-carousel--compact .dc-home-property-card h3 a {
    color: inherit;
    text-decoration: none;
}

.dc-home-carousel--compact .dc-home-property-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 64px;
    margin: 0 0 18px;
}

.dc-home-carousel--compact .dc-home-property-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(17, 23, 35, .08);
    border-radius: 999px;
    background: #f8f4ed;
    color: #111723;
    font-size: 12px;
    font-weight: 800;
}

.dc-home-carousel--compact .dc-home-property-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dc-home-carousel--compact .dc-home-property-card__actions .dc-uniq-button {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 12px;
    white-space: nowrap;
}

.dc-home-carousel--compact .dc-home-carousel__arrow {
    display: grid;
    place-items: center;
    top: 50%;
    width: 52px;
    height: 52px;
    padding: 0;
    font-size: 0;
    transform: translateY(-50%);
}

.dc-home-carousel--compact .dc-home-carousel__arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dc-home-carousel--compact .dc-home-carousel__arrow:hover {
    transform: translateY(calc(-50% - 2px)) scale(1.04);
}

.dc-home-carousel--compact .dc-home-carousel__arrow--prev { left: -26px; }
.dc-home-carousel--compact .dc-home-carousel__arrow--next { right: -26px; }

.dc-home-support--compact {
    padding: clamp(54px, 6vw, 84px) 0;
}

.dc-home-support--compact .dc-home-support__grid {
    align-items: center;
}

.dc-home-support--compact h2 {
    color: #fff !important;
    font-size: clamp(34px, 3.7vw, 56px);
}

.dc-public-auth {
    background: #f8f4ed !important;
}

.dc-public-auth__shell {
    max-width: 1050px;
}

.dc-public-auth__intro h1 {
    font-size: clamp(38px, 4.2vw, 62px);
}

.dc-public-auth__card {
    border-color: rgba(201, 162, 96, .20);
    box-shadow: 0 24px 72px rgba(17, 23, 35, .10);
}

@media (max-width: 1180px) {
    .dc-home-carousel--compact .dc-home-carousel__arrow--prev { left: 8px; }
    .dc-home-carousel--compact .dc-home-carousel__arrow--next { right: 8px; }
}

@media (max-width: 980px) {
    .dc-home-hero__vitrine-grid {
        grid-template-columns: 1fr;
    }

    .dc-home-hero__summary--inline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .dc-home-hero--vitrine {
        padding-top: 112px;
    }

    .dc-home-hero__summary--inline {
        grid-template-columns: 1fr;
    }

    .dc-home-carousel--compact .dc-home-property-card {
        flex-basis: min(318px, calc(100vw - 54px));
        max-width: min(318px, calc(100vw - 54px));
    }

    .dc-home-carousel--compact .dc-home-property-card__actions {
        grid-template-columns: 1fr;
    }
}

/* Fase 2J — home estável: vitrine limpa, sem diagonal e sem card gigante */
.dc-uniq--home-stable {
    background: #fbfaf7 !important;
    color: #111723 !important;
}

.dc-uniq--home-stable .dc-uniq-header {
    position: sticky;
    top: 0;
    height: 86px !important;
    min-height: 86px !important;
    background: rgba(255, 255, 255, .97) !important;
    border-bottom: 1px solid rgba(17, 23, 35, .06) !important;
    box-shadow: 0 14px 36px rgba(17, 23, 35, .07) !important;
}

body.admin-bar .dc-uniq--home-stable .dc-uniq-header,
body.logged-in .dc-uniq--home-stable .dc-uniq-header {
    top: 40px;
}

.dc-home-hero--stable {
    position: relative !important;
    overflow: hidden !important;
    padding: clamp(92px, 8vw, 124px) 0 clamp(48px, 5vw, 70px) !important;
    background:
        radial-gradient(circle at 82% 16%, rgba(201, 162, 96, .12), transparent 32%),
        linear-gradient(180deg, #fff 0%, #f8f4ed 100%) !important;
    color: #111723 !important;
}

.dc-home-hero--stable::before,
.dc-home-hero--stable::after,
.dc-home-hero--stable .dc-home-hero__content::before,
.dc-home-hero--stable .dc-home-hero__content::after {
    display: none !important;
    content: none !important;
}

.dc-home-hero__stable-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
    align-items: center !important;
    gap: clamp(30px, 5vw, 72px) !important;
}

.dc-home-hero--stable .dc-home-hero__content {
    max-width: 720px !important;
}

.dc-home-hero--stable .dc-home-hero__content h1 {
    max-width: 720px !important;
    margin: 14px 0 18px !important;
    color: #111723 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(44px, 5.2vw, 78px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.055em !important;
}

.dc-home-hero--stable .dc-home-hero__content h1 em {
    color: #c9a260 !important;
    font-style: normal !important;
}

.dc-home-hero--stable .dc-home-hero__content p {
    max-width: 640px !important;
    color: #647084 !important;
    font-size: clamp(16px, 1.2vw, 19px) !important;
    line-height: 1.7 !important;
}

.dc-home-hero--stable .dc-home-hero__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 26px !important;
}

.dc-home-hero__summary--stable {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

.dc-home-hero__summary--stable article {
    min-height: 84px !important;
    padding: 18px 22px !important;
    border: 1px solid rgba(17, 23, 35, .08) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .88) !important;
    box-shadow: 0 18px 44px rgba(17, 23, 35, .07) !important;
}

.dc-home-hero__summary--stable strong {
    display: block !important;
    color: #111723 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(28px, 3vw, 40px) !important;
    line-height: 1 !important;
    letter-spacing: -.045em !important;
}

.dc-home-hero__summary--stable span {
    display: block !important;
    margin-top: 8px !important;
    color: #687386 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}

.dc-home-listing--stable {
    padding: clamp(64px, 7vw, 96px) 0 !important;
    background: #fbfaf7 !important;
}

.dc-home-listing--stable .dc-uniq-center {
    max-width: 820px !important;
}

.dc-home-listing--stable .dc-uniq-center h2 {
    color: #111723 !important;
    font-size: clamp(40px, 4.7vw, 68px) !important;
    line-height: 1.05 !important;
}

.dc-home-carousel--stable {
    position: relative !important;
    max-width: 1140px !important;
    margin-top: clamp(30px, 4vw, 48px) !important;
}

.dc-home-carousel--stable .dc-home-carousel__viewport {
    overflow: hidden !important;
    padding: 10px 4px 36px !important;
}

.dc-home-carousel--stable .dc-home-carousel__track {
    display: flex !important;
    align-items: stretch !important;
    gap: 24px !important;
    scroll-snap-type: x mandatory !important;
}

.dc-home-carousel--stable .dc-home-property-card {
    flex: 0 0 332px !important;
    width: 332px !important;
    max-width: 332px !important;
    min-height: auto !important;
    overflow: hidden !important;
    scroll-snap-align: start !important;
    border: 1px solid rgba(17, 23, 35, .08) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 18px 48px rgba(17, 23, 35, .08) !important;
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease !important;
}

.dc-home-carousel--stable .dc-home-property-card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(201, 162, 96, .42) !important;
    box-shadow: 0 28px 70px rgba(17, 23, 35, .14) !important;
}

.dc-home-carousel--stable .dc-home-property-card__media {
    height: 204px !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, #111723, #1a2433) !important;
}

.dc-home-carousel--stable .dc-home-property-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .34s ease !important;
}

.dc-home-carousel--stable .dc-home-property-card:hover .dc-home-property-card__media img {
    transform: scale(1.045) !important;
}

.dc-home-carousel--stable .dc-home-property-card__media span {
    color: rgba(255, 255, 255, .72) !important;
    font-weight: 900 !important;
}

.dc-home-carousel--stable .dc-home-property-card__body {
    padding: 22px !important;
}

.dc-home-carousel--stable .dc-home-property-card__region {
    color: #c08a39 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
}

.dc-home-carousel--stable .dc-home-property-card h3 {
    min-height: 2.08em !important;
    margin: 10px 0 10px !important;
    color: #111723 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 25px !important;
    line-height: 1.04 !important;
    letter-spacing: -.035em !important;
}

.dc-home-carousel--stable .dc-home-property-card h3 a {
    color: inherit !important;
    text-decoration: none !important;
}

.dc-home-carousel--stable .dc-home-property-card__meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    min-height: 56px !important;
    margin: 0 0 16px !important;
}

.dc-home-carousel--stable .dc-home-property-card__meta span {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 32px !important;
    padding: 7px 11px !important;
    border: 1px solid rgba(17, 23, 35, .08) !important;
    border-radius: 999px !important;
    background: #f8f4ed !important;
    color: #111723 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
}

.dc-home-carousel--stable .dc-home-property-card__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
}

.dc-home-carousel--stable .dc-home-property-card__actions .dc-uniq-button {
    min-height: 42px !important;
    padding: 9px 10px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
}

.dc-home-carousel--stable .dc-home-carousel__arrow {
    display: grid !important;
    place-items: center !important;
    position: absolute !important;
    top: 50% !important;
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #c08a39 !important;
    box-shadow: 0 16px 38px rgba(17, 23, 35, .14) !important;
    font-size: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 3 !important;
}

.dc-home-carousel--stable .dc-home-carousel__arrow svg {
    width: 22px !important;
    height: 22px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.4 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.dc-home-carousel--stable .dc-home-carousel__arrow--prev { left: -24px !important; }
.dc-home-carousel--stable .dc-home-carousel__arrow--next { right: -24px !important; }

.dc-home-support--stable {
    padding: clamp(54px, 6vw, 82px) 0 !important;
    background: #050505 !important;
}

.dc-home-support--stable h2 {
    color: #fff !important;
    font-size: clamp(32px, 3.5vw, 54px) !important;
}

@media (max-width: 980px) {
    .dc-home-hero__stable-grid {
        grid-template-columns: 1fr !important;
    }
    .dc-home-hero__summary--stable {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    .dc-home-hero--stable {
        padding-top: 96px !important;
    }
    .dc-home-hero__summary--stable {
        grid-template-columns: 1fr !important;
    }
    .dc-home-carousel--stable .dc-home-property-card {
        flex-basis: min(310px, calc(100vw - 54px)) !important;
        width: min(310px, calc(100vw - 54px)) !important;
        max-width: min(310px, calc(100vw - 54px)) !important;
    }
    .dc-home-carousel--stable .dc-home-carousel__arrow--prev { left: 6px !important; }
    .dc-home-carousel--stable .dc-home-carousel__arrow--next { right: 6px !important; }
    .dc-home-carousel--stable .dc-home-property-card__actions {
        grid-template-columns: 1fr !important;
    }
}


/* Fase 2K — limpeza AAAA home: vitrine simples, sem diagonal, sem containers esmagados */
.dc-uniq--home-stable {
    overflow-x: hidden !important;
}

.dc-uniq--home-stable .dc-uniq-container {
    width: min(100% - 40px, 1280px) !important;
    max-width: 1280px !important;
}

.dc-home-hero--stable {
    padding: clamp(58px, 7vw, 92px) 0 clamp(34px, 5vw, 56px) !important;
    background: linear-gradient(180deg, #fff 0%, #f8f4ed 100%) !important;
}

.dc-home-hero__stable-grid {
    display: block !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.dc-home-hero--stable .dc-home-hero__content {
    max-width: 820px !important;
    margin: 0 auto !important;
}

.dc-home-hero--stable .dc-home-hero__content h1 {
    max-width: 820px !important;
    margin: 12px auto 16px !important;
    font-size: clamp(38px, 5vw, 66px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.045em !important;
}

.dc-home-hero--stable .dc-home-hero__content p {
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(15px, 1.1vw, 18px) !important;
}

.dc-home-hero--stable .dc-home-hero__actions {
    justify-content: center !important;
}

.dc-home-hero__summary--stable {
    display: none !important;
}

.dc-home-listing--stable {
    padding: clamp(52px, 6vw, 82px) 0 !important;
}

.dc-home-listing--stable .dc-uniq-center h2 {
    font-size: clamp(34px, 4vw, 56px) !important;
    line-height: 1.08 !important;
}

.dc-home-carousel--stable {
    width: min(100% - 40px, 1280px) !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.dc-home-carousel--stable .dc-home-carousel__viewport {
    overflow: hidden !important;
    padding: 10px 58px 36px !important;
}

.dc-home-carousel--stable .dc-home-carousel__track {
    gap: 22px !important;
    scroll-behavior: smooth !important;
}

.dc-home-carousel--stable .dc-home-property-card {
    flex: 0 0 calc((100% - 44px) / 3) !important;
    width: calc((100% - 44px) / 3) !important;
    max-width: calc((100% - 44px) / 3) !important;
    border-radius: 20px !important;
}

.dc-home-carousel--stable .dc-home-property-card__media {
    height: 190px !important;
}

.dc-home-carousel--stable .dc-home-property-card__body {
    padding: 20px !important;
}

.dc-home-carousel--stable .dc-home-property-card h3 {
    min-height: auto !important;
    font-size: clamp(21px, 1.65vw, 26px) !important;
}

.dc-home-carousel--stable .dc-home-property-card__meta {
    min-height: 0 !important;
}

.dc-home-carousel--stable .dc-home-carousel__arrow--prev {
    left: 12px !important;
}

.dc-home-carousel--stable .dc-home-carousel__arrow--next {
    right: 12px !important;
}

.dc-home-support--stable {
    padding: clamp(44px, 5vw, 68px) 0 !important;
}

@media (max-width: 980px) {
    .dc-home-carousel--stable .dc-home-property-card {
        flex-basis: calc((100% - 22px) / 2) !important;
        width: calc((100% - 22px) / 2) !important;
        max-width: calc((100% - 22px) / 2) !important;
    }
}

@media (max-width: 720px) {
    .dc-uniq--home-stable .dc-uniq-container,
    .dc-home-carousel--stable {
        width: min(100% - 28px, 1280px) !important;
    }
    .dc-home-carousel--stable .dc-home-carousel__viewport {
        padding: 8px 0 34px !important;
    }
    .dc-home-carousel--stable .dc-home-property-card {
        flex-basis: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .dc-home-carousel--stable .dc-home-carousel__arrow {
        top: auto !important;
        bottom: -6px !important;
        transform: none !important;
    }
    .dc-home-carousel--stable .dc-home-carousel__arrow--prev { left: calc(50% - 58px) !important; }
    .dc-home-carousel--stable .dc-home-carousel__arrow--next { right: calc(50% - 58px) !important; }
}
