:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f5f1ea;
    --color-bg-dark: #1a1a18;
    --color-primary: #b08a5b;
    --color-primary-dark: #8c6c44;
    --color-primary-light: #d4b896;
    --color-text: #2a2a26;
    --color-text-muted: #6b675e;
    --color-text-light: #ffffff;
    --color-text-light-muted: rgba(255, 255, 255, 0.75);
    --color-border: rgba(26, 26, 24, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.2);
    --color-error: #c0392b;
    --color-success: #27ae60;
    --font-serif: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans: 'Lato', -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,
.plantas-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-sans);
    font-size: 56px;
    font-weight: 900;
    color: var(--color-text-light);
    letter-spacing: 0.25em;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-elegant) forwards;
    text-transform: uppercase;
}

.loader-sub {
    font-size: 11px;
    letter-spacing: 0.4em;
    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: #181E25;
    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, #181E25 0%, rgba(24, 30, 37, 0.85) 18%, rgba(24, 30, 37, 0.35) 32%, rgba(24, 30, 37, 0) 50%, rgba(24, 30, 37, 0.35) 68%, rgba(24, 30, 37, 0.85) 82%, #181E25 100%),
        linear-gradient(180deg, rgba(24, 30, 37, 0.55) 0%, rgba(24, 30, 37, 0) 30%, rgba(24, 30, 37, 0) 70%, rgba(24, 30, 37, 0.85) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(64, 63, 61, 0.25) 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: 260px;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
    filter: brightness(0) invert(1);
}

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

.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: -10px;
}

.hero-region {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--color-text-light);
}

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

.hero-headline {
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: var(--color-text-light);
    margin-top: 12px;
    text-transform: uppercase;
}

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

.hero-concept {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.5;
    color: var(--color-text-light);
    margin-top: 4px;
}

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

.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-size: 18px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--color-primary-light);
    margin-top: 12px;
}

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

.hero-distance {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 8px;
    width: 100%;
}

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

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

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

.hero-form-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-text);
    margin-bottom: 28px;
}

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

.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: 16px;
    background: #181E25;
    color: var(--color-text-light);
    border: none;
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
    font-family: inherit;
    border-radius: 4px;
    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-selos {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-primary);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-selo {
    display: block;
    width: auto;
    height: 44px;
    max-width: 100%;
    object-fit: contain;
    flex: 0 1 auto;
    min-width: 0;
}

.hero-selo-prefeitura {
    border-radius: 3px;
}

.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: 100px 0;
    background: var(--color-bg);
}

.heading-section {
    font-family: var(--font-sans);
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 60px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

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

.section-eyebrow {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

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

.section-lead {
    text-align: center;
    max-width: 720px;
    margin: -40px auto 60px;
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.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,
.slider-plantas,
.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-sans);
    font-size: 16px;
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-distance {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
}

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

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

.aerea-image img {
    width: 100%;
    height: auto;
    display: block;
}

.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-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: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-light-muted);
    text-transform: lowercase;
    text-align: center;
}

.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: 18px 48px;
    background: var(--color-primary);
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    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;
}

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

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

.plantas-track {
    display: flex;
    gap: 24px;
}

.card-planta {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    background: var(--color-bg);
    padding: 32px;
    border-radius: 4px;
    align-items: center;
}

.planta-text-block {
    border-right: 1px solid var(--color-border);
    padding-right: 32px;
}

.planta-metragem {
    font-family: var(--font-sans);
    font-size: 64px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.planta-tipo {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text);
    text-transform: uppercase;
}

.planta-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.planta-img {
    aspect-ratio: 4/3;
    width: 100%;
    background: var(--color-bg-alt);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.planta-img-contain {
    background: transparent;
}

.planta-img-contain img {
    object-fit: contain;
}

.planta-variante {
    margin-top: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.plantas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: var(--color-bg);
    border-radius: 4px;
}

.plantas-header-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.plantas-header-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plantas-header-feature p {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.3;
}

.plantas-header-controls {
    flex-shrink: 0;
    margin: 0;
}

.plantas-mobile-controls {
    display: none;
}

.planta-feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.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-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s var(--ease-elegant);
    cursor: pointer;
    font-family: inherit;
}

.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-sans);
    font-size: 24px;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.impl-legend p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

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

.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-sans);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mapa-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    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-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    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-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.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: 18px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-elegant);
    margin-top: 8px;
    font-family: inherit;
}

.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-sans);
    font-size: 22px;
    font-weight: 900;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.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-size: 11px;
    line-height: 1.7;
    color: var(--color-text-light-muted);
    text-align: justify;
    margin-bottom: 40px;
}

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

.footer-incorp-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-text-light-muted);
    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;
}

.cta-whatsapp-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #181E25 0%, #2a3540 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(176, 138, 91, 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;
    margin-bottom: 12px;
}

.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-sans);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 32px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.paragraph-modal strong {
    font-weight: 600;
    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;
    }

    .hero-selos {
        margin-bottom: 24px;
        gap: 14px 20px;
    }

    .hero-selo {
        height: 51px;
    }

    .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) {
    .card-localizacao,
    .card-lazer {
        flex: 0 0 calc((100% - 40px) / 3);
    }

    .plantas-header-features {
        gap: 18px;
    }

    .plantas-header-feature p {
        font-size: 12px;
    }

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

    .card-planta {
        grid-template-columns: 200px 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-selos {
        max-width: 100%;
    }

    .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-selos {
        margin: 0 auto 24px;
        justify-content: center;
    }

    .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: 440px;
        padding: 72px 20px 48px;
        min-height: auto;
    }

    .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-selos {
        margin-bottom: 18px;
        gap: 10px 12px;
    }

    .hero-selo {
        height: 40px;
    }

    .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: clamp(20px, 5.6vw, 28px);
        margin-bottom: 32px;
        line-height: 1.25;
        letter-spacing: 0.01em;
    }

    .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,
    .slider-plantas,
    .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;
    }

    .slider-plantas .plantas-header {
        margin-bottom: 0;
    }

    .slider-plantas .plantas-header-controls {
        display: none;
    }

    .slider-plantas .plantas-mobile-controls {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin: 18px 0 20px;
    }

    .slider-plantas .plantas-mobile-controls .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .slider-plantas .plantas-mobile-controls .slider-arrow svg {
        width: 14px;
        height: 14px;
        stroke-width: 2.2;
    }

    .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-track {
        gap: 16px;
    }

    .card-planta {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 20px;
    }

    .planta-text-block {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-right: 0;
        padding-bottom: 14px;
        text-align: center;
    }

    .planta-metragem {
        font-size: 44px;
    }

    .planta-tipo {
        font-size: 14px;
    }

    .planta-variante {
        font-size: 10px;
        margin-top: 10px;
    }

    .planta-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .plantas-header {
        flex-direction: column;
        align-items: stretch;
        padding: 18px 16px;
        gap: 18px;
    }

    .plantas-header-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .plantas-header-feature {
        gap: 10px;
    }

    .plantas-header-feature p {
        font-size: 11px;
        line-height: 1.35;
    }

    .planta-feature-icon {
        width: 32px;
        height: 32px;
    }

    .plantas-header-controls {
        justify-content: center;
    }

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

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

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

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

    .slider-localizacao,
    .lazer-grid-slider,
    .slider-plantas,
    .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: clamp(19px, 6.2vw, 24px);
    }

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

    .planta-metragem {
        font-size: 40px;
    }

    .card-planta {
        padding: 18px 16px;
    }

    .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: 18px;
    }

    .plantas-header-features {
        grid-template-columns: 1fr;
    }

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