:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f4f1ec;
    --color-bg-dark: #131210;
    --color-bg-deep: #1c1b18;
    --color-primary: #9a8261;
    --color-primary-dark: #7a6549;
    --color-primary-light: #c8b48f;
    --color-accent: #b89a6a;
    --color-text: #131210;
    --color-text-muted: #6b675e;
    --color-text-light: #ffffff;
    --color-text-light-muted: rgba(255, 255, 255, 0.72);
    --color-border: rgba(19, 18, 16, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.18);
    --color-error: #c0392b;
    --color-success: #27ae60;
    --font-display: 'hollins', 'Allura', 'Pinyon Script', 'Apple Chancery', cursive;
    --font-serif: 'felix-titling', 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1320px;
    --ease-smooth: cubic-bezier(0.65, 0.05, 0.36, 1);
    --ease-elegant: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.slider-track,
.lazer-hero-track {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

input, select, textarea {
    font-family: inherit;
}

.container-section,
.container-plants {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.body-no-scroll {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-elegant), visibility 0.8s var(--ease-elegant);
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-elegant) forwards;
    text-transform: uppercase;
}

.loader-logo-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto 12px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-elegant) forwards;
    filter: brightness(0) invert(1);
}

.loader-sub {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.32em;
    color: var(--color-primary-light);
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-elegant) 0.2s forwards;
}

.loader-bar {
    width: 220px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-bar span {
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: translateX(-100%);
    animation: loaderFill 1.8s var(--ease-elegant) forwards;
}

@keyframes loaderFill {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.image-placeholder {
    background: linear-gradient(135deg, #d4c4a8 0%, #b8a584 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(176, 138, 91, 0.35), rgba(26, 26, 24, 0.3));
    pointer-events: none;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.image-placeholder-mini::after {
    inset: 6px;
}

.placeholder-text {
    position: relative;
    z-index: 1;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.5;
    max-width: 280px;
    font-family: var(--font-sans);
}

.intro-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(19, 18, 16, 0.92) 0%, rgba(19, 18, 16, 0.78) 18%, rgba(19, 18, 16, 0.28) 32%, rgba(19, 18, 16, 0) 50%, rgba(19, 18, 16, 0.28) 68%, rgba(19, 18, 16, 0.78) 82%, rgba(19, 18, 16, 0.92) 100%),
        linear-gradient(180deg, rgba(19, 18, 16, 0.55) 0%, rgba(19, 18, 16, 0) 30%, rgba(19, 18, 16, 0) 65%, rgba(19, 18, 16, 0.9) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(154, 130, 97, 0.18) 0%, transparent 60%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 120px 40px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.logo-tipologia {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.logo-tipologia-art {
    max-width: 280px;
    filter: brightness(0) invert(1);
}

.hero-info-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--color-text-light);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: -4px;
    text-transform: uppercase;
}

.hero-region {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.hero-region strong {
    font-weight: 600;
    color: var(--color-primary-light);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: var(--color-text-light);
    margin-top: 8px;
    text-transform: uppercase;
}

.hero-headline em {
    font-family: var(--font-display);
    font-style: normal;
    color: var(--color-primary-light);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.1em;
    line-height: 1;
}

.hero-headline strong {
    font-weight: 400;
    color: var(--color-primary-light);
}

.hero-concept {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 8px;
}

.hero-concept strong {
    font-weight: 500;
    color: var(--color-text-light);
}

.hero-tipologias {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin: 18px 0 4px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    width: 100%;
    flex-wrap: wrap;
}

.tipologia-item {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.tipologia-item strong {
    font-weight: 600;
    color: var(--color-primary-light);
}

.tipologia-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

.hero-metragem {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 16px 0 4px;
    color: var(--color-text-light);
}

.metragem-side {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    padding: 0 6px;
    text-align: center;
}

.metragem-side-right {
    transform: rotate(180deg);
}

.metragem-num {
    font-family: var(--font-sans);
    font-size: clamp(72px, 9vw, 120px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--color-text-light);
}

.hero-price {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--color-text-light);
    margin-top: 6px;
    text-transform: uppercase;
    line-height: 15px;
}

.hero-price strong {
    font-weight: 600;
    color: var(--color-primary-light);
}

.hero-distance {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 14px;
    margin-top: 6px;
    width: 100%;
    text-transform: uppercase;
}

.hero-info-col,
.hero-form-col {
    position: relative;
    z-index: 2;
}

.hero-form-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-form-card {
    background: var(--color-bg);
    border-radius: 2px;
    padding: 36px 32px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    position: relative;
    border-top: 3px solid var(--color-primary);
}

.hero-form-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.58);
    margin-bottom: 24px;
    letter-spacing: 0;
}

.hero-form-title strong {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--color-text);
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-input-wrap {
    position: relative;
    padding-top: 18px;
    margin-bottom: 4px;
}

.hero-input-label {
    position: absolute;
    top: 26px;
    left: 0;
    font-size: 14px;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: all 0.25s var(--ease-elegant);
}

.hero-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 24, 0.15);
    background: transparent;
    padding: 8px 0 10px;
    font-size: 15px;
    color: var(--color-text);
    outline: none;
    font-family: inherit;
    transition: border-color 0.25s var(--ease-elegant);
    resize: none;
}

