@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── Variables ──────────────────────────────────────────── */
:root {
    --sidebar-width: 240px;
    --navbar-height: 80px;
    --color-bg-sidebar: #f2ede8;
    --color-brown: #5a3a28;
    --color-brown-light: #8b6248;
    --color-text-muted: #9e8878;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
}

/* ─── Base ───────────────────────────────────────────────── */
html {
    min-height: 100%;
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    min-height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    /* scroll-behavior: smooth; */
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* ─── Sidebar ────────────────────────────────────────────── */
.sidebar {
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.sidebar__logo {
    display: none;
}

.sidebar__logo img {
    width: 52px;
}

/* — Hamburger — */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    position: sticky;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

/* Animación a X cuando está abierto */
.sidebar--open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sidebar--open .hamburger span:nth-child(2) { opacity: 0; }
.sidebar--open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* — Overlay — */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 99;
}

.nav-overlay--visible {
    display: block;
}

/* — Nav — */
.sidebar__nav {
    display: none;
}

.sidebar__nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.sidebar__nav li {
    border-bottom: 1px solid #c9b8ac;
}

.sidebar__nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    color: var(--color-brown);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.sidebar__nav li a::after {
    content: '⌐';
    font-size: 13px;
    color: var(--color-brown-light);
    transform: rotate(360deg) scaleX(-1);
    display: inline-block;
}

.sidebar__nav li a:hover {
    color: var(--color-brown-light);
}

.nav-num {
    font-size: 10px;
    color: var(--color-text-muted);
    margin-right: 8px;
    font-weight: 400;
}

/* — Footer — */
.sidebar__footer {
    display: none;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
    width: 100%;
}

.sidebar__brand {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    border-bottom: 1px solid #c9b8ac;
    padding-bottom: 14px;
}

.sidebar__social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sidebar__social a img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.sidebar__social a:hover img {
    opacity: 1;
}

/* ─── Main ───────────────────────────────────────────────── */
.main {
    flex: 1;
    overflow-x: hidden;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    background-image: url('../assets/01HOME/BG.jpg');
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
    padding: 0 20px;
}

.hero__logo {
    width: 220px;
    max-width: 80vw;
    filter: brightness(0) invert(1) drop-shadow(0 4px 24px rgba(0, 0, 0, 0.3));
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(90, 58, 40, 0.75);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 12px 22px 12px 28px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: background-color 0.25s;
}

.hero__cta:hover {
    background-color: rgba(90, 58, 40, 0.95);
}

.hero__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-brown);
    border-radius: 50%;
    font-size: 15px;
    flex-shrink: 0;
}

