.kicker,
.tiny {
    font-size: .85rem
}

.btn,
.header__row {
    align-items: center
}

.btn--accent:hover,
.btn--primary:hover,
.btn--whatsapp:hover {
    transform: translateY(-2px);
    filter: brightness(1.05)
}

#map,
.feature,
.feature__img,
.hero {
    overflow: hidden
}

.btn,
.carruselnav,
.chip,
.dots button,
.navToggle {
    cursor: pointer
}

.btn,
.contact-item,
.logoBlock,
a {
    text-decoration: none
}

.loader-text,
.map-popup {
    font-family: var(--font-main)
}

.btn--yellow,
.cta-bubble,
.kicker,
.loader-text,
.popup-content h3,
.promo__row--top {
    text-transform: uppercase
}

:root {
    --green: #1f8a45;
    --green2: #166e35;
    --red: #E41022;
    --ink: #383637;
    --yellow: #bfa15f;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg: #fdfdfd;
    --soft: #f4f4f5;
    --shadow: 0 10px 30px -5px rgba(56, 54, 55, 0.1);
    --shadow-hover: 0 20px 40px -10px rgba(228, 16, 34, 0.15);
    --radius: 16px;
    --font-main: 'Outfit', system-ui, sans-serif
}

* {
    box-sizing: border-box
}

body,
button,
html,
input,
select,
textarea {
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6
}

a {
    color: inherit;
    transition: color .2s
}

.container {
    width: min(1200px, 100% - 40px);
    margin-inline: auto
}

.muted {
    color: var(--muted);
    font-weight: 300
}

.kicker {
    font-weight: 800;
    color: var(--green);
    margin: 0 0 6px;
    letter-spacing: 1px
}

.hl {
    color: #26b332;
    text-shadow: 0 0 30px rgba(38, 179, 50, .4)
}

.btn {
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: .3s cubic-bezier(.25, .8, .25, 1);
    font-size: 1rem
}

.btn--block,
.nav a:hover::after {
    width: 100%
}

.btn--primary {
    background: #26b332;
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(31, 138, 69, .4)
}

.btn--primary:hover {
    box-shadow: 0 15px 30px -5px rgba(31, 138, 69, .5)
}

.btn--ghost {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    backdrop-filter: blur(10px)
}

.header,
.mobileNav {
    backdrop-filter: blur(12px)
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .25);
    transform: translateY(-2px)
}

.btn--soft {
    background: #eef2f8;
    border-color: #cbd5e1;
    color: var(--ink)
}

.btn--accent,
.btn--whatsapp {
    border-color: transparent;
    color: #fff
}

.btn--accent {
    background: var(--red);
    box-shadow: 0 8px 16px -4px rgba(34, 228, 16, .3)
}

.btn--accent:hover {
    box-shadow: 0 12px 20px -5px rgba(180, 150, 80, .4)
}

.btn--whatsapp {
    background: #26b332;
    box-shadow: 0 8px 16px -4px rgba(37, 211, 102, .3)
}

.btn--whatsapp:hover {
    box-shadow: 0 12px 20px -5px rgba(37, 211, 102, .4)
}

.mobile-whatsapp {
    display: none
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .85);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: .3s
}

.logoBlock,
.nav a {
    position: relative
}

.header__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 16px 0
}

.logoBlock,
.nav {
    align-items: center;
    display: flex
}

.logoBlock {
    gap: 12px;
    padding: 6px;
    width: fit-content;
    height: 50px
}

.logoBlock__img,
.mobileNav,
.nav a::after {
    position: absolute;
    left: 0
}

.logoBlock__img {
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    object-fit: contain;
    z-index: 10
}

.feature__img img,
.hero__bg {
    height: 100%;
    object-fit: cover
}

.logoBlock__text {
    margin-left: 85px;
    line-height: 1.1;
    display: flex;
    flex-direction: column
}

.logoBlock__name {
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 1.25rem;
    color: var(--ink)
}

.logoBlock__sub,
.nav a {
    color: var(--muted);
    font-weight: 500
}

.logoBlock__sub {
    font-size: .75rem;
    letter-spacing: 2px
}

.nav {
    gap: 32px;
    justify-content: center
}

.hero,
.navActions {
    align-items: center
}

.nav a {
    font-size: 1.15rem;
    padding: 6px 0
}