.hero-input:focus {
    border-bottom-color: var(--color-primary);
}

.hero-input-wrap.is-focused .hero-input-label,
.hero-input-wrap.is-filled .hero-input-label {
    top: 0;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--color-primary);
}

.hero-textarea {
    min-height: 60px;
    line-height: 1.4;
}

.hero-submit {
    margin-top: 18px;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    border: none;
    padding: 16px 24px;
    font-size: 11px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
    font-family: var(--font-sans);
    border-radius: 2px;
    width: 100%;
}

.hero-submit:hover {
    background: var(--color-primary);
}

.hero-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero-form-card .form-success {
    padding: 24px 0;
}

.hero-legend {
    position: absolute;
    bottom: 16px;
    right: 24px;
    z-index: 3;
}

.hero-legend p {
    color: var(--color-text-light);
    font-size: 10px;
    opacity: 0.55;
    letter-spacing: 0.05em;
}

.localization {
    padding: 140px 0 100px;
    background: var(--color-bg);
}

.heading-section {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-style: normal;
}

.heading-section strong {
    font-weight: 400;
}

.text-highlight {
    display: inline-block;
    margin-top: 6px;
    font-family: var(--font-display);
    color: var(--color-primary);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(40px, 4.5vw, 50px);
    line-height: 68px;
    text-transform: none;
    letter-spacing: 0;
}

.heading-light .text-highlight {
    color: var(--color-primary-light);
}

.cta-whatsapp-title .text-highlight {
    font-size: inherit;
    line-height: inherit;
    margin-top: 0;
    display: inline;
    font-family: var(--font-display);
    color: var(--color-primary-light);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    margin: 0 auto 18px;
    width: 100%;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.45);
    display: inline-block;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.6);
}

.eyebrow-light::before {
    background: rgba(255, 255, 255, 0.6);
}

.lazer-section .section-eyebrow,
.project-investment .section-eyebrow {
    color: var(--color-primary-light);
}

.lazer-section .section-eyebrow::before,
.project-investment .section-eyebrow::before {
    background: var(--color-primary-light);
}

.section-lead {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.58);
    letter-spacing: 0;
}

.lead-light {
    color: rgba(255, 255, 255, 0.72);
}

.lazer-section .section-lead,
.project-investment .section-lead {
    color: var(--color-text-light-muted);
}

.heading-light {
    color: var(--color-text-light);
}

.text-highlight {
    color: var(--color-primary);
    font-style: normal;
}

.legenda-section {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 24px;
    letter-spacing: 0.05em;
}

.slider-localizacao,
.lazer-grid-slider,
.lazer-hero-slider {
    position: relative;
    margin: 0 -32px;
    padding: 0 32px;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 24px;
}

.slider-controls-overlay {
    position: absolute;
    top: 50%;
    left: 32px;
    right: 32px;
    transform: translateY(-50%);
    z-index: 10;
    justify-content: space-between;
    pointer-events: none;
    margin: 0;
}

.slider-controls-overlay .slider-arrow {
    pointer-events: auto;
}

.slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-text);
    border: 1px solid var(--color-text);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(26, 26, 24, 0.18);
    transition: all 0.3s var(--ease-elegant);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.4;
}

.slider-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(176, 138, 91, 0.32);
}

.slider-arrow:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.slider-arrow:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(26, 26, 24, 0.2);
}

.slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.slider-arrow-light {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.slider-arrow-light:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 10px 24px rgba(176, 138, 91, 0.4);
}

.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 16px;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.card-localizacao {
    flex: 0 0 calc((100% - 60px) / 4);
    scroll-snap-align: start;
    background: var(--color-bg);
    transition: transform 0.5s var(--ease-elegant);
    cursor: pointer;
}

.card-localizacao:hover {
    transform: translateY(-8px);
}

.card-image {
    aspect-ratio: 4/5;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-elegant);
}

.card-localizacao:hover .card-image img {
    transform: scale(1.05);
}

.card-title {
    padding: 16px 0 6px;
}

.card-title p {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-distance {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(0, 0, 0, 0.58);
    line-height: 18px;
}

.card-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 12px;
    background: var(--color-bg-alt);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.03em;
}

.card-time .time-icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}

.slider-nav span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
}

.slider-nav span.is-active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

.lazer-section .slider-nav span {
    background: rgba(255, 255, 255, 0.25);
}

.lazer-section .slider-nav span.is-active {
    background: var(--color-primary-light);
}

.project-aerea {
    position: relative;
    width: 100%;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    overflow: hidden;
    min-height: 520px;
}

.aerea-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 0;
}

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

.project-aerea::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(19, 18, 16, 0.92) 0%, rgba(19, 18, 16, 0.7) 45%, rgba(19, 18, 16, 0.45) 100%);
    z-index: 1;
}

.aerea-overlay {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    width: 100%;
}

.aerea-overlay .heading-section,
.aerea-overlay .section-lead {
    text-align: left;
    margin-left: 0;
}

.aerea-overlay .section-eyebrow {
    justify-content: flex-start;
    width: auto;
    text-align: left;
}

.aerea-overlay .container-section {
    max-width: 720px;
    margin: 0 auto 0 max(32px, calc((100vw - var(--max-width)) / 2 + 32px));
}

