/* ===================================
   RESET Y BASE
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    width: 100%;
    min-height: 100vh;
    background-image: url('img/banner-blend.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Badge PRE LANZAMIENTO */
.pre-launch-badge {
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #0a345f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 0 50px 50px 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Lado izquierdo */
.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Lado derecho - Formulario */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-card {
    background-color: rgba(10, 52, 95, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 35px 35px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-logo {
    text-align: center;
    margin-bottom: 25px;
}

.form-logo img {
    max-width: 220px;
    height: auto;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.form-group input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.form-group input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Phone Input */
.phone-input {
    position: relative;
    display: flex;
    align-items: center;
}

.country-code {
    position: absolute;
    left: 15px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    pointer-events: none;
    z-index: 1;
}

.phone-input input {
    padding-left: 80px;
    width: 100%;
}

/* Submit Button */
.form-submit {
    background: linear-gradient(135deg, #6a9ad4 0%, #4a7cb8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(106, 154, 212, 0.4);
}

.form-submit:hover {
    background: linear-gradient(135deg, #4a7cb8 0%, #3a6ca8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 154, 212, 0.5);
}

.form-submit:active {
    transform: translateY(0);
}


/* ===================================
   FRANJA DE UBICACIÓN
   =================================== */
.location-bar {
    width: 100%;
    background-color: #0a345f;
    padding: 20px 60px;
}

.location-bar-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-logo img {
    height: 50px;
    display: block;
}

.location-address {
    color: #ffffff;
}

.location-address p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ===================================
   SECCIÓN DESCRIPCIÓN
   =================================== */
.descripcion-section {
    width: 100%;
    background-color: #ffffff;
    padding: 0;
}

.descripcion-container {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    min-height: 600px;
}

.descripcion-left {
    position: relative;
    overflow: hidden;
}

.descripcion-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 52, 95, 0.4);
    z-index: 1;
}

.distrito-tag {
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #ffffff;
    color: #0a345f;
    font-size: 22px;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 0 50px 50px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.descripcion-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.descripcion-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.descripcion-content {
    width: 100%;
    max-width: 550px;
}

.descripcion-titulo {
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.titulo-light {
    font-size: 42px;
    font-weight: 400;
    font-style: italic;
    color: #0a345f;
    display: block;
}

.titulo-bold {
    font-size: 52px;
    font-weight: 800;
    color: #0a345f;
    display: block;
}

.descripcion-texto {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0 0 20px 0;
    text-align: justify;
}

.descripcion-features {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0 35px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item img {
    width: 50px;
    height: 50px;
    display: block;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-label {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.2;
}

.feature-value {
    font-size: 18px;
    font-weight: 700;
    color: #0a345f;
    margin: 0;
    line-height: 1.2;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0a345f 0%, #1a4a7f 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 52, 95, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a4a7f 0%, #0a345f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 52, 95, 0.4);
}


/* ===================================
   SECCIÓN GALERÍAS
   =================================== */
.galerias-section {
    width: 100%;
    background-color: #f8f8f8;
    padding: 80px 60px;
}

.galerias-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.galerias-titulo {
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #0a345f;
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.3;
}

.galeria-wrapper {
    margin-bottom: 50px;
}

.galeria-wrapper:last-of-type {
    margin-bottom: 40px;
}

.galeria-header {
    text-align: center;
    margin-bottom: 30px;
}

.galeria-tab {
    display: inline-block;
    background-color: #0a345f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 60px;
    border-radius: 50px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(10, 52, 95, 0.3);
}

.galeria-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.galeria-imagen-container {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.galeria-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-arrow {
    background-color: #0a345f;
    color: #ffffff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 52, 95, 0.3);
    flex-shrink: 0;
}

.galeria-arrow:hover {
    background-color: #1a4a7f;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(10, 52, 95, 0.4);
}

.galeria-arrow svg {
    width: 40px;
    height: 40px;
}

.galeria-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.galeria-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.galeria-dot.active {
    background-color: #0a345f;
    width: 40px;
    border-radius: 6px;
}

.brochure-button {
    display: block;
    margin: 0 auto;
    width: fit-content;
    background-color: #0a345f;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 52, 95, 0.3);
}

.brochure-button:hover {
    background-color: #1a4a7f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 52, 95, 0.4);
}


/* ===================================
   SECCIÓN ÁREAS COMUNES
   =================================== */
.areas-comunes-section {
    width: 100%;
    background-image: url('img/fondo-azul-blend.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 60px;
    position: relative;
}

.areas-comunes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 52, 95, 0.3) 0%, rgba(26, 74, 127, 0.3) 100%);
    z-index: 1;
}

.areas-comunes-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.areas-comunes-titulo {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 60px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.areas-comunes-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 40px;
    align-items: start;
}

.area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.area-icono {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-icono img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.area-nombre {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}


/* ===================================
   SECCIÓN UBICACIÓN CÉNTRICA
   =================================== */
.ubicacion-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 60px;
}

.ubicacion-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ubicacion-titulo {
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #0a345f;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.ubicacion-texto {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}


/* ===================================
   SECCIÓN PLANOS
   =================================== */
.planos-section {
    background: #f5f7f8;
    padding: 80px 60px;
}

.planos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.planos-titulo {
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #0a345f;
    margin: 0 0 60px 0;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: center;
}

.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: #0a345f;
    border: 2px solid #0a345f;
    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: all 0.3s ease;
    z-index: 10001;
}

.planos-modal-prev {
    left: 30px;
}

.planos-modal-next {
    right: 30px;
}


/* ===================================
   SECCIÓN PLANO DE UBICACIÓN
   =================================== */
.plano-section {
    width: 100%;
    background: #0a345f;
    padding: 80px 60px;
}

.plano-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.plano-imagen-wrapper {
    flex: 1;
    max-width: 900px;
}

.plano-imagen {
    width: 100%;
    height: auto;
    display: block;
}

.plano-botones {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plano-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: transparent;
    color: #ffffff;
    border: 3px solid #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 220px;
}

.plano-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.plano-button:hover {
    background-color: #ffffff;
    color: #0a345f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}


/* ===================================
   POPUP DE ÉXITO
   =================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
}

.mensaje-exito-popup {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    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;
}

.mensaje-exito-titulo {
    font-size: 28px;
    font-weight: 700;
    color: #0a345f;
    margin-bottom: 15px;
}

.mensaje-exito-texto {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}


/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 1024px) {
    .hero {
        padding: 40px 40px;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-title {
        font-size: 56px;
    }

    .form-card {
        padding: 40px 35px;
    }

    .galerias-section {
        padding: 60px 40px;
    }

    .galerias-titulo {
        font-size: 36px;
    }

    .galeria-imagen-container {
        max-width: 800px;
    }

    .areas-comunes-section {
        padding: 60px 40px;
        background-attachment: scroll;
    }

    .areas-comunes-titulo {
        font-size: 36px;
    }

    .areas-comunes-grid {
        gap: 30px;
    }

    .ubicacion-section {
        padding: 60px 40px;
    }

    .ubicacion-titulo {
        font-size: 36px;
    }

    .ubicacion-texto {
        font-size: 17px;
    }

    .planos-section {
        padding: 60px 40px;
    }

    .planos-titulo {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .filter-btn {
        font-size: 15px;
        padding: 12px 35px;
    }

    .option-btn {
        font-size: 14px;
        padding: 10px 25px;
        min-width: 120px;
    }

    .plano-display {
        max-width: 600px;
    }

    .plano-section {
        padding: 60px 40px;
    }

    .plano-container {
        gap: 40px;
    }

    .plano-button {
        min-width: 200px;
        padding: 16px 35px;
        font-size: 15px;
    }
}


/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 768px) {
    .hero {
        background-image: url('img/banner-blend-mobile.webp');
        padding: 30px 20px;
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .pre-launch-badge {
        top: 20px;
        font-size: 12px;
        padding: 10px 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
        align-items: center;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .form-card {
        padding: 30px 28px;
        max-width: 100%;
    }

    .form-logo img {
        max-width: 200px;
    }

    .location-bar {
        padding: 15px 20px;
    }

    .location-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .location-logo img {
        height: 40px;
    }

    .location-address p {
        font-size: 14px;
    }

    .descripcion-container {
        grid-template-columns: 1fr;
    }

    .descripcion-left {
        min-height: 400px;
    }

    .distrito-tag {
        top: 20px;
        font-size: 14px;
        padding: 12px 30px;
    }

    .descripcion-right {
        padding: 50px 30px;
    }

    .titulo-light {
        font-size: 32px;
    }

    .titulo-bold {
        font-size: 42px;
    }

    .descripcion-texto {
        font-size: 15px;
    }

    .descripcion-features {
        gap: 30px;
        justify-content: center;
    }

    .feature-item img {
        width: 45px;
        height: 45px;
    }

    .feature-label {
        font-size: 12px;
    }

    .feature-value {
        font-size: 16px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 15px;
    }

    .galerias-section {
        padding: 50px 30px;
    }

    .galerias-titulo {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .galeria-tab {
        font-size: 16px;
        padding: 14px 45px;
    }

    .galeria-slider {
        gap: 15px;
    }

    .galeria-imagen-container {
        max-width: 100%;
        border-radius: 15px;
    }

    .galeria-arrow {
        width: 50px;
        height: 50px;
    }

    .galeria-arrow svg {
        width: 32px;
        height: 32px;
    }

    .brochure-button {
        padding: 16px 40px;
        font-size: 15px;
    }

    .areas-comunes-section {
        padding: 50px 30px;
        background-attachment: scroll;
    }

    .areas-comunes-titulo {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .areas-comunes-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .area-icono {
        width: 60px;
        height: 60px;
    }

    .area-nombre {
        font-size: 14px;
    }

    .ubicacion-section {
        padding: 50px 30px;
    }

    .ubicacion-titulo {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .ubicacion-texto {
        font-size: 16px;
    }

    .planos-section {
        padding: 50px 30px;
    }

    .planos-titulo {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .planos-modal-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .planos-modal-prev,
    .planos-modal-next {
        width: 60px;
        height: 60px;
    }

    .planos-modal-prev {
        left: 15px;
    }

    .planos-modal-next {
        right: 15px;
    }

    .plano-section {
        padding: 50px 30px;
    }

    .plano-container {
        flex-direction: column;
        gap: 40px;
    }

    .plano-imagen-wrapper {
        max-width: 100%;
    }

    .plano-botones {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .plano-button {
        flex: 1;
        min-width: auto;
        padding: 16px 30px;
        font-size: 14px;
    }

    .plano-button svg {
        width: 20px;
        height: 20px;
    }
}


/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */

@media (max-width: 480px) {
    .hero {
        padding: 30px 15px;
    }

    .pre-launch-badge {
        top: 15px;
        font-size: 10px;
        padding: 8px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .form-card {
        padding: 25px 22px;
    }

    .form-group input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .phone-input input {
        padding-left: 75px;
    }

    .form-submit {
        padding: 14px 25px;
        font-size: 15px;
    }

    .mensaje-exito-popup {
        padding: 30px 25px;
    }

    .mensaje-exito-titulo {
        font-size: 24px;
    }

    .mensaje-exito-texto {
        font-size: 15px;
    }

    .location-bar {
        padding: 12px 15px;
    }

    .location-logo img {
        height: 35px;
    }

    .location-address p {
        font-size: 12px;
    }

    .descripcion-left {
        min-height: 350px;
    }

    .distrito-tag {
        top: 15px;
        font-size: 12px;
        padding: 10px 22px;
    }

    .descripcion-right {
        padding: 40px 20px;
    }

    .titulo-light {
        font-size: 28px;
    }

    .titulo-bold {
        font-size: 36px;
    }

    .descripcion-texto {
        font-size: 14px;
    }

    .descripcion-features {
        gap: 25px;
        margin: 30px 0 25px 0;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-item img {
        width: 40px;
        height: 40px;
    }

    .feature-label {
        font-size: 11px;
    }

    .feature-value {
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .galerias-section {
        padding: 40px 20px;
    }

    .galerias-titulo {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .galeria-wrapper {
        margin-bottom: 35px;
    }

    .galeria-tab {
        font-size: 14px;
        padding: 12px 35px;
    }

    .galeria-slider {
        gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .galeria-imagen-container {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
        width: 100%;
        order: 0;
    }

    .galeria-arrow {
        width: 45px;
        height: 45px;
    }

    .galeria-prev {
        order: 1;
    }

    .galeria-next {
        order: 1;
    }

    .galeria-arrow svg {
        width: 28px;
        height: 28px;
    }

    .galeria-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .galeria-dot {
        width: 10px;
        height: 10px;
    }

    .galeria-dot.active {
        width: 30px;
    }

    .brochure-button {
        padding: 14px 35px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .areas-comunes-section {
        padding: 40px 20px;
        background-attachment: scroll;
    }

    .areas-comunes-titulo {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .areas-comunes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .area-icono {
        width: 70px;
        height: 70px;
    }

    .area-nombre {
        font-size: 13px;
    }

    .ubicacion-section {
        padding: 40px 20px;
    }

    .ubicacion-titulo {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .ubicacion-texto {
        font-size: 15px;
    }

    .planos-section {
        padding: 40px 20px;
    }

    .planos-titulo {
        font-size: 22px;
        margin-bottom: 25px;
        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 {
        position: static;
        width: 50px;
        height: 50px;
        transform: none;
        order: 1;
    }

    .plano-fullscreen {
        display: flex;
        background: transparent;
        color: #0a345f;
        border: 2px solid #0a345f;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        position: static;
        order: 1;
    }

    .plano-fullscreen svg {
        stroke: currentColor;
    }

    /* 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-top {
    background-color: #fff;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone {
    font-size: 20px;
    font-weight: 600;
    color: #0a345f;
    margin: 0;
}

.footer-address {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    background-color: #3a3a3a;
    padding: 20px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-phone {
        font-size: 18px;
    }

    .footer-address {
        font-size: 14px;
    }

    .footer-logos {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 30px 15px;
        gap: 25px;
    }

    .footer-phone {
        font-size: 16px;
    }

    .footer-address {
        font-size: 13px;
    }

    .footer-logos {
        gap: 20px;
    }

    .footer-logo {
        height: 35px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}