.nav a::after {
    content: '';
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--red);
    transition: width .3s;
    border-radius: 2px
}

.cta-bubble .hl-text,
.nav a:hover {
    color: var(--red)
}

.navActions {
    display: flex;
    gap: 16px;
    justify-self: end
}

.navToggle {
    display: none;
    border: none;
    background: 0 0;
    padding: 8px;
    font-size: 1.5rem;
    color: var(--ink)
}

.mobileNav {
    top: 100%;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, .1);
    display: none;
    padding: 24px
}

.mobileNav:not([hidden]) {
    display: block;
    animation: .3s ease-out slideDown
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mobileNav__content {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.mobileNav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    transition: .2s
}

.mobileNav a:hover {
    background: var(--soft);
    color: var(--green)
}

.mobileNav hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin: 8px auto;
    width: 40px
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    padding-top: 0
}

.hero__bg,
.hero__overlay {
    position: absolute;
    inset: 0
}

.hero__grid,
.promo {
    align-items: center
}

.hero__bg {
    width: 100%;
    object-position: center bottom;
    transform: scale(1.05);
    animation: 20s infinite alternate zoomOut;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1
}

.hero__bg.active {
    opacity: 1;
    z-index: 2
}

@keyframes zoomOut {
    from {
        transform: scale(1.05)
    }

    to {
        transform: scale(1.15)
    }
}

.hero__overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, .4) 0, rgba(15, 23, 42, .7) 100%);
    backdrop-filter: blur(2px);
    z-index: 3
}

.hero__content {
    position: relative;
    padding: 35px 40px 100px;
    width: 100%;
    max-width: 100%;
    z-index: 10;
    margin: 0
}

.hero__grid {
    display: flex;
    justify-content: space-between;
    gap: 0;
    width: 96%
}

.hero__text-col {
    flex: 1;
    max-width: 650px;
    text-align: left
}

.cardForm h2,
.cta-bubble,
.footer__bottom,
.loader-text,
.popup-header,
.section__head {
    text-align: center
}

.hero__img-col {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-self: flex-start;
    margin-top: -30px
}

.hero__logo-img {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(1, 255, 107, .3));
    animation: 6s ease-in-out infinite floatLogo;
    filter: brightness(1.5) invert(.1)
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin: 24px 0 20px;
    font-weight: 800;
    letter-spacing: -1px
}

.hero__lead {
    color: rgba(255, 255, 255, .9);
    font-size: 1.25rem;
    max-width: 60ch;
    margin-bottom: 32px;
    font-weight: 300
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center
}

.promo,
.promo__row {
    display: inline-flex
}

.promo {
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 6px 16px 6px 6px;
    border-radius: 99px
}

.promo__row {
    align-items: center;
    gap: 8px
}

.promo__row--top {
    background: var(--red);
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: .85rem;
    box-shadow: 0 4px 12px rgba(214, 43, 43, .3)
}

#map,
.cardForm,
.feature {
    box-shadow: var(--shadow)
}

.promo__row--bottom {
    background: 0 0;
    color: #fff;
    font-weight: 600
}

.promo__small {
    font-size: .95rem;
    letter-spacing: .5px
}

.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px
}

.chip {
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    backdrop-filter: blur(6px)
}

.chip.is-active {
    background: rgba(255, 255, 255, .26);
    border-color: rgba(255, 255, 255, .55)
}

.section {
    padding: 40px 0
}

.section--soft {
    background: var(--soft)
}

.section__head {
    display: flex;
    justify-content: center;
    align-items: end
}

.grid3,
.grid4 {
    display: grid;
    gap: 24px;
    width: min(1200px, calc(100% - 40px));
    padding: 0;
    margin: 0 auto
}

.section__head h2 {
    font-size: 2.5rem;
    color: var(--ink);
    margin: 0 0 16px;
    letter-spacing: -.5px
}

.grid3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.grid4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
}

.feature {
    border-radius: var(--radius);
    background: #fff;
    padding: 0;
    transition: .3s;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, .8);
    border-top: 4px solid var(--green)
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover)
}

.feature__img {
    width: 100%;
    height: 220px;
    position: relative
}

.feature__img img {
    width: 100%;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94)
}

.feature:hover .feature__img img {
    transform: scale(1.1)
}