/*============================================
    PROYECTO
=============================================*/
.about {
    background-image: url('../assets/02INTRO/BG.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 100px 24px 60px;
}

.about__card {
    background-color: rgba(110, 75, 35, 0.58);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 20px;
    padding: 44px 36px;
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.about__card p {
    color: #fff;
    font-style: italic;
    font-size: 15px;
    line-height: 1.85;
}

.about__card p + p {
    margin-top: 24px;
}

.about__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about__logo {
    width: 100px;
    filter: brightness(0) invert(1);
}

.about__tagline {
    color: #fff;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    letter-spacing: 0.02em;
}


/*============================================
    INFO
=============================================*/
.info__section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-image: url('../assets/03INFO/BG.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.info__photo {
    width: calc(100% - 48px);
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    margin: 80px 24px 0;
}

.info__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 48px 32px;
    text-align: center;
}

.info__icon {
    width: 48px;
    filter: brightness(0) invert(1);
}

.info__title {
    color: #fff;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.01em;
}

.info__stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.info__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.info__stat strong {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
}

.info__stat span {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.info__cta {
    display: inline-block;
    background-color: rgba(242, 237, 232, 0.85);
    color: var(--color-brown);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 36px;
    border-radius: 50px;
    transition: background-color 0.25s;
}

.info__cta:hover {
    background-color: #f2ede8;
}


/*============================================
    UBICACIÓN
=============================================*/
.ubicacion {
    position: relative;
    min-height: 100vh;
    background-image: url('../assets/04MAPA/BG.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ubicacion::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 25, 0.55);
}

.ubicacion__map {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 24px 24px;
    display: flex;
    justify-content: center;
}

.ubicacion__map img {
    width: 100%;
    max-width: 480px;
}

.ubicacion__text {
    position: relative;
    z-index: 1;
    padding: 24px 32px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ubicacion__heading {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    font-size: 36px;
    line-height: 1.25;
}

.ubicacion__city {
    display: block;
    font-size: 64px;
    line-height: 1.1;
}

.ubicacion__address {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.7;
}

.ubicacion__maps {
    display: inline-block;
    background-color: rgba(139, 98, 72, 0.75);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 40px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: background-color 0.25s;
}

.ubicacion__maps:hover {
    background-color: rgba(139, 98, 72, 0.95);
}

/*============================================
    MASTER PLAN
=============================================*/
.masterplan {
    position: relative;
    height: 100vh;
    background-color: #fff;
    padding: 16px;
}

.masterplan::before {
    content: '';
    position: absolute;
    inset: 16px;
    background-image: url('../assets/05MASTER_PLAN/MASTERPLAN.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.masterplan h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: clamp(30px, 10vw, 120px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
}

.masterplan__text {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 85%;
    z-index: 1;
}

.masterplan__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
}

.masterplan__stats {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-top: 6px;
}

/*============================================
    AMENIDADES
=============================================*/
.amenidades {
    position: relative;
    min-height: 100vh;
    background-color: var(--color-bg-sidebar);
    background-image: url('../assets/06AMENIDADES/BG1.jpg');
    background-size: cover;
    background-position: right center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 32px;
    gap: 36px;
}

.amenidades::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f2ede8 45%, rgba(242, 237, 232, 0) 80%);
}

.amenidades__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-brown);
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.05;
}

.amenidades__row {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 32px 16px;
}

.amenidades__row:first-of-type {
    grid-template-columns: repeat(3, 1fr);
}

.amenidades__row:last-of-type {
    grid-template-columns: repeat(2, 1fr);
}

.amenidades__row:last-of-type .amenidades__item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
}

.amenidades__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.amenidades__item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.amenidades__item span {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-brown);
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
}

/*=============================================
    VISTAS
==============================================*/
/*============================================
    VISTAS
=============================================*/
.vistas {
    position: relative;
    height: 100vh;
    background-image: url('../assets/07VISTAS/BG.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 80px;
    gap: 28px;
}

.vistas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(20, 15, 10, 0.65) 100%);
}

.vistas__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    font-size: clamp(28px, 5vw, 56px);
    text-align: center;
    line-height: 1.2;
    padding: 0 24px;
}

.vistas__cta {
    position: relative;
    z-index: 1;
    display: inline-block;
    background-color: rgba(139, 98, 72, 0.75);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 48px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: background-color 0.25s;
}

.vistas__cta:hover {
    background-color: rgba(139, 98, 72, 0.95);
}

/*=============================================
    PUNTOS DE INTERÉS
==============================================*/
.puntos {
    background: #fff;
    padding: 56px 24px 48px;
}

.puntos__layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.puntos__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.puntos__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(36px, 10vw, 60px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-brown);
    text-align: left;
    line-height: 1.0;
}

.puntos__cats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.puntos__cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.puntos__cat-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin-bottom: 2px;
}

.puntos__cat-name {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c4621d;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.puntos__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
}

.puntos__list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
    line-height: 1.6;
}

.puntos__num {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-brown);
}

.puntos__place {
    font-size: 13px;
    color: var(--color-brown);
}

.puntos__time {
    font-size: 13px;
    font-style: italic;
    color: var(--color-brown);
}

.puntos__map-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

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

/*=============================================
    CONTACTO
==============================================*/
.contacto {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #55301c;
}

.contacto__photo {
    position: relative;
    height: 50vh;
    min-height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    padding: 20px;
}

.contacto__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.contacto__photo-overlay {
    position: absolute;
    inset: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 28px;
    gap: 6px;
    transform: translate(-30%, -7%);
}

.contacto__photo-logo {
    width: 68px;
    filter: brightness(0) invert(1);
}