.aerea-overlay .cta-section {
    text-align: left;
    margin-top: 36px;
}

.produto-destaques {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 28px 0;
    margin: 32px 0 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.destaque-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.destaque-item strong {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-primary-light);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.destaque-item span {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.aerea-mobile-info {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: var(--color-bg-alt);
}

.aerea-mobile-info p {
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aerea-mobile-info svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.lazer-section {
    padding: 100px 0;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.lazer-section .heading-section {
    color: var(--color-text-light);
}

.lazer-section .text-highlight {
    color: var(--color-primary-light);
}

.lazer-hero-slider {
    position: relative;
}

.lazer-hero-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-radius: 4px;
}

.lazer-hero-track::-webkit-scrollbar {
    display: none;
}

.lazer-hero-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    aspect-ratio: 21/9;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.lazer-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lazer-hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 40px 28px;
    color: var(--color-text-light);
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(19, 18, 16, 0) 0%, rgba(19, 18, 16, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.conceito-section {
    padding: 110px 0;
    background: var(--color-bg-alt);
    text-align: center;
}

.conceito-section .heading-section,
.conceito-section .section-lead {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.rooftop-section {
    padding: 100px 0;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rooftop-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(154, 130, 97, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.assinaturas-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.assinaturas-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: flex-start;
}

.assinaturas-titulo {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 50px);
    font-weight: 400;
    line-height: 68px;
    color: var(--color-text);
    letter-spacing: 0;
    font-style: normal;
}

.assinaturas-titulo em {
    font-style: normal;
    color: var(--color-primary);
}

.assinaturas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.assinatura-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
}

.assinatura-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
}

.assinatura-nome {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.artistas-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.artistas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.artista-card {
    background: var(--color-bg);
    padding: 36px 30px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border-top: 3px solid var(--color-primary);
}

.artista-card-foto {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
}

.artista-card-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artista-card-nome {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.2vw, 28px);
    font-weight: 400;
    line-height: 34px;
    color: var(--color-text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.artista-card-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.58);
}

.artista-card .section-eyebrow {
    justify-content: flex-start;
    text-align: left;
    width: auto;
    margin: 0;
}

.lazer-grid-track {
    display: flex;
    gap: 20px;
}

.card-lazer {
    flex: 0 0 calc((100% - 60px) / 4);
    scroll-snap-align: start;
    transition: transform 0.5s var(--ease-elegant);
}

.card-lazer:hover {
    transform: translateY(-6px);
}

.card-lazer-image {
    aspect-ratio: 3/4;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.card-lazer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-elegant);
}

.card-lazer:hover .card-lazer-image img {
    transform: scale(1.05);
}

.legenda-card {
    margin-top: 14px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-section-tight {
    margin-top: 32px;
}

.cta-button-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-primary);
    gap: 10px;
}

.cta-button-outline svg {
    width: 18px;
    height: 18px;
}

.cta-button-outline:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.lazer-section .cta-button-outline {
    color: var(--color-text-light);
    border-color: var(--color-primary-light);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    background: var(--color-primary);
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 15px;
    text-transform: uppercase;
    transition: background-color 0.35s var(--ease-elegant), border-color 0.35s var(--ease-elegant), color 0.35s var(--ease-elegant), transform 0.35s var(--ease-elegant);
    position: relative;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    text-decoration: none;
    border-radius: 2px;
}

.cta-button:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.cta-button-light {
    background: transparent;
    border: 1px solid var(--color-primary-light);
    color: var(--color-text-light);
}

.cta-button-light:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-text);
}

.plants {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.plantas-tipologias-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.planta-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
    gap: 2px;
}

.planta-tab-m2 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-text-muted);
    line-height: 1.2;
    transition: color 0.3s var(--ease-elegant);
}

.planta-tab-tipo {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 1.2;
    transition: color 0.3s var(--ease-elegant);
}

.planta-tab.is-active {
    background: var(--color-text);
}

.planta-tab.is-active .planta-tab-m2,
.planta-tab.is-active .planta-tab-tipo {
    color: var(--color-text-light);
}

.planta-tab:hover:not(.is-active) .planta-tab-m2,
.planta-tab:hover:not(.is-active) .planta-tab-tipo {
    color: var(--color-text);
}

.plantas-viewer {
    position: relative;
    min-height: 480px;
}

.planta-panel {
    display: none;
    grid-template-columns: 58% 1fr;
    gap: 0;
    align-items: center;
}

.planta-panel.is-active {
    display: grid;
    animation: plantaFadeIn 0.45s var(--ease-elegant) forwards;
}