.feature__img--contain {
    background: #f8fafc;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.feature__img--contain img {
    object-fit: contain;
    width: 80%;
    height: 80%
}

.feature h3 {
    padding: 24px 24px 12px;
    margin: 0;
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 700
}

.feature p {
    padding: 0 24px 24px;
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6
}

.cardForm {
    position: relative;
    border-radius: var(--radius);
    background: #fff;
    padding: 0 15px;
    max-width: 580px;
    margin: 0 auto;
    border: 1px solid rgba(226, 232, 240, .8);
    border-bottom: 4px solid var(--green);
    border-top: 4px solid var(--green)
}

#map,
.formLoader {
    position: absolute;
    inset: 0
}

.cardForm h2 {
    font-size: 2rem;
    margin-bottom: 1px;
    color: var(--ink)
}

.cardForm label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: .9rem;
    color: var(--ink)
}

.cardForm input,
.cardForm select,
.cardForm textarea {
    width: 100%;
    padding: 9px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #f8fafc;
    font-size: 1rem;
    transition: .2s;
    color: var(--ink)
}

.cardForm input:focus,
.cardForm textarea:focus {
    outline: 0;
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(31, 138, 69, .1)
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0
}

.formLoader {
    z-index: 10;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 700;
    color: var(--green)
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--line);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: 1s linear infinite spin
}

@keyframes spin {
    100% {
        transform: rotate(360deg)
    }
}

[hidden] {
    display: none !important
}

.footer {
    background: var(--ink);
    color: #e7eef8;
    padding: 60px 0 32px
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 16px
}

.footer__brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .9
}

.footer__brand strong {
    font-size: 1.25rem;
    font-weight: 700
}

.footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.footer__links a {
    color: #cbd5e1;
    font-weight: 500;
    transition: color .2s
}

.contact-item:hover,
.footer__links a:hover {
    color: #fff
}

.footer__bottom {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .9rem;
    color: #94a3b8
}

@media (max-width:901px) {
    .header__row {
        display: flex;
        justify-content: space-between
    }

    .nav,
    .navActions {
        display: none
    }

    .mobile-whatsapp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #25d366;
        color: #fff;
        border-radius: 50%;
        font-size: 1.5rem;
        margin-left: auto;
        margin-right: 12px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(37, 211, 102, .3);
        transition: transform .2s
    }

    .mobile-whatsapp:active {
        transform: scale(.95)
    }

    .navToggle {
        display: inline-flex;
        margin-left: 0
    }

    .hero {
        min-height: 600px;
        padding-top: 40px
    }

    .hero__grid {
        flex-direction: column;
        text-align: center;
        gap: 0;
        align-items: center
    }

    .hero__text-col {
        max-width: 100%;
        text-align: center
    }

    .hero__img-col {
        justify-content: center;
        order: 1;
        width: 100%
    }

    .hero__content {
        padding: 130px 20px
    }

    .hero__logo-img {
        max-width: 200px
    }

    .hero__cta {
        justify-content: center
    }

    .footer__row {
        flex-direction: column;
        text-align: center
    }
}

#map,
.slide {
    height: 100%
}

@media (min-width:902px) {
    .mobileNav {
        display: none !important
    }
}

#map {
    border-radius: var(--radius);
    width: 100%;
    background-color: #e2e8f0
}

.map-popup {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    max-width: 320px;
    pointer-events: none
}

.carrusel,
.mapCard,
.slides,
.video {
    position: relative
}

.map-popup>*,
.popup-content {
    pointer-events: auto
}

.mapboxgl-popup-content {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    border: none;
    overflow: hidden
}

.mapCard,
.popup-content,
.video {
    border-radius: 12px;
    overflow: hidden
}

.mapboxgl-popup-close-button {
    font-size: 1.5rem;
    color: #fff;
    padding: 4px 8px;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5)
}

.popup-content {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
}

.popup-content h3 {
    background: var(--red);
    color: #fff;
    margin: 0;
    padding: 12px 16px;
    font-size: 1.1rem;
    letter-spacing: .5px
}

.popup-content p {
    margin: 0;
    padding: 8px 16px;
    font-size: .95rem;
    color: var(--ink);
    border-bottom: 1px solid var(--soft);
    display: flex;
    justify-content: space-between
}

.popup-content p:last-child {
    border-bottom: none;
    padding-bottom: 16px
}