.contacto__photo-tagline {
    color: #fff;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(20px, 5vw, 28px);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.contacto__form-side {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 32px;
    flex: 1;
}

.contacto__texture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72%;
    height: auto;
    object-fit: contain;
    opacity: 0.14;
    filter: brightness(0) invert(1);
    pointer-events: none;
}

.contacto__form-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.contacto__title {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(16px, 5vw, 24px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.contacto__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contacto__field label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.contacto__field input {
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-size: 15px;
    font-family: var(--font-sans);
    outline: none;
    transition: background-color 0.2s;
    width: 100%;
}

.contacto__field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contacto__field input:focus {
    background-color: rgba(255, 255, 255, 0.35);
}

.contacto__btn {
    align-self: center;
    background-color: #fff;
    color: var(--color-brown);
    border: none;
    border-radius: 50px;
    padding: 15px 44px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s, color 0.25s;
    margin-top: 4px;
}

.contacto__btn:hover {
    background-color: var(--color-brown);
    color: #fff;
}

.contacto__disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 11px;
    text-align: center;
    line-height: 1.6;
}

/*============================================
    MODELOS — CARRUSEL
=============================================*/
.modelos {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Capas de fondo (una por modelo) */
.modelos__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: opacity;
}

/* Slides */
.modelos__slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 80px 32px 110px;
    gap: 18px;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
}

.modelos__photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    margin-top: 8px;
}

