/* =============================================
   ZENNA - LANDING PAGE STYLES
   Color Principal: #a76330 (Terracota)
   ============================================= */

/* =============================================
   RESET Y BASE
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* =============================================
   HEADER FLOTANTE
   ============================================= */

.header-flotante {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

.btn-contacto {
    background-color: #000000;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-contacto:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: #000000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #333333;
    transform: translateY(-2px);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 80px 40px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
}

/* Fondo parallax con edificio */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/edificio-zenna.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}

/* Badge PRE-LANZAMIENTO debajo del formulario */
.pre-lanzamiento-badge {
    position: absolute;
    bottom: 0;
    right: 40px;
    background-color: transparent;
    color: #a76330;
    padding: 0;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 10;
    line-height: 1;
}

/* Edificio principal pegado a la izquierda y abajo */
.hero-edificio {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 85vh;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

/* Árbol en la parte inferior */
.hero-arbol {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200px;
    width: auto;
    object-fit: contain;
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 60px;
    padding-right: 100px;
    z-index: 5;
}

.hero-right {
    flex: 0 0 450px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

/* =============================================
   FORMULARIO
   ============================================= */

.form-card {
    background-color: #F0F1F2;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.form-titulo {
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    color: #a76330;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-bottom: 2px solid #999999;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #a76330;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    background-color: #a76330;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(167, 99, 48, 0.3);
}

.form-submit:hover {
    background-color: #8f5227;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 99, 48, 0.4);
}

/* =============================================
   SECCIÓN UBICACIÓN
   ============================================= */

.ubicacion-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 40px;
    overflow: hidden;
}

.ubicacion-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ubicacion-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Línea decorativa horizontal */
.ubicacion-linea {
    position: absolute;
    top: 100px;
    left: 40px;
    width: 600px;
    height: 3px;
    background-color: #99A46E;
}

/* Dirección superior derecha */
.ubicacion-direccion {
    position: absolute;
    top: 100px;
    right: 40px;
    font-size: 22px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Contenido de texto */
.ubicacion-texto {
    max-width: 800px;
    text-align: center;
}

.ubicacion-titulo {
    font-size: 48px;
    font-weight: 700;
    color: #99A46E;
    margin: 0 0 40px 0;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: start;
}

.ubicacion-parrafo {
    font-size: 18px;
    font-weight: 400;
    color: #404040;
    line-height: 1.8;
    margin: 0 0 25px 0;
    text-align: start;
}

/* Árbol inferior izquierdo */
.ubicacion-arbol {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 250px;
    width: auto;
    object-fit: contain;
}

/* Distrito inferior derecho */
.ubicacion-distrito {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 72px;
    font-weight: 700;
    color: #99A46E;
    margin: 0;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
}

/* =============================================
   SECCIÓN CARACTERÍSTICAS
   ============================================= */

.caracteristicas-section {
    background-image: url('img/fondo-zenna.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 40px;
}

.caracteristicas-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.caracteristicas-left {
    flex: 0 0 auto;
}

.caracteristicas-titulo {
    font-size: 72px;
    font-weight: 400;
    color: #a76330;
    margin: 0 0 10px 0;
    line-height: 1.1;
    letter-spacing: 2px;
    text-align: center;
}

.caracteristicas-titulo .titulo-segundo-color {
    color: #b98256;
    text-align: center;
}

.caracteristicas-subtitulo {
    font-size: 18px;
    font-weight: 400;
    color: #a76330;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.caracteristicas-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

.caracteristica-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.caracteristica-icono {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.caracteristica-icono img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.caracteristica-texto {
    font-size: 16px;
    font-weight: 400;
    color: #a76330;
    margin: 0;
    line-height: 1.4;
}

/* =============================================
   SECCIÓN ÁREAS COMUNES
   ============================================= */

.areas-comunes-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.areas-comunes-container {
    max-width: 900px;
    margin: 0 auto;
}

.areas-comunes-titulo {
    font-size: 42px;
    font-weight: 700;
    color: #a76330;
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: 1px;
}

.areas-comunes-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 0;
}

.collage-item {
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-brochure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: #a76330;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 20px 50px;
    border: 3px solid #a76330;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.btn-brochure:hover {
    background-color: #a76330;
    color: white;
    box-shadow: 0 6px 25px rgba(167, 99, 48, 0.4);
    transform: translate(-50%, -50%) scale(1.05);
}

/* Galería Modal */
.galeria-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.galeria-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.galeria-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.galeria-counter {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}

.galeria-close,
.galeria-prev,
.galeria-next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    color: #a76330;
    border: none;
    font-size: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 700;
}

.galeria-close {
    top: 20px;
    right: 20px;
}

.galeria-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.galeria-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.galeria-close:hover,
.galeria-prev:hover,
.galeria-next:hover {
    background-color: #a76330;
    color: white;
}

/* =============================================
   MAPA / UBICACIÓN
   ============================================= */

.mapa-section {
    position: relative;
    padding: 80px 40px;
    background-color: #f8f8f8;
}

.mapa-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.mapa-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mapa-left {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mapa-icono {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.mapa-titulo {
    font-size: 56px;
    font-weight: 700;
    color: #BEBFBE;
    line-height: 1.1;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mapa-direccion {
    font-size: 18px;
    font-weight: 600;
    color: #404040;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.mapa-botones {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mapa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 3px solid #a76330;
}

.mapa-btn svg {
    width: 24px;
    height: 24px;
}

.mapa-btn-maps {
    background-color: white;
    color: #a76330;
}

.mapa-btn-maps:hover {
    background-color: #a76330;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 99, 48, 0.3);
}

.mapa-btn-waze {
    background-color: white;
    color: #a76330;
}

.mapa-btn-waze:hover {
    background-color: #a76330;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 99, 48, 0.3);
}

.mapa-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mapa-imagen {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* =============================================
   PLANOS
   ============================================= */

.planos-section {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

.planos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.planos-titulo {
    font-size: 48px;
    font-weight: 700;
    color: #a76330;
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: 1px;
}

.planos-display-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.planos-display {
    flex: 1;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 600px;
    cursor: grab;
    user-select: none;
}

.planos-display:active {
    cursor: grabbing;
}

.plano-imagen {
    max-width: 100%;
    max-height: 700px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    pointer-events: none;
}

.plano-prev,
.plano-next {
    background: transparent;
    color: #a76330;
    border: 2px solid #a76330;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.plano-fullscreen {
    display: none;
}

.plano-prev svg,
.plano-next svg {
    stroke: currentColor;
}

/* Modal de Planos (Lightbox) */
.planos-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.planos-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planos-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}

.planos-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease;
    font-weight: 300;
    line-height: 1;
    z-index: 10001;
}

.planos-modal-prev,
.planos-modal-next {
    position: absolute;
    background: transparent;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease;
    z-index: 10001;
}

.planos-modal-prev {
    left: 30px;
}

.planos-modal-next {
    right: 30px;
}

/* =============================================
   POPUP DE ÉXITO
   ============================================= */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
}

.mensaje-exito-popup {
    background-color: white;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-overlay.active .mensaje-exito-popup {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #333;
}

.mensaje-exito-icono {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.mensaje-exito-titulo {
    font-size: 28px;
    font-weight: 700;
    color: #a76330;
    margin-bottom: 15px;
}

.mensaje-exito-texto {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* =============================================
   RESPONSIVE - TABLET (1024px)
   ============================================= */

@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
        gap: 35px;
    }

    .btn-contacto {
        padding: 10px 25px;
        font-size: 13px;
    }

    .hero {
        padding: 70px 30px 0;
    }

    .pre-lanzamiento-badge {
        bottom: 0;
        right: 30px;
        font-size: 40px;
        letter-spacing: 2.5px;
    }

    .hero-edificio {
        height: 75vh;
    }

    .hero-arbol {
        left: 300px;
        height: 170px;
    }

    .hero-content {
        padding-bottom: 50px;
        padding-right: 80px;
    }

    .hero-right {
        flex: 0 0 400px;
    }

    .form-card {
        padding: 35px 30px;
    }

    .form-titulo {
        font-size: 26px;
    }

    /* Ubicación responsive */
    .ubicacion-section {
        padding: 80px 30px;
    }

    .ubicacion-linea {
        width: 500px;
        top: 80px;
        left: 30px;
    }

    .ubicacion-direccion {
        font-size: 20px;
        top: 80px;
        right: 30px;
    }

    .ubicacion-texto {
        max-width: 700px;
    }

    .ubicacion-titulo {
        font-size: 42px;
        margin-bottom: 35px;
    }

    .ubicacion-parrafo {
        font-size: 17px;
    }

    .ubicacion-arbol {
        height: 220px;
    }

    .ubicacion-distrito {
        font-size: 64px;
    }

    /* Características responsive */
    .caracteristicas-section {
        padding: 80px 30px;
    }

    .caracteristicas-container {
        gap: 60px;
    }

    .caracteristicas-titulo {
        font-size: 60px;
    }

    .caracteristicas-subtitulo {
        font-size: 16px;
    }

    .caracteristicas-grid {
        gap: 35px 50px;
    }

    .caracteristica-icono {
        width: 120px;
        height: 120px;
    }

    .caracteristica-icono img {
        width: 120px;
        height: 120px;
    }

    .caracteristica-texto {
        font-size: 15px;
    }

    /* Áreas comunes responsive */
    .areas-comunes-section {
        padding: 70px 30px;
    }

    .areas-comunes-titulo {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .areas-comunes-collage {
        grid-template-rows: repeat(3, 200px);
    }

    .btn-brochure {
        font-size: 16px;
        padding: 18px 45px;
    }

    /* Mapa responsive */
    .mapa-section {
        padding: 60px 30px;
    }

    .mapa-content {
        gap: 40px;
    }

    .mapa-left {
        flex: 0 0 350px;
        gap: 20px;
    }

    .mapa-icono {
        width: 70px;
        height: 70px;
    }

    .mapa-titulo {
        font-size: 48px;
    }

    .mapa-direccion {
        font-size: 17px;
    }

    .mapa-btn {
        padding: 16px 35px;
        font-size: 15px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE (768px)
   ============================================= */

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .btn-contacto {
        padding: 10px 25px;
        font-size: 12px;
    }

    .header-social {
        gap: 15px;
    }

    .hero {
        padding: 120px 20px 0;
        min-height: auto;
        align-items: center;
        justify-content: center;
    }

    .hero-background {
        opacity: 0.1;
    }

    .pre-lanzamiento-badge {
        bottom: 0;
        right: 20px;
        font-size: 28px;
        letter-spacing: 2px;
        text-align: right;
    }

    .hero-edificio {
        height: 50vh;
        left: -50px;
    }

    .hero-arbol {
        left: 200px;
        height: 120px;
    }

    .hero-content {
        flex-direction: column;
        padding-bottom: 40px;
        padding-right: 0;
        z-index: 10;
    }

    .hero-right {
        flex: none;
        width: 100%;
        max-width: 500px;
        padding-top: 0;
    }

    .form-card {
        padding: 30px 25px;
        background-color: rgba(240, 241, 242, 0.75);
    }

    .form-titulo {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .form-submit {
        padding: 14px 35px;
        font-size: 15px;
    }

    .mensaje-exito-popup {
        padding: 35px 40px;
    }

    .mensaje-exito-titulo {
        font-size: 24px;
    }

    .mensaje-exito-texto {
        font-size: 15px;
    }

    /* Ubicación responsive */
    .ubicacion-section {
        padding: 60px 20px;
    }

    .ubicacion-content {
        min-height: 600px;
    }

    .ubicacion-linea {
        width: 400px;
        top: 60px;
        left: 20px;
    }

    .ubicacion-direccion {
        font-size: 18px;
        right: 20px;
        top: 60px;
        text-align: right;
        max-width: 250px;
    }

    .ubicacion-texto {
        max-width: 90%;
    }

    .ubicacion-titulo {
        font-size: 32px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .ubicacion-parrafo {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .ubicacion-arbol {
        display: none;
    }

    .ubicacion-distrito {
        font-size: 48px;
        letter-spacing: 3px;
    }

    /* Características responsive */
    .caracteristicas-section {
        padding: 60px 20px;
    }

    .caracteristicas-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .caracteristicas-titulo {
        font-size: 48px;
    }

    .caracteristicas-subtitulo {
        font-size: 15px;
    }

    .caracteristicas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    .caracteristica-icono {
        width: 110px;
        height: 110px;
    }

    .caracteristica-icono img {
        width: 110px;
        height: 110px;
    }

    .caracteristica-texto {
        font-size: 14px;
    }

    /* Áreas comunes responsive */
    .areas-comunes-section {
        padding: 60px 20px;
    }

    .areas-comunes-container {
        max-width: 100%;
    }

    .areas-comunes-titulo {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .areas-comunes-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 180px);
    }

    .collage-item-9 {
        grid-column: 1 / -1;
    }

    .btn-brochure {
        font-size: 15px;
        padding: 16px 40px;
    }

    .galeria-close {
        top: 10px;
        right: 10px;
        font-size: 40px;
        width: 45px;
        height: 45px;
    }

    .galeria-prev,
    .galeria-next {
        display: none;
    }

    /* Mapa responsive */
    .mapa-section {
        padding: 50px 20px;
    }

    .mapa-content {
        flex-direction: column;
        gap: 40px;
    }

    .mapa-left {
        flex: none;
        width: 100%;
        align-items: center;
        gap: 20px;
    }

    .mapa-icono {
        width: 60px;
        height: 60px;
    }

    .mapa-titulo {
        font-size: 38px;
    }

    .mapa-direccion {
        font-size: 16px;
        text-align: center;
    }

    .mapa-botones {
        width: 100%;
        max-width: 400px;
        gap: 15px;
    }

    .mapa-btn {
        padding: 15px 30px;
        font-size: 15px;
    }

    .mapa-right {
        width: 100%;
    }

    /* Planos responsive */
    .planos-section {
        padding: 50px 20px;
    }

    .planos-titulo {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .planos-content {
        flex-direction: column;
        padding: 0;
        gap: 25px;
        background: transparent;
    }

    .planos-sidebar {
        flex: none;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        max-height: none;
        padding-right: 0;
        padding-bottom: 10px;
        gap: 10px;
    }

    .planos-sidebar::-webkit-scrollbar {
        height: 6px;
        width: auto;
    }

    .plano-btn {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 14px 20px;
        font-size: 14px;
        text-align: center;
    }

    .plano-btn:hover {
        transform: translateY(-2px);
    }

    .planos-display {
        min-height: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .plano-imagen {
        max-height: 700px;
        width: 100%;
        display: block;
    }
}

/* =============================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================= */

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .btn-contacto {
        padding: 8px 20px;
        font-size: 11px;
    }

    .hero {
        padding: 110px 15px 0;
    }

    .pre-lanzamiento-badge {
        bottom: 0;
        right: 15px;
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .hero-edificio {
        height: 45vh;
        left: -80px;
    }

    .hero-arbol {
        left: 150px;
        height: 100px;
    }

    .hero-content {
        padding-bottom: 30px;
    }

    .form-card {
        padding: 25px 20px;
        background-color: rgba(240, 241, 242, 0.7);
    }

    .form-titulo {
        font-size: 22px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .form-submit {
        padding: 12px 30px;
        font-size: 14px;
    }

    .mensaje-exito-popup {
        padding: 30px 25px;
    }

    .mensaje-exito-titulo {
        font-size: 22px;
    }

    .mensaje-exito-texto {
        font-size: 14px;
    }

    /* Ubicación responsive */
    .ubicacion-section {
        padding: 50px 15px;
    }

    .ubicacion-content {
        min-height: 550px;
    }

    .ubicacion-linea {
        width: 250px;
        top: 50px;
        left: 15px;
    }

    .ubicacion-direccion {
        font-size: 16px;
        max-width: 200px;
        line-height: 1.3;
        top: 50px;
        right: 15px;
    }

    .ubicacion-texto {
        max-width: 90%;
    }

    .ubicacion-titulo {
        font-size: 26px;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .ubicacion-parrafo {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .ubicacion-arbol {
        display: none;
    }

    .ubicacion-distrito {
        font-size: 36px;
        letter-spacing: 2px;
    }

    /* Características responsive */
    .caracteristicas-section {
        padding: 50px 15px;
    }

    .caracteristicas-container {
        gap: 40px;
    }

    .caracteristicas-titulo {
        font-size: 36px;
    }

    .caracteristicas-subtitulo {
        font-size: 14px;
    }

    .caracteristicas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        max-width: 400px;
    }

    .caracteristica-icono {
        width: 100px;
        height: 100px;
    }

    .caracteristica-icono img {
        width: 100px;
        height: 100px;
    }

    .caracteristica-texto {
        font-size: 13px;
    }

    /* Áreas comunes responsive */
    .areas-comunes-section {
        padding: 50px 15px;
    }

    .areas-comunes-titulo {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .areas-comunes-collage {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 160px);
    }

    .collage-item-9 {
        grid-column: auto;
    }

    .btn-brochure {
        font-size: 14px;
        padding: 14px 35px;
    }

    /* Mapa responsive */
    .mapa-section {
        padding: 40px 15px;
    }

    .mapa-content {
        gap: 30px;
    }

    .mapa-left {
        gap: 15px;
    }

    .mapa-icono {
        width: 50px;
        height: 50px;
    }

    .mapa-titulo {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .mapa-direccion {
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
    }

    .mapa-botones {
        max-width: 100%;
        gap: 12px;
    }

    .mapa-btn {
        padding: 14px 25px;
        font-size: 14px;
        gap: 10px;
        border-width: 2px;
    }

    .mapa-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Planos responsive */
    .planos-section {
        padding: 40px 15px;
    }

    .planos-titulo {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .planos-display-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .planos-display {
        padding: 0;
        min-height: auto;
        width: 100%;
        flex-basis: 100%;
        order: -1;
    }

    .plano-imagen {
        max-height: 500px;
        width: 100%;
        display: block;
    }

    .plano-prev,
    .plano-next,
    .plano-fullscreen {
        position: static;
        width: 50px;
        height: 50px;
        transform: none;
        order: 1;
    }

    .plano-fullscreen {
        display: flex;
        background: transparent;
        color: #a76330;
        border: 2px solid #a76330;
        cursor: pointer;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease, border-color 0.3s ease;
        flex-shrink: 0;
    }

    /* Modal responsive */
    .planos-modal {
        padding: 60px 10px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .planos-modal-content {
        max-width: 95vw;
        max-height: calc(100vh - 180px);
        width: 100%;
        flex-basis: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        order: -1;
    }

    .planos-modal-content img {
        max-height: calc(100vh - 180px);
        width: 100%;
        object-fit: contain;
    }

    .planos-modal-close {
        position: fixed;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .planos-modal-prev,
    .planos-modal-next {
        position: static;
        width: 50px;
        height: 50px;
        transform: none;
        order: 1;
    }

    .planos-modal-prev svg,
    .planos-modal-next svg {
        width: 35px;
        height: 35px;
    }
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    width: 100%;
}

.footer-main {
    background-color: rgb(208, 202, 194);
    padding: 60px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Logo Zenna */
.footer-logo {
    flex: 0 0 auto;
}

.footer-logo-imagen {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* WhatsApp */
.footer-whatsapp {
    flex: 0 0 auto;
}

.footer-whatsapp-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-whatsapp-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-whatsapp-link span {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Logos Empresas */
.footer-empresas {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 0 0 auto;
}

.footer-empresa-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Ubicación */
.footer-ubicacion {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    flex: 0 0 auto;
}

.footer-ubicacion svg {
    flex-shrink: 0;
}

.footer-ubicacion-texto {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-direccion {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.footer-distrito {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

/* Copyright */
.footer-copyright {
    background-color: #1a1a1a;
    padding: 20px 40px;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: white;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* =============================================
   RESPONSIVE - FOOTER TABLET (1024px)
   ============================================= */

@media (max-width: 1024px) {
    .footer-main {
        padding: 50px 30px;
    }

    .footer-container {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo-imagen {
        height: 70px;
    }

    .footer-whatsapp-link span {
        font-size: 20px;
    }

    .footer-empresa-logo {
        height: 45px;
    }

    .footer-direccion {
        font-size: 17px;
    }

    .footer-distrito {
        font-size: 15px;
    }
}

/* =============================================
   RESPONSIVE - FOOTER MOBILE (768px)
   ============================================= */

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .footer-logo-imagen {
        height: 60px;
    }

    .footer-whatsapp-link {
        justify-content: center;
    }

    .footer-whatsapp-link span {
        font-size: 18px;
    }

    .footer-empresas {
        gap: 25px;
        justify-content: center;
    }

    .footer-empresa-logo {
        height: 40px;
    }

    .footer-ubicacion {
        justify-content: center;
    }

    .footer-direccion {
        font-size: 16px;
    }

    .footer-distrito {
        font-size: 14px;
    }

    .footer-copyright {
        padding: 18px 20px;
    }

    .footer-copyright p {
        font-size: 14px;
    }
}

/* =============================================
   RESPONSIVE - FOOTER SMALL MOBILE (480px)
   ============================================= */

@media (max-width: 480px) {
    .footer-main {
        padding: 35px 15px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-logo-imagen {
        height: 50px;
    }

    .footer-whatsapp-link svg {
        width: 35px;
        height: 35px;
    }

    .footer-whatsapp-link span {
        font-size: 16px;
    }

    .footer-empresas {
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-empresa-logo {
        height: 35px;
    }

    .footer-ubicacion svg {
        width: 35px;
        height: 35px;
    }

    .footer-direccion {
        font-size: 15px;
    }

    .footer-distrito {
        font-size: 13px;
    }

    .footer-copyright {
        padding: 15px;
    }

    .footer-copyright p {
        font-size: 13px;
    }
}