.popup-content strong,
.popup-row .label {
    color: var(--muted);
    font-weight: 500
}

.mapCard,
.video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1)
}

.mapCard iframe,
.video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

.carrusel {
    width: min(1000px, 100% - 32px);
    margin: 10px auto;
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.slides {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
    background: #000
}

.slide {
    display: none;
    width: 100%;
    object-fit: contain
}

.slide.active {
    display: block;
    animation: .5s ease-in-out fade
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.carruselnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .8);
    color: var(--green);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    z-index: 10;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center
}

.carruselnav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1)
}

.carruselnav.prev {
    left: 32px
}

.carruselnav.next {
    right: 32px
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    padding: 0;
    transition: background .3s
}

.dots button.active {
    background: var(--green);
    transform: scale(1.2)
}

@media (max-width:600px) {
    .map-popup {
        top: 60px !important;
        max-width: 200px
    }

    .popup-content {
        padding: 10px;
        max-width: 220px
    }

    .popup-content h3 {
        font-size: 1.1rem
    }

    .popup-content p {
        font-size: .85rem
    }

    .carrusel {
        padding: 16px;
        width: calc(100% - 16px)
    }

    .carruselnav {
        width: 36px;
        height: 36px;
        font-size: 18px
    }

    .carruselnav.prev {
        left: 10px
    }

    .carruselnav.next {
        right: 10px
    }
}

.contact-item,
.popup-row {
    display: flex;
    font-size: .95rem
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-item {
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    transition: color .2s
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--green)
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #e2e8f0;
    grid-column: 1/-1
}

.map-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Lotes.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s, visibility .4s
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.map-placeholder__content {
    position: relative;
    z-index: 20;
    text-align: center;
    background: rgba(255, 255, 255, .95);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, .15);
    max-width: 420px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, .8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.badge-content,
.map-popup,
.popup-card {
    border-radius: 12px
}

.map-placeholder__content h3 {
    margin: 8px 0 0;
    font-size: 1.5rem;
    color: var(--ink);
    font-weight: 800
}

.map-placeholder__content p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.5
}

.map-popup {
    z-index: 99;
    background: 0 0;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    width: 260px;
    pointer-events: none
}

.popup-card {
    background: #fff;
    overflow: hidden;
    pointer-events: auto
}

.popup-header {
    background: var(--red);
    color: #fff;
    padding: 12px 16px
}

.popup-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .5px;
    color: #fff
}

.popup-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.popup-row {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px
}

.popup-row:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.popup-row .value {
    color: var(--ink);
    font-weight: 700;
    text-align: right
}

@media (max-width:768px) {
    .map-wrapper {
        height: 500px
    }

    .map-placeholder__content {
        padding: 24px
    }

    .map-popup {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        max-width: 400px;
        margin: 0 auto;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, .15);
        animation: .3s ease-out slideUp
    }
}

.hero__badge-contact,
.hero__badge-credit {
    top: 25px;
    z-index: 20;
    display: flex;
    position: absolute
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.hero__badge-credit {
    left: 50%;
    right: auto;
    margin-left: 24px;
    align-items: center
}

.hero__badge-contact {
    right: 50%;
    left: auto;
    margin-right: 24px;
    align-items: center
}

.badge-content {
    background: #26b332;
    color: #fff;
    padding: 3px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    letter-spacing: .5px;
    animation: 3s ease-in-out infinite pulseBadge
}

.cta-card,
.cta-card__image {
    border-radius: var(--radius);
    overflow: hidden
}

.badge-content i {
    font-size: 1.5rem;
    color: #fff
}

.badge-content strong {
    font-weight: 800;
    display: block;
    line-height: 1;
    font-size: 1.2rem
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, .3)
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(191, 161, 95, .4)
    }
}

@media (min-width:1280px) {
    #contact-section-wrapper {
        height: 0;
        padding: 0;
        margin: 0;
        background: 0 0;
        pointer-events: none;
        overflow: visible;
        position: relative
    }

    #contact-section-wrapper .cardForm {
        position: fixed;
        top: 255px;
        right: 80px;
        width: 445px;
        height: 520px;
        z-index: 90;
        margin: 0;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        pointer-events: auto;
        box-shadow: 0 10px 40px -10px rgba(0, 0, 0, .2)
    }

    .section:not(#contact-section-wrapper) {
        padding-right: 625px;
        padding-left: 80px;
        transition: padding .3s;
        width: 130%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0
    }

    .hero__content {
        padding-inline: 80px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0
    }

    .hero .container {
        margin-inline: 0;
        width: 100%
    }

    .grid3,
    .grid4 {
        width: 100%
    }
}