.modelos__header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modelos__label {
    font-family: var(--font-sans);
    font-weight: 400;
    color: #fff;
    font-size: clamp(18px, 5vw, 28px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.modelos__letra {
    font-weight: 900;
    font-size: clamp(42px, 12vw, 80px);
    line-height: 0.85;
    letter-spacing: -0.02em;
}

.modelos__tipo {
    font-family: var(--font-sans);
    font-weight: 400;
    color: #fff;
    font-size: clamp(14px, 4vw, 18px);
    letter-spacing: 0.06em;
}

.modelos__area-box {
    align-self: flex-start;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    padding: 12px 28px;
    margin-top: 24px;
}

.modelos__area {
    font-family: var(--font-sans);
    font-weight: 800;
    color: #fff;
    font-size: clamp(38px, 10vw, 64px);
    letter-spacing: -0.01em;
}

.modelos__specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    margin-top: 16px;
}

.modelos__specs-col {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modelos__specs-col li {
    color: #fff;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 700;
    line-height: 1.4;
}

/* Navegación del carrusel */
.modelos__nav {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
}

.modelos__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.modelos__dot {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    width: 34px;
    height: 34px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modelos__dot--active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--color-brown);
}

.modelos__dot:hover:not(.modelos__dot--active) {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

.modelos__arrow {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.modelos__arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.modelos__arrow svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP  ≥ 1024px
   Solo se sobreescriben los valores que cambian.
═══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    html, body {
        height: 100vh;
        overflow: hidden;
    }

    body {
        flex-direction: row;
    }

    .sidebar {
        width: var(--sidebar-width);
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 32px 28px;
        background-color: rgba(242, 237, 232, 0.18);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .sidebar__logo {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 24px;
    }

    .sidebar__logo img {
        width: 80px;
    }

    .sidebar__nav {
        display: flex;
        flex: 1;
        width: 100%;
        flex-direction: column;
    }

    .sidebar__nav li {
        border-bottom-color: rgba(255, 255, 255, 0.25);
    }

    .sidebar__nav li a {
        /* color: var(--color-brown); */
        color: black;
    }

    .sidebar__nav li a:hover {
        color: var(--color-brown-light);
    }

    .sidebar__nav li a::after {
        /* color: var(--color-brown-light); */
        color: black;
    }

    .nav-num {
        /* color: var(--color-text-muted); */
        color: black;
    }

    .sidebar__footer {
        display: flex;
    }

    .sidebar__brand {
        /* color: var(--color-text-muted); */
        color: black;
        border-bottom-color: rgba(90, 58, 40, 0.15);
    }

    .sidebar__social a img {
        filter: none;
    }

    .hamburger {
        display: none;
    }

    /* ── Sticky top navbar (desktop, post-hero) ── */
    .sidebar--sticky {
        width: 100%;
        height: var(--navbar-height);
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 0 40px;
        background-color: var(--color-bg-sidebar);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 2px 16px rgba(90, 58, 40, 0.1);
        transition: none;
    }

    .sidebar--sticky .sidebar__logo {
        margin-bottom: 0;
        margin-right: auto;
        width: auto;
    }

    .sidebar--sticky .sidebar__logo img {
        width: 48px;
    }

    .sidebar--sticky .sidebar__nav {
        flex: 0;
        flex-direction: row;
    }

    .sidebar--sticky .sidebar__nav ul {
        flex-direction: row;
        align-items: center;
    }

    .sidebar--sticky .sidebar__nav li {
        border-bottom: none;
    }

    .sidebar--sticky .sidebar__nav li a {
        padding: 8px 14px;
        font-size: 12px;
    }

    .sidebar--sticky .sidebar__nav li a::after {
        display: none;
    }

    .sidebar--sticky .nav-num {
        display: none;
    }

    .sidebar--sticky .sidebar__footer {
        display: none;
    }

    .main {
        margin-top: 0;
        flex: 1;
        height: 100vh;
        overflow-y: auto;
    }

    .hero {
        height: 100vh;
    }

    .hero__logo {
        width: 340px;
    }

    .hero__cta {
        font-size: 14px;
        padding: 14px 28px 14px 36px;
    }

    .hero__cta-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .about__card {
        padding: 56px 64px;
        max-width: 620px;
    }

    .about__card p {
        font-size: 17px;
    }

    .about__logo {
        width: 130px;
    }

    .about__tagline {
        font-size: 28px;
    }

    .info__section {
        height: 100vh;
        min-height: unset;
        overflow: hidden;
        background-size: 62% 100%;
        background-position: right center;
        background-repeat: no-repeat;
        background-attachment: unset;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: calc(50% + 32px);
        padding-right: 64px;
    }

    .info__photo {
        position: absolute;
        top: 32px;
        left: 72px;
        right: calc(50% + 24px);
        bottom: 32px;
        width: auto;
        height: calc(100% - 64px);
        object-fit: cover;
        border-radius: 10px;
        margin: 0;
    }

    .info__content {
        flex: none;
        width: 100%;
        gap: 32px;
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .info__title {
        font-size: 28px;
    }

    .info__icon {
        width: 56px;
    }

    .info__stat strong {
        font-size: 56px;
    }

    .info__stat span {
        font-size: 18px;
    }

    .info__cta {
        font-size: 14px;
        padding: 16px 44px;
    }

    .ubicacion {
        flex-direction: row;
        height: 100vh;
        min-height: unset;
        align-items: stretch;
    }

    .ubicacion__map {
        flex: 1;
        padding: 0;
        align-items: center;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .ubicacion__map img {
        max-width: 820px;
        height: 100%;
        object-fit: contain;
    }

    .ubicacion__text {
        width: 34%;
        flex: none;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        padding: 60px 80px 60px 20px;
        text-align: right;
        gap: 20px;
    }

    .ubicacion__heading {
        font-size: 52px;
    }

    .ubicacion__city {
        font-size: 100px;
    }

    .masterplan__text {
        bottom: 44px;
        left: 44px;
        transform: none;
        text-align: left;
        width: auto;
    }

    .masterplan__title {
        font-size: 60px;
    }

    .masterplan__stats {
        font-size: 20px;
    }

    .amenidades {
        padding: 80px 64px;
        gap: 52px;
    }

    .amenidades__row {
        display: flex;
        justify-content: flex-start;
        gap: 36px 56px;
    }

    .amenidades__row:last-of-type .amenidades__item:last-child {
        grid-column: auto;
        justify-self: auto;
    }

    .amenidades__item {
        width: 130px;
        flex: 0 0 auto;
    }

    .amenidades__item img {
        width: 100px;
        height: 100px;
    }

    .amenidades__item span {
        font-size: 20px;
    }

    .puntos {
        padding: 64px 48px 64px 72px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .puntos__layout {
        flex-direction: row;
        align-items: center;
        gap: 48px;
        min-height: 0;
        width: 100%;
    }

    .puntos__info {
        width: 36%;
        flex-shrink: 0;
        align-items: flex-start;
        justify-content: center;
        gap: 40px;
        padding: 0;
    }

    .puntos__title {
        font-size: clamp(40px, 4vw, 68px);
        text-align: left;
    }

    .puntos__cats {
        gap: 28px;
        align-items: flex-start;
        width: 100%;
    }

    .puntos__cat {
        align-items: flex-start;
    }

    .puntos__cat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 4px;
    }

    .puntos__cat-name {
        font-size: 13px;
        text-align: left;
    }

    .puntos__list {
        text-align: left;
    }

    .puntos__list li {
        justify-content: flex-start;
    }

    .puntos__num,
    .puntos__place,
    .puntos__time {
        font-size: 14px;
    }

    .puntos__map-wrap {
        flex: 1;
        border-radius: 14px;
        min-height: 0;
        max-height: calc(100vh - 128px);
        align-self: center;
    }

    .puntos__map-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center left;
        border-radius: 14px;
    }

    .modelos {
        height: 100vh;
        min-height: unset;
    }

    .modelos__slide {
        padding: 80px 64px 100px;
        padding-right: calc(50% + 16px);
        gap: 22px;
    }

    .modelos__photo {
        position: absolute;
        top: 52px;
        right: 56px;
        bottom: 100px;
        width: calc(50% - 72px);
        height: calc(100% - 52px - 100px);
        object-fit: cover;
        border-radius: 10px;
        margin-top: 0;
    }

    .modelos__specs-col li {
        font-size: 20px;
    }

    .modelos__nav {
        bottom: 32px;
    }

    .modelos__dot {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .modelos__arrow {
        width: 44px;
        height: 44px;
    }

    .contacto {
        flex-direction: row;
        height: 100vh;
        min-height: unset;
    }

    .contacto__photo {
        width: 50%;
        height: 100%;
        min-height: unset;
        flex: none;
        padding: 32px;
    }

    .contacto__photo-overlay {
        inset: 32px;
        border-radius: 14px;
        padding-top: 32px;
        transform: translate(-30%);
    }

    .contacto__img {
        border-radius: 14px;
    }

    .contacto__form-side {
        flex: 1;
        padding: 60px 80px;
    }

    .contacto__photo-logo {
        width: 130px;
    }

    .contacto__photo-tagline {
        font-size: 30px;
    }

    .contacto__title {
        font-size: 22px;
    }
}

/*=============================================
    FOOTER
==============================================*/
.footer {
    background-color: #1a1918;
    /* border-top: 2px solid #c4621d; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
}

.footer__logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__logo-savia {
    width: 48px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.footer__logo-celsius {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-style: italic;
    text-align: center;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .footer {
        flex-direction: row;
        align-items: center;
        padding: 20px 48px;
        gap: 32px;
    }

    .footer__disclaimer {
        flex: 1;
        text-align: center;
        font-size: 16px;
    }
}

/*=============================================
    WHATSAPP FAB
==============================================*/
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}

.whatsapp-fab svg {
    width: 30px;
    height: 30px;
}

/*=============================================
    CONTACTO — SOCIAL ICONS
==============================================*/
.contacto__social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.contacto__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c4621d;
    color: #fff;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contacto__social-link:hover {
    background-color: #a44e14;
    transform: scale(1.1);
}

.contacto__social-link svg {
    width: 18px;
    height: 18px;
}

/* — Drawer abierto (siempre al final para ganar la cascada) — */
.sidebar--open {
    width: var(--sidebar-width);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 28px;
    background-color: rgba(242, 237, 232, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.sidebar--open .sidebar__logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 48px;
}

.sidebar--open .sidebar__logo img {
    width: 80px;
}

.sidebar--open .hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
}

.sidebar--open .hamburger span {
    background-color: var(--color-brown);
}

.sidebar--open .sidebar__nav {
    display: flex;
    flex: 1;
    width: 100%;
    flex-direction: column;
}

.sidebar--open .sidebar__footer {
    display: flex;
}