@keyframes plantaFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.planta-panel-img {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.planta-panel-img img {
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
    display: block;
}

.planta-panel-info {
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.planta-panel-metragem {
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.planta-num {
    font-family: var(--font-serif);
    font-size: 110px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.planta-unit {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: -0.01em;
}

.planta-panel-nome {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.planta-panel-variante {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.planta-panel-legal {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-top: 24px;
    text-align: justify;
    opacity: 0.75;
}

.implantacoes {
    padding: 100px 0;
    background: var(--color-bg);
}

.implantacoes-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0;
}

.impl-tab {
    padding: 16px 24px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s var(--ease-elegant);
    cursor: pointer;
}

.impl-tab:hover {
    color: var(--color-text);
}

.impl-tab.is-active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.impl-content {
    display: none;
    opacity: 0;
    animation: fadeInImpl 0.5s var(--ease-elegant) forwards;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.impl-content.is-active {
    display: grid;
    opacity: 1;
}

@keyframes fadeInImpl {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.impl-image {
    width: 100%;
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.impl-image img {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
    display: block;
}

.impl-legend {
    padding: 24px;
}

.impl-legend h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.impl-legend p {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.58);
    font-weight: 400;
}

.project-investment {
    padding: 100px 0;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.cta-container {
    display: grid;
    grid-template-columns: 1.5fr auto;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.cta-container .heading-section {
    text-align: left;
    margin-bottom: 0;
}

.project-investment .text-highlight {
    color: var(--color-primary-light);
}

.list-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.list-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: all 0.3s var(--ease-elegant);
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--color-primary);
}

.box-icon {
    width: 48px;
    height: 48px;
    background: rgba(176, 138, 91, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.box-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary-light);
}

.list-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-light);
}

.legenda-investment {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-light-muted);
    margin-top: 32px;
    letter-spacing: 0.05em;
}

.section-mapa {
    background: var(--color-bg);
    margin-top: 35px;
}

.mapa-iframe-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    line-height: 0;
}

.mapa-iframe-wrapper iframe {
    display: block;
    filter: grayscale(0.3) contrast(1.05);
    width: 100%;
}

.mapa-info {
    background: var(--color-bg-alt);
    padding: 60px 0;
}

.mapa-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.mapa-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    line-height: 34px;
    text-transform: uppercase;
}

.mapa-subtitle {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.58);
    max-width: 480px;
}

.mapa-rotas {
    display: flex;
    gap: 16px;
}

.rota-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all 0.3s var(--ease-elegant);
    min-width: 160px;
    text-align: center;
}

.rota-link:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.rota-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

.rota-icon svg {
    width: 24px;
    height: 24px;
}

.rota-link p {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.22em;
    color: var(--color-text);
    text-transform: uppercase;
}

.form-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.form-container {
    max-width: 920px;
    margin: 0 auto;
    background: var(--color-bg);
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    position: relative;
}

.form-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.form-row-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.select-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--color-text);
    outline: none;
    padding: 4px 32px 4px 0;
    cursor: pointer;
    font-family: inherit;
}

.select-field option {
    color: var(--color-text);
    background: var(--color-bg);
}

.select-field:invalid {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.div-block-input {
    position: relative;
}

.select-chevron {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
    pointer-events: none;
}

.div-block-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-bg-alt);
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-elegant);
    position: relative;
}

.div-block-input:focus-within {
    border-color: var(--color-primary);
    background: var(--color-bg);
}

.div-block-input.has-error {
    border-color: var(--color-error);
}

.div-block-icon {
    flex-shrink: 0;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
}

.div-block-icon svg {
    width: 20px;
    height: 20px;
}

.text-field {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--color-text);
    outline: none;
    padding: 4px 0;
}

.text-field::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.text-area-container {
    padding: 16px;
    background: var(--color-bg-alt);
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-elegant);
}

.text-area-container:focus-within {
    border-color: var(--color-primary);
    background: var(--color-bg);
}

.text-area-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 15px;
}

.text-area {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--color-text);
    outline: none;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    line-height: 1.5;
}

.text-area::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.submit-form {
    background: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    padding: 17px 32px;
    font-size: 11px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
    margin-top: 8px;
    font-family: var(--font-sans);
    border-radius: 2px;
}

.submit-form:hover {
    background: var(--color-primary-dark);
}

.submit-form:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 40px 24px;
}

.form-success.is-visible {
    display: flex;
}

.form-success-icon {
    width: 80px;
    height: 80px;
    color: var(--color-success);
    margin-bottom: 8px;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-transform: uppercase;
}

.form-success p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.58);
}

.form-success p {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 360px;
    line-height: 1.6;
}

.form-success-inline {
    padding: 60px 32px;
}

.footer-legal {
    padding: 60px 0;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.legal-text {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.55);
    text-align: justify;
    margin-bottom: 20px;
}

.legal-text:last-of-type {
    margin-bottom: 40px;
}

.legal-text strong {
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    text-transform: uppercase;
}

.footer-incorporacao {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border-light);
    text-align: center;
}

.footer-incorp-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.footer-incorp-names {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.6;
    letter-spacing: 0.06em;
    max-width: 720px;
    text-transform: uppercase;
}

.footer-logo-incorp {
    width: auto;
    max-width: 160px;
    max-height: 48px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-realizacao-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.footer-realizacao-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.footer-realizacao-item {
    height: 100px;
}

.footer-realizacao-item img {
    max-width: 180px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    display: block;
}

.footer-realizacao-item img[alt="RSF 18 anos"] {
    height: 56px;
}

.footer-realizacao-item img[alt="Upgrade Imóveis"] {
    height: 42px;
}

.footer-realizacao-item p {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    font-weight: 500;
    margin: 0;
    min-height: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
}

.footer-copyright {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-light);
    text-align: center;
}

