:root {
    --bg: #faf7f1;
    --bg-alt: #f1ebe1;
    --bg-deep: #ece4d6;
    --navy: #0d1b2a;
    --navy-soft: #14263a;
    --ink: #1f2733;
    --ink-soft: #5d6470;
    --gold: #a9802f;
    --gold-bright: #c9a45c;
    --gold-soft: #d9ac6c;
    --line: rgba(169, 128, 47, 0.32);
    --line-soft: rgba(31, 39, 51, 0.12);
    --white: #ffffff;
    --shadow-sm: 0 10px 30px rgba(13, 27, 42, 0.08);
    --shadow-lg: 0 30px 70px rgba(13, 27, 42, 0.18);
    --font-display: "Roboto", system-ui, sans-serif;
    --font-sans: "Roboto", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --container: 1400px;
    --radius: 2px;
    --float-w: 340px;
    --float-gap: 1.5rem;
    --form-reserve: 400px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.15rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.overline {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.overline::before {
    content: "";
    width: 2rem;
    height: 1px;
    background-color: var(--gold);
    display: inline-block;
}

.section-heading {
    max-width: 720px;
}

.section-heading .display {
    margin-top: 1.1rem;
}

.display {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: 0.005em;
    color: var(--navy);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.display--light {
    color: var(--white);
}

.lead {
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    color: var(--ink-soft);
    font-weight: 300;
    max-width: 60ch;
}

.divider {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 1.6rem;
}

.section {
    padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--alt {
    background-color: var(--bg-alt);
}

.section--deep {
    background-color: var(--navy);
    color: rgba(255, 255, 255, 0.86);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.95rem 2.4rem;
    border-radius: var(--radius);
    border: 1px solid var(--gold);
    background-color: var(--gold);
    color: var(--navy);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn--outline {
    background-color: transparent;
    color: var(--gold);
}

.btn--outline:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.btn--ghost-light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.btn--ghost-light:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem clamp(1.15rem, 3vw, 2.4rem);
    transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
    background-color: rgba(250, 247, 241, 0.98);
    padding-block: 0.85rem;
    box-shadow: 0 1px 0 var(--line-soft);
}

.site-header__logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-header.is-scrolled .site-header__logo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-header__logo img {
    height: 46px;
    width: auto;
    transition: filter 0.35s ease, height 0.35s ease;
}

.site-header.is-scrolled .site-header__logo img {
    height: 40px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.site-nav__link {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-block: 0.3rem;
    transition: color 0.3s ease;
}

.site-header.is-scrolled .site-nav__link {
    color: var(--ink);
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.site-nav__link:hover {
    color: var(--gold);
}

.site-nav__link:hover::after {
    width: 100%;
}

.site-nav__cta {
    border: 1px solid currentColor;
    padding: 0.55rem 1.5rem;
    border-radius: var(--radius);
    color: var(--gold-soft);
}

.site-header.is-scrolled .site-nav__cta {
    color: var(--gold);
}

.site-nav__cta::after {
    display: none;
}

.site-nav__cta:hover {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 34px;
    height: 26px;
    justify-content: center;
    background: none;
    border: 0;
    padding: 0;
}

.menu-toggle span {
    height: 2px;
    width: 100%;
    background-color: var(--white);
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-scrolled .menu-toggle span {
    background-color: var(--ink);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 80;
    background-color: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-menu__link:hover {
    color: var(--gold-soft);
}

.mobile-menu__close {
    position: absolute;
    top: 1.6rem;
    right: 1.8rem;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 2.4rem;
    line-height: 1;
}

.contact-rail {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 55;
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.float-active .contact-rail {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: none;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background-color: rgba(8, 16, 26, 0.96);
    backdrop-filter: blur(8px);
    transform: translateY(110%);
    transition: transform 0.4s ease;
}

.mobile-cta__wpp,
.mobile-cta__lead {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-cta__wpp {
    flex: 0 0 auto;
    width: 132px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.mobile-cta__wpp svg {
    width: 20px;
    height: 20px;
}

.mobile-cta__lead {
    flex: 1;
    background-color: var(--gold);
    color: var(--navy);
}

.contact-rail__item {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    color: var(--gold-soft);
    border: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-rail__item:first-child {
    border-top-left-radius: var(--radius);
}

.contact-rail__item:last-child {
    border-bottom-left-radius: var(--radius);
}

.contact-rail__item:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.contact-rail__item svg {
    width: 24px;
    height: 24px;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
}

.hero__overlay {
    display: none;
}

@media (max-width: 767px) {
    .hero__bg img {
        object-position: 85% bottom;
    }

    .hero__logo {
        width: min(96vw, 470px);
    }
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    padding-block: clamp(7rem, 12vh, 9rem) clamp(3.5rem, 7vh, 5rem);
}

.hero__content {
    max-width: 680px;
}

.hero__logo {
    display: block;
    width: clamp(240px, 32vw, 380px);
    height: auto;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 6px 16px rgba(8, 16, 26, 0.22));
}

.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 1.1rem;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    font-size: clamp(1.9rem, 4.1vw, 3.3rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 2px 16px rgba(8, 16, 26, 0.5), 0 1px 3px rgba(8, 16, 26, 0.4);
}

.hero__support {
    margin-top: 1.3rem;
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    font-weight: 300;
    color: var(--white);
    font-weight: 400;
    max-width: 28rem;
    text-align: justify;
    text-shadow: 0 2px 28px rgba(8, 16, 26, 0.85), 0 2px 14px rgba(8, 16, 26, 0.6);
}

.hero__specs {
    margin: 1.1rem 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero__spec {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    padding: 0.4rem 0.85rem;
    backdrop-filter: blur(4px);
    background-color: rgba(13, 27, 42, 0.22);
    white-space: nowrap;
}

.hero__spec--accent {
    color: var(--navy);
    background-color: var(--gold-soft);
    border-color: var(--gold-soft);
}

.hero__actions {
    margin-top: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: clamp(181px, 24vw, 286px);
}

.hero__actions .btn {
    width: 100%;
}

.hero__actions .btn:hover {
    background-color: var(--gold-bright);
    border-color: var(--gold-bright);
    color: var(--navy);
}

@media (max-width: 767px) {
    .hero__content {
        width: 100%;
    }

    .hero__specs {
        flex-wrap: nowrap;
        gap: 0.4rem;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hero__specs::-webkit-scrollbar {
        display: none;
    }

    .hero__spec {
        font-size: clamp(0.42rem, 1.7vw, 0.56rem);
        letter-spacing: 0.03em;
        padding: 0.4rem 0.55rem;
    }

    .hero__actions {
        width: 100%;
        max-width: none;
    }
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero__scroll-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, var(--gold-soft), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(0.7);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.float-cta {
    position: fixed;
    top: 50%;
    right: var(--float-gap);
    transform: translateY(-50%) translateX(135%);
    z-index: 58;
    width: var(--float-w);
    max-width: calc(100vw - 3rem);
    max-height: calc(100vh - 2.5rem);
    overflow-y: auto;
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.6rem 1.5rem 1.4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

body.float-active .float-cta {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 1181px) {
    main > .section:not(.contato) > .container {
        padding-right: var(--form-reserve);
    }

    .float-cta {
        right: max(var(--float-gap), calc((100vw - var(--container)) / 2));
    }
}

.float-cta .form {
    gap: 0.95rem;
}

.float-cta .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
    height: 70px;
}

.float-cta__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.18;
    color: var(--navy);
    margin-bottom: 1.1rem;
}

.lead-form__title {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 1.4rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.field {
    position: relative;
}

.field input,
.field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: 0.7rem 0 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.3s ease;
}

.field textarea {
    resize: vertical;
    min-height: 2.6rem;
}

.field label {
    position: absolute;
    left: 0;
    top: 0.7rem;
    font-size: 0.95rem;
    color: var(--ink-soft);
    pointer-events: none;
    transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-1.25rem);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.form__radios {
    border: 0;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form__radio {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.form__radio input {
    accent-color: var(--gold);
}

.form__check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.76rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.form__check input {
    accent-color: var(--gold);
    margin-top: 0.2rem;
}

.form__check button {
    background: none;
    border: 0;
    color: var(--gold);
    text-decoration: underline;
    padding: 0;
    font-size: inherit;
}

.form__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.4rem;
}

.form__actions .btn {
    width: 100%;
}

.form [mtn-error],
.form [mtn-warning],
.form [mtn-success] {
    font-size: 0.8rem;
}

.loader {
    width: 22px;
    height: 22px;
    border: 2px solid var(--line-soft);
    border-top-color: var(--gold);
    border-radius: 50%;
    display: none;
}

.loader.active {
    display: inline-block;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.split__media {
    position: relative;
}

.split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.split__caption {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 0.8rem;
}

.split__body p {
    margin-top: 1.6rem;
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.feature-grid {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 2.2rem 1.9rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
    border-color: var(--line);
}

.feature-card__num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}

.feature-card__title {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
    margin-top: 1.2rem;
}

.feature-card__text {
    margin-top: 0.8rem;
    color: var(--ink-soft);
    font-size: 0.98rem;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.highlights li {
    list-style: none;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 0.55rem 1.2rem;
    background-color: var(--white);
}

.duplex {
    background-color: var(--navy);
    color: rgba(255, 255, 255, 0.85);
}

.duplex .display {
    color: var(--white);
}

.duplex .overline {
    color: var(--gold-soft);
}

.duplex .overline::before {
    background-color: var(--gold-soft);
}

.duplex .split__body p {
    color: rgba(255, 255, 255, 0.78);
}

.duplex .highlights li {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(217, 172, 108, 0.4);
}

.duplex .split__caption {
    color: rgba(255, 255, 255, 0.55);
}

.local__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.local__routes {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.local__route {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-sans);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.35rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.local__route:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.local__route img {
    width: 18px;
    height: 18px;
}

.local__gallery {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1.2rem;
}

.local__gallery figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.local__gallery figure:first-child {
    grid-row: span 2;
}

.local__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
    transition: transform 0.6s ease;
}

.local__gallery figure:hover img {
    transform: scale(1.05);
}

.local__gallery figcaption {
    position: absolute;
    left: 1rem;
    bottom: 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.local__pois-intro {
    margin-top: 3rem;
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    font-weight: 300;
    color: var(--ink-soft);
    max-width: 60ch;
}

.local__pois {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2.5rem;
    padding: 0;
}

.local__poi {
    list-style: none;
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: var(--ink);
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 0.7rem;
}

.local__poi-name {
    text-transform: uppercase;
    font-weight: 500;
    flex: 1;
}

.local__poi-meta {
    color: var(--gold);
    white-space: nowrap;
}

.local__close {
    margin-top: 3rem;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--navy);
}

.local__address {
    text-align: center;
    margin-top: 0.8rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.lazer {
    background-color: var(--bg-deep);
}

.lazer__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.swiper-lazer {
    overflow: hidden;
    width: 100%;
}

.swiper-lazer .swiper-slide {
    width: min(72vw, 760px);
}

.lazer-slide {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.lazer-slide img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.lazer-slide figcaption {
    position: absolute;
    left: 1.2rem;
    bottom: 1rem;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.carousel-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1.5rem;
}

.carousel-nav {
    display: flex;
    gap: 0.8rem;
}

.carousel-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.carousel-btn svg {
    width: 26px;
    height: 26px;
}

.swiper-pagination {
    position: static;
    display: flex;
    gap: 0.5rem;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background-color: var(--ink-soft);
    opacity: 0.35;
    transition: opacity 0.3s ease, width 0.3s ease;
    border-radius: 100px;
}

.swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 26px;
    background-color: var(--gold);
}

.tipo__grid {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    align-items: stretch;
}

.tipo-card {
    background-color: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 2.4rem 2.1rem;
    display: flex;
    flex-direction: column;
}

.tipo-card__tag {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.tipo-card__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--navy);
    margin-top: 0.7rem;
    line-height: 1.1;
}

.tipo-card__spec {
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
}

.tipo-card--soft {
    background-color: var(--bg-alt);
    justify-content: center;
}

.tipo-card--soft .tipo-card__note {
    margin-top: 1.6rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.swiper-plantas {
    margin-top: clamp(2rem, 4vw, 3rem);
    overflow: hidden;
    max-width: 1040px;
    margin-inline: auto;
}

.swiper-plantas .swiper-slide {
    height: auto;
}

.planta-slide figure {
    margin: 0;
}

.planta-slide img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    background-color: var(--white);
}

.planta-slide figcaption {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 0.9rem;
    text-align: center;
}

.contato {
    position: relative;
    background-color: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.contato__grafismo {
    position: absolute;
    right: -6%;
    top: -10%;
    width: 40%;
    max-width: 520px;
    opacity: 0.12;
    pointer-events: none;
}

.contato__inner {
    position: relative;
    z-index: 1;
    max-width: 1060px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.contato__logo {
    display: block;
    width: clamp(200px, 22vw, 270px);
}

.contato__logo img {
    width: 100%;
    height: auto;
}

.contato__support {
    margin-top: 1.6rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    max-width: 38ch;
}

.contato__brokers {
    margin-top: 1.8rem;
}

.contato__brokers-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.contato__brokers-phone {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2rem;
    color: var(--white);
    margin-top: 0.4rem;
    display: inline-block;
}

.contato__credits {
    margin-top: 2.6rem;
    display: flex;
    gap: 2.6rem;
    flex-wrap: wrap;
}

.contato__credit-label {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.contato__credit-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-top: 0.3rem;
}

.contato__form {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(217, 172, 108, 0.25);
    border-radius: var(--radius);
    padding: 2.4rem 2.1rem;
}

.contato .field input,
.contato .field textarea {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.28);
}

.contato .field label {
    color: rgba(255, 255, 255, 0.72);
}

.contato .field input:focus,
.contato .field textarea:focus {
    border-bottom-color: var(--gold-soft);
}

.contato .field input:focus ~ label,
.contato .field input:not(:placeholder-shown) ~ label,
.contato .field textarea:focus ~ label,
.contato .field textarea:not(:placeholder-shown) ~ label {
    color: var(--gold-soft);
}

.contato .form__radio,
.contato .form__check {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer {
    background-color: #081320;
    color: rgba(255, 255, 255, 0.7);
    padding-block: clamp(3rem, 6vw, 4.5rem);
}

.site-footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand img {
    width: 170px;
}

.site-footer__address {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__partners {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: clamp(2.5rem, 6vw, 5rem);
    flex-wrap: wrap;
    padding-block: 2.4rem;
}

.site-footer__partner-label {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 1rem;
}

.site-footer__partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.site-footer__partner-logos img {
    height: 46px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.site-footer__legal {
    font-size: 0.66rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    padding-block: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal[hidden] {
    display: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 16, 26, 0.7);
    backdrop-filter: blur(4px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    background-color: var(--bg);
    border-radius: var(--radius);
    width: min(560px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal__dialog--xl {
    width: min(860px, 100%);
}

.modal__header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1rem 0;
}

.modal__close {
    background: none;
    border: 0;
    font-size: 2rem;
    line-height: 1;
    color: var(--ink-soft);
}

.modal__close:hover {
    color: var(--gold);
}

.modal__body {
    padding: 0 2rem 2rem;
}

.modal__body--policy h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.2rem;
}

.modal__body--policy h3 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    color: var(--navy);
    margin-top: 1.6rem;
}

.modal__body--policy p,
.modal__body--policy li {
    font-size: 0.86rem;
    color: var(--ink-soft);
    margin-top: 0.8rem;
}

.modal--feedback .modal__dialog {
    width: min(420px, 100%);
    text-align: center;
    padding: 2.5rem 2rem;
}

.feedback__lead {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2rem;
    color: var(--navy);
}

.feedback__text {
    margin-top: 0.6rem;
    color: var(--ink-soft);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1180px) {
    .float-cta {
        display: none;
    }

    .contact-rail {
        display: none;
    }

    .mobile-cta {
        display: flex;
    }

    body.float-active .mobile-cta {
        transform: translateY(0);
    }

    .contato__inner {
        grid-template-columns: 1fr;
    }

    .local__pois {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .site-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .duplex .split {
        direction: ltr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .tipo__grid {
        grid-template-columns: 1fr;
    }

    .local__gallery {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .local__gallery figure:first-child {
        grid-row: auto;
    }

    .contato__grafismo {
        display: none;
    }
}

@media (max-width: 560px) {
    .form__row {
        grid-template-columns: 1fr;
    }

    .local__pois {
        grid-template-columns: 1fr;
    }

    .hero {
        align-items: flex-end;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__scroll {
        display: none;
    }
}

/* ===== Apartamento decorado ===== */
.swiper-decorado {
    overflow: hidden;
    width: 100%;
}

.swiper-decorado .swiper-slide {
    width: min(72vw, 760px);
    height: auto;
}

.decorado__note,
.aerea__note {
    margin-top: 1.4rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* ===== Vista aérea ===== */
.aerea__grid {
    margin-top: clamp(2.2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.4rem;
}

.aerea__grid figure {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.aerea__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.aerea__main img {
    aspect-ratio: 16 / 10;
}

.aerea__side img {
    aspect-ratio: 4 / 5;
}

.aerea__grid figure:hover img {
    transform: scale(1.04);
}

.aerea__grid figcaption {
    position: absolute;
    left: 1.2rem;
    bottom: 1rem;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

/* ===== Ficha técnica ===== */
.ficha__grid {
    margin-top: clamp(2.2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}

.ficha-card {
    background-color: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 2rem 1.9rem;
}

.ficha-card__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    color: var(--navy);
    margin-bottom: 1.3rem;
}

.ficha-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ficha-card__list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--line-soft);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.ficha-card__list li:last-child {
    border-bottom: 0;
}

.ficha-card__list strong {
    color: var(--navy);
    font-weight: 600;
    text-align: right;
}

.ficha-card__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.ficha-card__tags li {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--ink);
    background-color: var(--bg);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 0.45rem 0.95rem;
}

.ficha__credits {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 6vw, 5rem);
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.ficha__credit-label {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.ficha__credit-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--navy);
}

.ficha__legal {
    margin-top: 2rem;
    font-size: 0.68rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 80ch;
}

/* ===== Footer credit ===== */
.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
}

.site-footer__credit::before {
    content: "|";
    margin-right: 0.55rem;
    color: rgba(255, 255, 255, 0.3);
}

.site-footer__credit {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__credit a {
    color: var(--gold-soft);
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-footer__credit a:hover {
    color: var(--gold-bright);
}

@media (max-width: 860px) {
    .ficha__grid {
        grid-template-columns: 1fr;
    }

    .aerea__grid {
        grid-template-columns: 1fr;
    }

    .aerea__side img {
        aspect-ratio: 16 / 10;
    }
}

/* ===== v2: hero, carrosséis, plantas e ficha ===== */
.hero__title-sub {
    display: block;
    margin-top: 0.55rem;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.7vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero__text {
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    font-weight: 700;
    color: var(--white);
    max-width: 60ch;
    text-transform: uppercase;
}

.hero__support {
    max-width: 46ch;
}

/* Slides de mídia (decorado + lazer) */
.swiper-decorado,
.swiper-lazer {
    overflow: hidden;
    width: 100%;
}

.swiper-decorado .swiper-slide,
.swiper-lazer .swiper-slide {
    width: min(86vw, 720px);
    height: auto;
}

.media-slide {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.media-slide picture {
    display: block;
}

.media-slide img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .swiper-decorado .swiper-slide,
    .swiper-lazer .swiper-slide {
        width: min(64vw, 720px);
    }
}

.media-slide figcaption {
    position: absolute;
    left: 1.2rem;
    bottom: 1rem;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.media-note {
    margin-top: 1.4rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* Dynamic bullets sem quebra de layout */
.swiper-pagination-bullets-dynamic {
    overflow: visible;
}

/* ===== Tipologia ===== */
.tipo__tabs {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
}

.tipo-tab {
    display: inline-flex;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.4rem);
    max-width: 100%;
    text-align: left;
    background-color: var(--bg-alt);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: clamp(1.3rem, 2.5vw, 1.7rem) clamp(1.5rem, 3vw, 2rem);
}

.tipo-tab__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding-right: clamp(1.5rem, 3vw, 2.4rem);
    border-right: 1px solid var(--line);
}

.tipo-tab__tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.tipo-tab__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: var(--navy);
    line-height: 1.1;
    white-space: nowrap;
}

.tipo-tab__specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.tipo-tab__specs li {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
    color: var(--ink-soft);
}

.planta-panel {
    margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
}

.planta-panel[hidden] {
    display: none;
}

.swiper-plantas-duplex {
    overflow: hidden;
    max-width: 940px;
    margin-inline: 0;
}

.swiper-plantas-duplex .swiper-slide {
    height: auto;
}

.planta-slide figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.planta-slide img {
    width: 100%;
    max-height: 68vh;
    object-fit: contain;
    background-color: var(--white);
    border-radius: var(--radius);
}

.planta-slide figcaption {
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-align: center;
}

/* ===== Ficha: lazer + tecnologia ===== */
.ficha__wrap {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: start;
}

.ficha-block__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: var(--navy);
    margin-bottom: 1.4rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
}

.tag-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-list li {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--ink);
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 0.5rem 1rem;
}

.tech-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
}

.tech-grid li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-sans);
    font-size: 0.86rem;
    line-height: 1.3;
    color: var(--ink);
}

.tech-grid svg {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    padding: 5px;
    color: var(--gold);
    border: 1px solid var(--line);
    border-radius: 50%;
}

@media (max-width: 860px) {
    .ficha__wrap {
        grid-template-columns: 1fr;
    }

    .planta-slide img {
        max-height: none;
    }
}

@media (max-width: 560px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tipo-tab {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .tipo-tab__head {
        padding-right: 0;
        padding-bottom: 1rem;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
}

/* ===== Lightbox ===== */
.has-lightbox img {
    cursor: zoom-in;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
}

.lightbox[hidden] {
    display: none;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 16, 26, 0.92);
    backdrop-filter: blur(6px);
}

.lightbox__stage {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: min(92vw, 1400px);
    max-height: 84vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__counter {
    position: absolute;
    z-index: 2;
    top: clamp(1rem, 3vw, 2rem);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    color: var(--white);
    background-color: rgba(13, 27, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.4rem 0.95rem;
    border-radius: 100px;
}

.lightbox__close {
    position: absolute;
    z-index: 2;
    top: clamp(0.8rem, 3vw, 1.8rem);
    right: clamp(0.8rem, 3vw, 1.8rem);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lightbox__close:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.lightbox__nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(13, 27, 42, 0.4);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lightbox__nav:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.lightbox__nav svg {
    width: 26px;
    height: 26px;
}

.lightbox__prev {
    left: clamp(0.6rem, 3vw, 2rem);
}

.lightbox__next {
    right: clamp(0.6rem, 3vw, 2rem);
}

.lightbox__next svg {
    transform: rotate(180deg);
}

@media (max-width: 560px) {
    .lightbox__nav {
        width: 44px;
        height: 44px;
        bottom: clamp(1rem, 5vw, 2rem);
        top: auto;
        transform: none;
    }

    .lightbox__prev {
        left: clamp(1rem, 18vw, 5rem);
    }

    .lightbox__next {
        right: clamp(1rem, 18vw, 5rem);
    }
}

/* ===== Hero desktop: altura máx 90vh + chips em uma linha ===== */
@media (min-width: 768px) {
    .hero {
        min-height: 90vh;
        min-height: 90svh;
    }

    .hero__inner {
        padding-block: clamp(5.5rem, 10vh, 7rem) clamp(2.5rem, 5vh, 3.5rem);
    }
}

@media (min-width: 1040px) {
    .hero__specs {
        flex-wrap: nowrap;
    }
}

/* ===== Tour virtual 360 ===== */
.tour {
    position: relative;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.tour__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.tour__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(8, 16, 26, 0.9) 0%,
        rgba(8, 16, 26, 0.72) 45%,
        rgba(8, 16, 26, 0.45) 100%
    );
}

.tour__inner {
    display: flex;
}

.tour__content {
    max-width: 560px;
}

.overline--light {
    color: var(--gold-soft);
}

.tour__text {
    margin-top: 1.3rem;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 46ch;
}

/* ===== Grafismo da seção "Um privilégio em Moema" ===== */
#privilegio {
    position: relative;
    overflow: hidden;
}

#privilegio > .container {
    position: relative;
    z-index: 1;
}

.privilegio__grafismo {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    height: 118%;
    width: auto;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 980px) {
    .privilegio__grafismo {
        right: -12%;
        height: 100%;
        opacity: 0.18;
    }
}