.cta-card {
    background: var(--green);
    background: linear-gradient(135deg, var(--green) 0, var(--green2) 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    color: #fff;
    position: relative;
    box-shadow: var(--shadow-hover);
    margin-top: 2rem;
    margin-bottom: 2rem
}

.cta-card__image {
    flex: 1;
    max-width: 450px;
    transform: rotate(-3deg);
    border: 6px solid rgba(255, 255, 255, .2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    transition: transform .3s
}

.cta-card:hover .cta-card__image {
    transform: rotate(0) scale(1.02)
}

.cta-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.cta-card__content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2
}

.cta-bubble {
    background: #fff;
    color: var(--ink);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.6rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    line-height: 1.2
}

.cta-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    border-width: 14px 14px 14px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent
}

.cta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 500
}

.cta-list li i {
    font-size: 1.8rem;
    color: #fff;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%
}

.cta-action {
    margin-top: 1rem;
    display: flex;
    justify-content: center
}

.btn--yellow {
    background: var(--yellow);
    background: #fbbf24;
    color: #78350f;
    font-weight: 800;
    padding: 1.2rem 1rem;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 8px 20px rgba(251, 191, 36, .4)
}

.map-loader,
.page-loader {
    background: #fff;
    display: flex
}

.btn--yellow:hover {
    background: #f59e0b;
    color: #451a03;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(251, 191, 36, .5)
}

@media (max-width:900px) {
    .cta-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem
    }

    .cta-card__image {
        max-width: 100%;
        transform: rotate(0);
        width: 100%
    }

    .cta-bubble {
        font-size: 1.3rem
    }

    .cta-bubble::after {
        top: auto;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%) rotate(-90deg)
    }
}

#altamira,
#brochure,
#contacto,
#lotes,
#ubicacion,
section {
    scroll-margin-top: 90px
}

@media (max-width:800px) {
    .footer__contact {
        align-items: center;
        margin-top: 24px
    }

    .hero__badge-contact,
    .hero__badge-credit {
        transform: translateX(-50%);
        width: max-content
    }

    .hero__badge-credit {
        top: 95px;
        right: auto;
        left: 45%
    }

    .hero__badge-contact {
        top: 25px;
        left: 50%
    }

    .badge-content {
        padding: 8px 16px;
        font-size: .9rem
    }

    .badge-content strong {
        font-size: 1rem
    }

    .hero__bg {
        object-position: center !important
    }

    #altamira,
    #brochure,
    #contacto,
    #lotes,
    #ubicacion,
    section {
        scroll-margin-top: 80px
    }
}

.page-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity .6s ease-out, visibility .6s ease-out
}

.map-loader.hidden,
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: .8s ease-out fadeInUp
}

.loader-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center
}

.loader-ring,
.map-loader {
    position: absolute;
    inset: 0
}

.loader-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    animation: 2s ease-in-out infinite pulseLogo
}

.loader-ring {
    border: 3px solid rgba(31, 138, 69, .1);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: 1.5s linear infinite spinLoader
}

.loader-text {
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: 1s ease-out .3s forwards fadeInText
}