.footer-copyright p {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-copyright a {
    color: var(--color-primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.footer-copyright a:hover {
    opacity: 0.75;
}

.cta-whatsapp-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-deep) 100%);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.cta-whatsapp-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(154, 130, 97, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.cta-whatsapp-wrap {
    display: grid;
    grid-template-columns: 1.5fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-whatsapp-text .section-eyebrow {
    color: var(--color-primary);
    text-align: left;
    justify-content: flex-start;
    width: auto;
    margin-bottom: 12px;
}

.cta-whatsapp-text .section-eyebrow::before {
    background: var(--color-primary);
}

.cta-whatsapp-title {
    text-align: left;
    margin-bottom: 16px;
}

.cta-whatsapp-lead {
    text-align: left;
    margin: 0;
    color: var(--color-text-light-muted);
    max-width: 520px;
}

.cta-whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    gap: 12px;
    flex-shrink: 0;
}

.cta-whatsapp-btn svg {
    width: 22px;
    height: 22px;
}

.cta-whatsapp-btn:hover {
    background: #1da851;
    border-color: #1da851;
}

.conversion-bar {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.conversion-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.conversion-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(12px);
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-elegant);
    border-radius: 2px;
}

.conversion-bar-item:hover .conversion-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.conversion-button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.3s var(--ease-elegant);
    cursor: pointer;
}

.conversion-button svg {
    width: 26px;
    height: 26px;
}

.conversion-button:hover {
    transform: scale(1.08) translateX(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.conversion-whatsapp {
    background: #25D366;
}

.conversion-email {
    background: var(--color-bg-dark);
}

.conversion-chat {
    background: var(--color-primary);
}

.modal-conversao {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-elegant), visibility 0.4s var(--ease-elegant);
}

.modal-conversao.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 24, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.container-modal-conversao {
    position: relative;
    background: var(--color-bg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 40px;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(40px) scale(0.96);
    transition: transform 0.5s var(--ease-elegant);
}

.modal-conversao.is-open .container-modal-conversao {
    transform: translateY(0) scale(1);
}

.fechar-modal-conversao {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.3s var(--ease-elegant);
    border-radius: 50%;
}

.fechar-modal-conversao:hover {
    background: var(--color-bg-alt);
    transform: rotate(90deg);
}

.fechar-modal-conversao svg {
    width: 18px;
    height: 18px;
}

.paragraph-modal {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 28px;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.paragraph-modal strong {
    font-weight: 400;
    color: var(--color-primary);
}

@media (min-width: 1921px) {
    :root {
        --max-width: 1600px;
    }

    .hero-grid {
        max-width: 1760px;
        padding: 160px 64px 140px;
        gap: 120px;
    }

    .hero-form-card {
        max-width: 460px;
        padding: 48px 40px;
    }

    .localization,
    .lazer-section,
    .plants,
    .project-investment,
    .form-section,
    .implantacoes {
        padding: 140px 0;
    }

    .container-section,
    .container-plants {
        padding: 0 48px;
    }

    .mapa-iframe-wrapper iframe {
        height: 720px;
    }

    .impl-image img {
        max-height: 760px;
    }
}

@media (min-width: 2560px) {
    :root {
        --max-width: 1880px;
    }

    .hero-grid {
        max-width: 2000px;
    }
}

@media (max-width: 1200px) {
    .hero-grid {
        gap: 48px;
        padding: 110px 32px 100px;
    }
}

@media (max-width: 1024px) {
    .assinaturas-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .assinaturas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .artistas-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
        gap: 28px;
    }

    .produto-destaques {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .aerea-overlay {
        padding: 80px 0;
    }

    .aerea-overlay .container-section {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 32px;
    }

    .project-aerea::after {
        background: linear-gradient(180deg, rgba(19, 18, 16, 0.55) 0%, rgba(19, 18, 16, 0.85) 100%);
    }

    .card-localizacao,
    .card-lazer {
        flex: 0 0 calc((100% - 40px) / 3);
    }

    .planta-num {
        font-size: 88px;
    }

    .planta-panel-nome {
        font-size: 42px;
    }

    .form-row-4 {
        grid-template-columns: 1fr 1fr;
    }

    .cta-whatsapp-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .cta-whatsapp-text .section-eyebrow,
    .cta-whatsapp-title,
    .cta-whatsapp-lead {
        text-align: center;
    }

    .cta-whatsapp-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .planta-panel {
        grid-template-columns: 55% 1fr;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-container .heading-section {
        text-align: center;
    }

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

    .mapa-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .mapa-rotas {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 100px 32px 80px;
    }

    .hero-form-card {
        max-width: 100%;
        padding: 32px 28px;
    }

    .hero-info-col {
        gap: 22px;
    }

    .metragem-num {
        font-size: clamp(64px, 10vw, 96px);
    }

    .heading-section {
        margin-bottom: 48px;
    }

    .localization,
    .lazer-section,
    .plants,
    .project-investment,
    .form-section,
    .implantacoes {
        padding: 80px 0;
    }

    .impl-content.is-active {
        grid-template-columns: 1.6fr 1fr;
        gap: 32px;
    }

    .impl-image img {
        max-height: 520px;
    }

    .mapa-iframe-wrapper iframe {
        height: 500px;
    }

    .form-container {
        padding: 40px 32px;
    }

    .lazer-hero-slide {
        aspect-ratio: 16/9;
        min-height: 360px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 88px 28px 64px;
        max-width: 640px;
    }

    .hero-info-col {
        order: 1;
        align-items: center;
        text-align: center;
        gap: 18px;
    }

    .logo-tipologia {
        max-width: 200px;
        margin: 0 auto;
        object-position: center;
    }

    .hero-info-text {
        align-items: center;
        text-align: center;
    }

    .hero-distance {
        width: auto;
        text-align: center;
    }

    .hero-form-col {
        order: 2;
        justify-content: center;
        width: 100%;
    }

    .hero-form-card {
        max-width: 520px;
        padding: 32px 28px;
        margin: 0 auto;
    }

    .hero-legend {
        position: static;
        text-align: center;
        margin-top: 12px;
        padding: 0 20px;
    }

    .hero-bg-gradient {
        background:
            linear-gradient(180deg, rgba(24, 30, 37, 0.88) 0%, rgba(24, 30, 37, 0.55) 35%, rgba(24, 30, 37, 0.65) 65%, rgba(24, 30, 37, 0.95) 100%),
            linear-gradient(90deg, rgba(24, 30, 37, 0.55) 0%, rgba(24, 30, 37, 0.25) 50%, rgba(24, 30, 37, 0.55) 100%);
    }

    .card-localizacao,
    .card-lazer {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 768px) {
    .container-section,
    .container-plants {
        padding: 0 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 72px 20px 48px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(34px, 9vw, 46px);
        line-height: 1.05;
    }

    .aerea-overlay {
        padding: 60px 0;
    }

    .aerea-overlay .container-section {
        padding: 0 20px;
    }

    .aerea-overlay .heading-section,
    .aerea-overlay .section-lead,
    .aerea-overlay .section-eyebrow,
    .aerea-overlay .cta-section {
        text-align: center;
    }

    .aerea-overlay .section-eyebrow {
        justify-content: center;
        width: 100%;
    }

    .produto-destaques {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 22px 0;
        margin: 24px 0 4px;
    }

    .destaque-item {
        align-items: center;
        text-align: center;
    }

    .conceito-section,
    .rooftop-section,
    .assinaturas-section,
    .artistas-section {
        padding: 60px 0;
    }

    .assinaturas-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .assinatura-nome {
        font-size: 19px;
    }

    .lazer-hero-caption {
        font-size: 16px;
        padding: 18px 18px 14px;
    }

    .hero-tipologias {
        justify-content: center;
        gap: 14px;
        padding: 14px 0;
        margin: 12px 0 4px;
    }

    .tipologia-item {
        font-size: 13px;
    }

    .impl-legend h4 {
        font-size: 22px;
    }

    .intro-header {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-info-col {
        gap: 14px;
    }

    .hero-info-text {
        gap: 10px;
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.22em;
        margin-bottom: -6px;
    }

    .hero-region {
        font-size: 13px;
        letter-spacing: 0.16em;
    }

    .hero-headline {
        font-size: clamp(20px, 6vw, 26px);
        line-height: 1.2;
        margin-top: 8px;
    }

    .hero-concept {
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 1.5;
    }

    .hero-metragem {
        margin: 12px 0 4px;
    }

    .metragem-num {
        font-size: clamp(72px, 22vw, 96px);
    }

    .metragem-side {
        font-size: 10px;
        letter-spacing: 0.3em;
    }

    .hero-price {
        font-size: 17px;
        margin-top: 8px;
    }

    .hero-distance {
        font-size: 11px;
        letter-spacing: 0.18em;
        padding-top: 14px;
        margin-top: 6px;
    }

    .logo-tipologia {
        max-width: 180px;
    }

    .hero-form-card {
        max-width: 100%;
        padding: 28px 22px;
        border-radius: 14px;
    }

    .hero-form-title {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-input {
        font-size: 16px;
        padding: 10px 0 11px;
    }

    .hero-input-label {
        font-size: 14px;
        top: 28px;
    }

    .hero-submit {
        padding: 16px 22px;
        font-size: 12px;
        min-height: 52px;
    }

    .hero-legend {
        position: static;
        text-align: center;
        margin-top: 14px;
        padding: 0 20px;
    }

    .hero-legend p {
        font-size: 10px;
    }

    .hero-bg-gradient {
        background:
            linear-gradient(180deg,
                rgba(24, 30, 37, 0.92) 0%,
                rgba(24, 30, 37, 0.88) 32%,
                rgba(24, 30, 37, 0.10) 44%,
                rgba(24, 30, 37, 0.10) 62%,
                rgba(24, 30, 37, 0.88) 74%,
                rgba(24, 30, 37, 0.98) 100%);
    }

    .localization,
    .lazer-section,
    .plants,
    .project-investment,
    .form-section {
        padding: 60px 0;
    }

    .heading-section {
        font-size: 20px;
        margin-bottom: 32px;
        line-height: 26px;
        letter-spacing: 0.04em;
    }

    .text-highlight {
        font-size: clamp(34px, 9vw, 42px);
        line-height: 1.2;
    }

    .section-lead {
        font-size: 14px;
        line-height: 1.65;
        margin: -20px auto 36px;
        padding: 0 4px;
    }

    .section-eyebrow {
        font-size: 11px;
        letter-spacing: 0.26em;
        margin-bottom: 12px;
    }

    .slider-localizacao,
    .lazer-grid-slider,
    .lazer-hero-slider {
        margin: 0 -20px;
        padding: 0 20px;
    }

    .slider-controls {
        justify-content: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .lazer-hero-slider .slider-controls-overlay {
        display: none;
    }

    .lazer-grid-slider .slider-controls {
        display: none;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .planta-tab {
        padding: 8px 14px;
    }

    .planta-tab-m2 {
        font-size: 10px;
    }

    .planta-tab-tipo {
        font-size: 8px;
    }

    .slider-track {
        gap: 14px;
        padding-bottom: 12px;
        scroll-padding: 0 20px;
    }

    .card-localizacao,
    .card-lazer {
        flex: 0 0 calc((100% - 14px) / 2);
    }

    .card-image {
        aspect-ratio: 3/4;
    }

    .card-title {
        padding: 12px 0 4px;
    }

    .card-title p {
        font-size: 13px;
        letter-spacing: 0.04em;
    }

    .card-distance {
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .card-time {
        font-size: 11px;
        padding: 6px 10px;
        gap: 6px;
        margin-top: 10px;
    }

    .card-time .time-icon {
        width: 14px;
        height: 14px;
    }

    .legenda-card {
        font-size: 12px;
        margin-top: 10px;
    }

    .lazer-grid-track {
        gap: 14px;
    }

    .lazer-hero-slider {
        margin-bottom: 96px;
    }

    .lazer-hero-slider .slider-nav {
        margin-top: 20px;
    }

    .lazer-hero-slide {
        aspect-ratio: 4/3;
        min-height: 240px;
    }

    .lazer-hero-slide img {
        object-position: center;
    }

    .slider-nav {
        margin-top: 20px;
    }

    .slider-nav span {
        width: 7px;
        height: 7px;
    }

    .slider-nav span.is-active {
        width: 22px;
    }

    .aerea-image {
        aspect-ratio: 4/3;
        min-height: 240px;
    }

    .aerea-image img {
        height: 100%;
        object-fit: cover;
    }

    .aerea-mobile-info {
        display: flex;
    }

    .plantas-tipologias-nav {
        gap: 6px;
        margin-bottom: 32px;
    }

    .planta-panel.is-active {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .planta-panel-img {
        justify-content: center;
    }

    .planta-panel-img img {
        max-width: 100%;
    }

    .planta-panel-info {
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    .planta-num {
        font-size: 72px;
    }

    .planta-unit {
        font-size: 28px;
    }

    .planta-panel-nome {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .plantas-viewer {
        min-height: auto;
    }

    .form-row-4 {
        grid-template-columns: 1fr;
    }

    .cta-section {
        margin-top: 40px;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 12px;
        letter-spacing: 0.1em;
        width: 100%;
        max-width: 360px;
        min-height: 52px;
    }

    .cta-whatsapp-section {
        padding: 56px 0;
    }

    .cta-whatsapp-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .cta-whatsapp-text .section-eyebrow,
    .cta-whatsapp-title,
    .cta-whatsapp-lead {
        text-align: center;
    }

    .cta-whatsapp-lead {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-whatsapp-btn {
        width: 100%;
        max-width: 360px;
        justify-self: center;
    }

    .cta-whatsapp-section::before {
        width: 280px;
        height: 280px;
        top: -80px;
        right: -80px;
    }

    .implantacoes {
        padding: 60px 0;
    }

    .implantacoes-tabs {
        flex-direction: column;
        align-items: stretch;
        border-bottom: none;
        gap: 4px;
        margin-bottom: 28px;
    }

    .impl-tab {
        text-align: left;
        padding: 14px 16px;
        background: var(--color-bg-alt);
        border-bottom: none;
        border-left: 3px solid transparent;
        margin-bottom: 0;
        font-size: 11px;
        min-height: 48px;
    }

    .impl-tab.is-active {
        border-left-color: var(--color-primary);
        background: var(--color-bg);
    }

    .impl-content.is-active {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impl-image {
        padding: 14px;
    }

    .impl-image img {
        max-height: 360px;
    }

    .impl-legend {
        padding: 0;
        text-align: center;
    }

    .impl-legend h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .impl-legend p {
        font-size: 14px;
        line-height: 1.6;
    }

    .list-block {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .list-item {
        padding: 18px;
        gap: 14px;
    }

    .box-icon {
        width: 42px;
        height: 42px;
    }

    .box-icon svg {
        width: 20px;
        height: 20px;
    }

    .list-item p {
        font-size: 13px;
    }

    .section-mapa .heading-section {
        margin-bottom: 24px;
    }

    .mapa-iframe-wrapper iframe {
        height: 360px;
    }

    .mapa-info {
        padding: 40px 0;
    }

    .mapa-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .mapa-title {
        font-size: clamp(18px, 5.2vw, 22px);
    }

    .mapa-subtitle {
        font-size: 14px;
        padding: 0 4px;
    }

    .mapa-rotas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .rota-link {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        min-width: 0;
        width: 100%;
        padding: 16px 18px;
        min-height: 64px;
    }

    .rota-icon {
        width: 40px;
        height: 40px;
    }

    .rota-icon svg {
        width: 20px;
        height: 20px;
    }

    .rota-link p {
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .form-container {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .div-block-input {
        padding: 14px 14px;
    }

    .text-field,
    .select-field {
        font-size: 16px;
    }

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

    .submit-form {
        padding: 16px 24px;
        font-size: 12px;
        min-height: 52px;
    }

    .conversion-bar {
        right: auto;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
        border-top: 1px solid var(--color-border);
    }

    .conversion-bar-item {
        flex-direction: column-reverse;
        gap: 4px;
        flex: 1;
        align-items: center;
    }

    .conversion-button {
        width: 44px;
        height: 44px;
        box-shadow: none;
    }

    .conversion-button svg {
        width: 20px;
        height: 20px;
    }

    .conversion-button:hover {
        transform: scale(1.05);
    }

    .conversion-label {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
        color: var(--color-text-muted);
        padding: 0;
        font-size: 9px;
        letter-spacing: 0.06em;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        max-width: 80px;
    }

    .cta-whatsapp-section,
    .footer-legal {
        padding-bottom: calc(40px + 80px + env(safe-area-inset-bottom));
    }

    .footer-legal {
        padding-top: 40px;
        padding-bottom: calc(40px + 80px + env(safe-area-inset-bottom));
    }

    .container-modal-conversao {
        padding: 36px 22px 28px;
        max-height: 92vh;
        border-radius: 14px;
    }

    .fechar-modal-conversao {
        width: 44px;
        height: 44px;
    }

    .paragraph-modal {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .modal-conversao {
        padding: 16px;
    }

    .legal-text {
        text-align: left;
        font-size: 11px;
    }

    .footer-incorporacao {
        flex-direction: column;
        gap: 12px;
    }

    .footer-realizacao-grid {
        gap: 28px;
    }

    .footer-realizacao-item {
        height: 80px;
    }

    .footer-realizacao-item img {
        max-width: 140px;
    }

    .footer-realizacao-item img[alt="RSF 18 anos"] {
        height: 44px;
    }

    .footer-realizacao-item img[alt="Upgrade Imóveis"] {
        height: 32px;
    }

    .footer-copyright {
        margin-top: 24px;
        padding-top: 18px;
    }

    .footer-copyright p {
        font-size: 10px;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 480px) {
    .container-section,
    .container-plants {
        padding: 0 16px;
    }

    .hero-grid {
        padding: 64px 16px 40px;
        gap: 28px;
    }

    .hero-headline {
        font-size: clamp(30px, 9.5vw, 38px);
    }

    .hero-form-card {
        padding: 24px 18px;
    }

    .slider-localizacao,
    .lazer-grid-slider,
    .lazer-hero-slider {
        margin: 0 -16px;
        padding: 0 16px 30px;
    }

    .card-localizacao,
    .card-lazer {
        flex: 0 0 78%;
    }

    .card-image {
        aspect-ratio: 4/5;
    }

    .lazer-hero-slide {
        aspect-ratio: 4/3;
        min-height: 220px;
    }

    .heading-section {
        font-size: 18px;
        line-height: 24px;
    }

    .text-highlight {
        font-size: clamp(30px, 9.5vw, 36px);
    }

    .section-lead {
        font-size: 13.5px;
    }

    .planta-num {
        font-size: 60px;
    }

    .planta-unit {
        font-size: 22px;
    }

    .planta-panel-nome {
        font-size: 30px;
    }

    .impl-tab {
        font-size: 10.5px;
        letter-spacing: 0.08em;
    }

    .impl-image img {
        max-height: 300px;
    }

    .impl-legend h4 {
        font-size: 18px;
    }

    .form-container {
        padding: 22px 16px;
    }

    .container-modal-conversao {
        padding: 32px 18px 24px;
    }

    .paragraph-modal {
        font-size: 15px;
        letter-spacing: 0.04em;
    }

    .conversion-label {
        font-size: 8.5px;
        max-width: 70px;
    }

    .cta-button,
    .submit-form,
    .hero-submit,
    .cta-whatsapp-btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        font-size: 12px;
    }

    .rota-link {
        padding: 14px 16px;
    }

    .legal-text {
        font-size: 10.5px;
    }
}

@media (max-width: 360px) {
    .hero-headline {
        font-size: 18px;
    }

    .metragem-num {
        font-size: 64px;
    }

    .hero-price {
        font-size: 15px;
    }

    .heading-section {
        font-size: 17px;
        line-height: 22px;
    }

    .text-highlight {
        font-size: 28px;
        line-height: 1.15;
    }

    .planta-tab-m2 {
        font-size: 9px;
    }

    .impl-legend h4 {
        font-size: 16px;
    }
}

@media (max-width: 900px) and (orientation: landscape) and (hover: none) {
    .intro-header {
        min-height: auto;
    }

    .hero-grid {
        padding: 60px 24px 40px;
    }

    .lazer-hero-slide,
    .aerea-image {
        aspect-ratio: 21/9;
        min-height: 220px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .card-localizacao:hover,
    .card-lazer:hover,
    .rota-link:hover {
        transform: none;
    }

    .card-localizacao:hover .card-image img,
    .card-lazer:hover .card-lazer-image img {
        transform: none;
    }

    .slider-arrow:hover {
        transform: none;
    }

    .cta-button:hover,
    .submit-form:hover,
    .hero-submit:hover,
    .conversion-button:hover {
        transform: none;
    }

    .impl-tab {
        min-height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