@keyframes spinLoader {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.map-loader {
    width: 100%;
    height: 100%;
    z-index: 50;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity .4s ease-out, visibility .4s ease-out;
    border-radius: 16px
}

@media (min-width:1410px) {
    .hero__logo-img {
        max-width: 535px;
        height: auto;
        filter: drop-shadow(0 10px 20px rgba(1, 255, 107, .3));
        animation: 6s ease-in-out infinite floatLogo;
        filter: brightness(1.5) invert(.1)
    }
}

/* --- Interactive Map Altamira --- */
.map-container-altamira {
    background: white;
    padding: 20px;
    border-radius: var(--radius, 16px);
    box-shadow: var(--shadow, 0 4px 12px rgba(0, 0, 0, 0.08));
    margin-top: 2rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-wrapper-altamira {
    background: #edfaf1;
    height: 600px;
    max-height: 80vh;
    width: 100%;
    position: relative;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    border-radius: var(--radius, 16px);
    user-select: none;
    touch-action: none;
    cursor: grab;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.map-wrapper-altamira:active {
    cursor: grabbing;
}

/* Zoom Controls */
.map-zoom-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 30;
}

.map-zoom-controls button {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--green, #0073c1);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    pointer-events: auto;
}

.map-zoom-controls button:hover {
    background: var(--green, #0073c1);
    color: white;
    transform: translateY(-2px);
}

.map-zoom-controls button:active {
    transform: scale(0.95);
}

.map-content-altamira {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    backface-visibility: hidden;
    transform: translateZ(0);
    contain: layout style paint;
}

.map-img-altamira {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    max-width: none !important;
    user-select: none;
    -webkit-user-drag: none;
    z-index: 1;
}

.map-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 200px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* Dots */
.lot-dot-altamira {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--green, #308612);
    cursor: pointer;
    transform: translate(-50%, -50%);
    border: 2px solid white;
    z-index: 20;
    will-change: opacity;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lot-dot-altamira:not(.sold):not(.reserved):not(.public)::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--green, #308612);
    opacity: 0;
    animation: dot-pulse 2s infinite;
    will-change: transform, opacity;
}

.lot-dot-altamira:hover {
    transform: translate(-50%, -50%) scale(1.6);
    z-index: 100;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.lot-dot-altamira.sold {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.lot-dot-altamira.reserved {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.lot-dot-altamira.public {
    background: linear-gradient(135deg, #9ca3af, #4b5563);
}

/* Optimization States for JS */
.map-wrapper-altamira.zoomed-out .lot-dot-altamira {
    opacity: 0;
    pointer-events: none;
}

.map-wrapper-altamira.is-panning .lot-dot-altamira,
.map-wrapper-altamira.is-panning .custom-tooltip-altamira {
    pointer-events: none !important;
}

/* Tooltip Custom */
.custom-tooltip-altamira {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    pointer-events: none;
    min-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s, transform 0.3s;
    transform: translateY(10px);
    font-family: inherit;
    max-width: 90vw;
}

.custom-tooltip-altamira.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-tooltip-altamira h4 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    color: var(--green, #0073c1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

.tooltip-status-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.status-disponible {
    background: #dcfce7;
    color: #166534;
}

.status-vendido {
    background: #fee2e2;
    color: #991b1b;
}

.status-reservado {
    background: #fef3c7;
    color: #92400e;
}

.status-publico {
    background: #f3f4f6;
    color: #1f2937;
}

.tooltip-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tooltip-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.tooltip-row i {
    width: 16px;
    color: var(--green, #308612);
}

.tooltip-label {
    color: #64748b;
    font-weight: 500;
    flex: 1;
}

.tooltip-value {
    color: #1e293b;
    font-weight: 700;
}

.tooltip-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
    font-size: 0.75rem;
    color: var(--green, #308612);
    font-weight: 600;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-zoom-controls {
        top: auto;
        bottom: 20px;
        right: 20px;
        flex-direction: row;
    }

    .map-wrapper-altamira {
        height: 450px;
        max-height: 60vh;
    }

    .custom-tooltip-altamira {
        width: 90%;
        max-width: 400px;
        padding: 20px;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 20px;
        transform: translate(-50%, 20px);
    }

    .custom-tooltip-altamira.show {
        transform: translate(-50%, 0);
    }
}

/* --- Map Legend --- */
.map-legend {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted, #64748b);
}

.legend-item .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.legend-item .dot.available {
    background-color: var(--red, #308612);
}

.legend-item .dot.reserved {
    background-color: #f59e0b;
}

.legend-item .dot.sold {
    background-color: #ef4444;
}

.legend-item .dot.public {
    background-color: #9ca3af;
}

/* --- Legend Cortes (Road cuts) --- */
.legend-cortes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 800px;
    justify-items: center;
}

.corte-item {
    width: 100%;
    max-width: 350px;
    background: white;
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow, 0 4px 12px rgba(0, 0, 0, 0.08));
    overflow: hidden;
    aspect-ratio: 16/7;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.corte-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.corte-item--centered {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .legend-cortes {
        grid-template-columns: 1fr;
    }

    .corte-item--centered {
        grid-column: auto;
    }
}