:root {
    --gold: #C5A059;
    --dark: #121212;
    --white: #ffffff;
}

* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; }

/* OVERLAY: Ahora solo con blur para el menú side */
.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
    z-index: 999; display: none;
}

/* NAVBAR */
.navbar {
    position: fixed; width: 100%; top: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; transition: 0.3s;
}
.logo img { height: 45px; cursor: pointer; }
.menu-hamburguesa { cursor: pointer; display: flex; flex-direction: column; gap: 6px; }
.menu-hamburguesa span { width: 30px; height: 2px; background: var(--white); transition: 0.3s; }

/* SIDE MENU */
.side-menu {
    position: fixed; right: -100%; top: 0; width: 300px; height: 100%;
    background: var(--dark); z-index: 1001; transition: 0.5s;
    padding: 100px 40px;
}
.side-menu.active { right: 0; }
.close-btn { position: absolute; top: 30px; left: 30px; font-size: 40px; color: white; background: none; border: none; cursor: pointer; }
.menu-links a { display: block; color: white; text-decoration: none; font-size: 1.5rem; margin-bottom: 25px; transition: 0.3s; }

/* HERO */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; top:0; left:0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 90%; max-width: 1000px; color: white; }
.hero-title { font-size: 3.5rem; font-weight: 600; }
.script-font { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }

/* SEARCH BOX */
.search-box { margin-top: 40px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 10px; border-radius: 15px; }
.tabs { display: flex; gap: 15px; padding-bottom: 10px; }
.tab { background: none; border: none; color: white; cursor: pointer; opacity: 0.6; padding: 5px 10px; }
.tab.active { opacity: 1; border-bottom: 2px solid var(--gold); }
.filter-main { background: white; border-radius: 10px; display: flex; padding: 5px; gap: 5px; }

.dropdown { flex: 1; position: relative; }
.drop-trigger { padding: 15px; color: #555; cursor: pointer; text-align: left; border-right: 1px solid #eee; font-size: 0.9rem; overflow: hidden; white-space: nowrap; }

/* MODALES: Sin blur de fondo, fondo blanco sólido premium */
.drop-modal {
    display: none; position: absolute; top: 110%; left: 0; width: 350px;
    background: white; border-radius: 10px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10; max-height: 400px; overflow-y: auto;
}
.grid-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.grid-opts span { padding: 10px; background: #f7f7f7; color: #333; border-radius: 5px; cursor: pointer; font-size: 0.8rem; transition: 0.2s; }
.grid-opts span:hover { background: var(--gold); color: white; }

.search-btn { background: var(--dark); color: white; border: none; padding: 0 30px; border-radius: 8px; cursor: pointer; }

/* MOBILE RESPONSIVE: Solución definitiva a la superposición */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .filter-main { flex-direction: column; }
    .drop-trigger { border-right: none; border-bottom: 1px solid #eee; }
    .drop-modal { 
        width: 100%; position: fixed; top: auto; bottom: 0; left: 0;
        border-radius: 20px 20px 0 0; z-index: 2000; /* Prioridad absoluta */
        animation: slideUp 0.3s ease;
    }
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }







/* Ajuste responsivo para que en móvil ocupe buen espacio */
@media (max-width: 768px) {
    .search-btn {
        width: 100%; /* Ocupa todo el ancho en celulares */
        padding: 18px;
        margin-top: 10px;
        font-size: 1.1rem;
    }
}













/* ESPACIADO Y TÍTULOS */
.properties-section {
    padding: 100px 0 60px 0; /* Espacio generoso arriba */
    background: #fff;
}

.title-group {
    padding-left: 5%;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.8rem;
    color: #121212;
    font-weight: 600;
}

.gold-text {
    color: var(--gold);
    font-size: 3.2rem; /* El toque dorado en la cursiva */
}

/* SLIDER HORIZONTAL (EL QUE TE GUSTÓ) */
.slider-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none;
}
.slider-container::-webkit-scrollbar { display: none; }

.property-slider {
    display: flex;
    gap: 20px;
    padding-left: 5%;
}

/* LA TARJETA QUE FUNCIONA */
.mini-card {
    min-width: 280px;
    max-width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex-shrink: 0;
    transition: 0.3s;
}

.mini-card:hover { transform: translateY(-5px); }

.card-img-wrapper {
    position: relative;
    height: 170px;
}
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.mini-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--gold); color: white;
    padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 600;
}
.mini-badge.renta { background: #121212; }

.card-body { padding: 15px; }
.mini-title { font-size: 1.1rem; color: #121212; margin-bottom: 5px; }
.mini-specs { font-size: 0.85rem; color: #777; margin-bottom: 15px; }

.mini-footer {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #eee; padding-top: 12px;
}
.mini-price { font-size: 1.1rem; font-weight: 600; }
.mini-btn {
    background: none; border: 1px solid var(--gold); color: var(--gold);
    padding: 6px 12px; border-radius: 5px; font-size: 0.8rem; cursor: pointer;
}























/* EL FONDO DESENFOCADO */
.full-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(20px); /* Desenfoque profundo */
    z-index: 5000;
    display: none;
    overflow-y: auto;
    padding: 40px 10px;
}

/* LA TARJETA CENTRAL */
.modal-card {
    background: white;
    width: 100%;
    max-width: 800px; /* Grande y central */
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.close-modal {
    position: absolute; top: 20px; right: 20px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: none;
    font-size: 24px; cursor: pointer; z-index: 100;
}

/* HERO DEL MODAL */
.modal-hero { height: 400px; position: relative; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-label {
    position: absolute; bottom: 20px; left: 30px;
    background: var(--gold); color: white;
    padding: 8px 20px; border-radius: 10px; font-weight: 600;
}

/* CUERPO DE INFORMACIÓN */
.modal-content-body { padding: 40px; }

.main-info h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 5px; }
.modal-location { color: #888; margin-bottom: 15px; }
.modal-price-tag { font-size: 2rem; color: var(--gold); font-weight: 700; margin-bottom: 30px; }

/* REJILLA DE SPECS */
.detailed-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.spec-group { display: flex; flex-direction: column; gap: 5px; }
.spec-label { font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.spec-value { font-size: 1rem; color: var(--dark); font-weight: 600; }

.modal-description h3 { margin-bottom: 15px; font-size: 1.3rem; }
.modal-description p { line-height: 1.8; color: #555; margin-bottom: 40px; }

/* BOTÓN WHATSAPP */
.whatsapp-button {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: #25D366; color: white; text-decoration: none;
    padding: 20px; border-radius: 15px; font-weight: 600; font-size: 1.1rem;
    transition: 0.3s;
}
.whatsapp-button svg { width: 24px; }
.whatsapp-button:hover { transform: scale(1.02); background: #20ba5a; }

@media (max-width: 768px) {
    .modal-hero { height: 250px; }
    .modal-content-body { padding: 25px; }
    .main-info h2 { font-size: 1.6rem; }
}











.slider-container {
    position: relative; /* Para que las flechas se posicionen respecto al contenedor */
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    transition: 0.3s;
    opacity: 0.8;
}

.nav-arrow:hover {
    opacity: 1;
    background: var(--gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev { left: 15px; }
.nav-arrow.next { right: 15px; }

/* Ocultar flechas en móviles pequeños para que no tapen la imagen */
@media (max-width: 768px) {
    .nav-arrow { display: none; }
}


















.achievements-section {
    background: #0f0f0f; /* Negro mate de lujo */
    padding: 100px 5%;
    color: white;
}

.achievements-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.achieve-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.number-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.counter {
    font-size: 4.5rem; /* Números grandes e imponentes */
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.plus {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 300;
    margin-left: 5px;
}

.achieve-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-top: 10px;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .counter { font-size: 3.5rem; }
    .plus { font-size: 2rem; }
}



















/* AJUSTES DE VISIBILIDAD EN MODAL */
.modal-hero {
    position: relative;
    overflow: hidden; /* Evita que la imagen se salga de su contenedor */
}

.modal-hero img {
    display: block; /* Quita espacios fantasma debajo de la imagen */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content-body {
    position: relative;
    background: white;
    z-index: 2; /* Asegura que el texto siempre esté por encima del fondo */
    margin-top: 0; /* Asegura que no se suba sobre la imagen */
}

.close-modal {
    z-index: 101; /* Un nivel por encima de todo para que siempre sea clickable */
}

@media (max-width: 768px) {
    .modal-hero {
        height: 200px; /* Un poco más pequeña en móvil para dar aire al texto */
    }
    .main-info h2 {
        margin-top: 10px; /* Espacio extra para el nombre en celulares */
    }
}



































/* --- SECCIÓN PRINCIPAL --- */
.captacion-full-section {
    padding: 100px 5%;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-attachment: fixed; /* Efecto Parallax */
    display: flex;
    justify-content: center;
}

.captacion-card-large {
    background: white;
    width: 100%;
    max-width: 850px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

/* --- HERO DE LA TARJETA --- */
.card-hero-banner {
    height: 280px;
    background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.hero-text-content { position: relative; z-index: 2; color: white; }
.gold-subtitle { color: #d4af37; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }
.main-card-title { font-size: 2.2rem; margin: 10px 0; font-weight: 600; }

/* --- CUERPO DEL FORMULARIO --- */
.card-form-content { padding: 40px 50px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: #666; }
.form-field input, .form-field select, .form-field textarea {
    padding: 12px; border: 1px solid #eee; border-radius: 10px;
    background: #fcfcfc; font-family: 'Poppins', sans-serif; transition: 0.3s;
}

.form-field input:focus { border-color: #d4af37; outline: none; background: white; }

/* --- EL BOTÓN DE LA BARRA VERDE (Restaurado) --- */
.btn-whatsapp-premium {
    width: 100%;
    background-color: #25D366; /* El verde que se había perdido */
    color: white !important;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-premium:hover { 
    background: #1da851; 
    transform: scale(1.02); 
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

/* --- BOTÓN WHATSAPP FLOTANTE (Strada Lab) --- */
.whatsapp-glass {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-glass:hover { background-color: #128C7E; color: white; }

.confidential-note { text-align: center; font-size: 0.75rem; color: #999; margin-top: 15px; }

/* --- RESPONSIVIDAD (Celulares) --- */
@media (max-width: 768px) {
    .captacion-full-section {
        padding: 40px 15px; /* Evita que la card se pegue a los bordes */
    }

    .card-hero-banner {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .card-form-content {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 15px;
    }

    .main-card-title {
        font-size: 1.6rem;
    }

    .captacion-card-large {
        border-radius: 20px;
    }
}









.main-footer {
    background: #0a0a0a;
    color: white;
    padding: 50px 5% 20px 5%;
    border-top: 1px solid rgba(197, 160, 89, 0.2); /* Línea dorada sutil */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
}

/* REDES SOCIALES */
.footer-socials {
    text-align: center;
}

.social-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

/* BOTTOM */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 0.5px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}

































/* PORTADA DE VIDEO - "Sabrosón" */
.video-hero-section {
    position: relative;
    height: 100vh; /* Ocupa toda la altura de la pantalla */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 60px; /* Para dejar espacio al header fijo */
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Oscuro para que resalte el texto */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-main-title {
    font-size: 4.5rem; /* Muy grande para impacto */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-description {
    font-size: 1.6rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
}

.btn-scroll-down {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-scroll-down:hover {
    background-color: #e0b466;
    transform: translateY(-3px);
}

/* SECCIÓN QUIÉNES SOMOS */
.who-we-are-section {
    padding: 100px 5%;
    background-color: white; /* Blanco para contraste con el video */
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-we-are-text {
    max-width: 600px;
}

.section-title-dark {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 15px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.who-we-are-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-primary-dark {
    display: inline-block;
    background-color: var(--dark);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-primary-dark:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.who-we-are-images {
    position: relative;
    height: 500px; /* Altura fija para el contenedor de imágenes */
}

.who-we-are-images img {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.img-top-right {
    width: 65%;
    height: 70%;
    object-fit: cover;
    top: 0;
    right: 0;
    z-index: 2;
}

.img-bottom-left {
    width: 60%;
    height: 60%;
    object-fit: cover;
    bottom: 0;
    left: 0;
    transform: translateX(-20%) translateY(20%); /* Superposición sutil */
    z-index: 1;
}


/* FOOTER (Copia y pega el CSS de tu footer aquí si no lo tienes en style.css global) */
.main-footer {
    background: #0a0a0a;
    color: white;
    padding: 50px 5% 20px 5%;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.footer-tagline {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
}
.footer-socials {
    text-align: center;
}
.social-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
}
.social-icons {
    display: flex;
    gap: 20px;
}
.social-link {
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 0.5px;
}


/* RESPONSIVE DESIGN (MÓVILES) */
@media (max-width: 992px) {
    .main-nav { display: none; } /* Ocultar nav en móvil */
    .nav-toggle { display: block; } /* Mostrar icono de menú */

    .hero-main-title { font-size: 3rem; }
    .hero-description { font-size: 1.2rem; }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .who-we-are-images {
        height: 400px; /* Ajuste para móvil */
        margin: 0 auto;
        max-width: 400px; /* Limitar ancho en móvil */
    }
    .img-top-right, .img-bottom-left {
        width: 80%;
        height: 80%;
        object-fit: cover;
        position: relative; /* Ajustar posición en móvil */
        transform: none;
        margin: 0 auto; /* Centrar imágenes */
    }
    .img-bottom-left {
        top: -100px; /* Superponer un poco arriba */
        left: auto;
    }
    .img-top-right {
        top: 0;
        right: auto;
    }
    .section-title-dark { font-size: 2rem; }

    .footer-container { flex-direction: column; text-align: center; }
    .social-icons { justify-content: center; }
}

@media (max-width: 576px) {
    .hero-main-title { font-size: 2.5rem; }
    .hero-description { font-size: 1rem; }
    .btn-scroll-down { padding: 10px 20px; font-size: 1rem; }
    .section-title-dark { font-size: 1.8rem; }
    .who-we-are-text p { font-size: 0.95rem; }
}
















.porque-nosotros-section {
    padding: 100px 5%;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.porque-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.gold-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.display-title-center {
    font-size: 3rem;
    color: var(--dark);
    margin: 20px 0;
    line-height: 1.2;
}

.porque-intro {
    font-size: 1.1rem;
    color: #666;
}

/* GRID DE TARJETAS */
.porque-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.porque-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.porque-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}

.porque-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
    padding: 20px;
    background: #fdfaf3; /* Fondo crema muy suave */
    border-radius: 50%;
    transition: 0.3s;
}

.porque-card:hover .porque-icon {
    background: var(--gold);
    color: #fff;
}

.porque-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.porque-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
}

/* MÓVIL */
@media (max-width: 768px) {
    .display-title-center { font-size: 2.2rem; }
    .porque-grid { grid-template-columns: 1fr; }
    .porque-card { padding: 40px 25px; }
}





/* RESET PARA ELIMINAR ESPACIO EN BLANCO SUPERIOR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #1a1a1a;
    --gold: #c5a059;
    --text-light: #666;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    overflow-x: hidden; /* Evita scroll horizontal */
}

/* NAVBAR - AJUSTE DE POSICIÓN */
.navbar {
    position: fixed;
    top: 0;
    left: 0; /* Asegurar que pegue a la izquierda */
    width: 100%;
    height: 80px;
    background: rgba(26, 26, 26, 0.98); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
}

/* HERO SECTION - QUITAMOS EL MARGIN-TOP QUE HACIA EL HUECO BLANCO */
.video-hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* margin-top: 60px;  <-- ESTO CAUSABA EL ESPACIO BLANCO. ELIMINADO. */
}

/* LAS RAYITAS DORADAS */
.menu-hamburguesa {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-hamburguesa span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--gold); 
    transition: 0.3s;
}

/* MENÚ LATERAL - FUNCIONALIDAD */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 350px;
    height: 100vh;
    background: var(--dark);
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    visibility: hidden; /* Evita clics accidentales cuando está oculto */
}

.side-menu.active {
    right: 0;
    visibility: visible;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 1500;
    display: none; /* Se controla con JS */
    opacity: 0;
    transition: 0.3s;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* RESTO DE TU CSS (Quiénes Somos, Footer, etc.) SE MANTIENE IGUAL ABAJO */






/* OSCURECER LA BARRA DE NAVEGACIÓN */
.navbar {
    background: #0a0a0a !important; /* Negro profundo sólido */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Sombra para dar profundidad */
    border-bottom: 1px solid rgba(197, 160, 89, 0.1); /* Línea dorada casi invisible */
}















/* ESTILOS ESPECÍFICOS DE MISION.HTML */

.mision-hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
}

.mision-hero .hero-content { position: relative; z-index: 10; }

.purpose-block { padding: 120px 5%; overflow: hidden; }
.bg-dark { background-color: #0f0f0f; }

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* NÚMEROS GIGANTES ARTÍSTICOS */
.purpose-number {
    font-size: 15rem;
    font-weight: 800;
    color: rgba(197, 159, 89, 0.5); /* Dorado muy transparente */
    line-height: 1;
    font-family: serif;
}

.text-gold-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(197, 160, 89, 0.3);
}

.purpose-text h2 {
    font-size: 3rem;
    margin: 20px 0;
    line-height: 1.1;
}

.gold-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
}

.purpose-list {
    list-style: none;
    margin-top: 30px;
}

.purpose-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.purpose-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.text-white { color: white; }
.text-gray { color: #aaa; }

/* VALORES */
.values-section { padding: 100px 5%; background: #fff; text-align: center; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-item h3 { font-size: 1.5rem; margin-bottom: 15px; }

/* RESPONSIVO */
@media (max-width: 992px) {
    .purpose-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .purpose-grid.inverse { display: flex; flex-direction: column-reverse; }
    .purpose-number { font-size: 8rem; }
    .purpose-text h2 { font-size: 2.2rem; }
}























/* TÍTULO ESTILO CARTA Y AJUSTE DE MARGEN */
.props-hero {
    padding-top: 140px; /* Evita que la navbar lo tape */
    padding-bottom: 60px;
    background: #ffffff;
    text-align: center;
}

.main-title-carta {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 10px;
}

.gold-text-italic {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
}

.counter-text {
    font-size: 1rem;
    color: #888;
    margin-bottom: 40px;
}

.gold-count {
    color: var(--gold);
    font-weight: 700;
}

/* FILTRO GLASS (MODERNO Y TRANSPARENTE) */
.glass-filter-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.4); /* Transparencia */
    backdrop-filter: blur(15px); /* Efecto vidrio */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.filter-inputs {
    display: flex;
    gap: 30px;
}

.f-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.f-group label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.f-group select {
    background: transparent;
    border: none;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    cursor: pointer;
}

.btn-filter-glass {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-filter-glass:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* GRID DE 5 COLUMNAS */
.grid-5-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px 2% 80px;
    max-width: 1800px;
    margin: 0 auto;
}

/* (AQUÍ PEGA EL CSS DE LAS TARJETAS QUE TE GUSTÓ ANTERIORMENTE) */















/* GRID DE 5 COLUMNAS - EL CORAZÓN DE LA SECCIÓN */
.properties-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    padding: 40px 3%;
    max-width: 1900px;
    margin: 0 auto;
}

/* LA TARJETA MODERNA */
.prop-card-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.prop-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.card-thumb {
    position: relative;
    height: 190px;
}

.card-thumb img { width: 100%; height: 100%; object-fit: cover; }

.badge-gold {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.card-content { padding: 20px; }

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loc { font-size: 0.85rem; color: #999; margin-bottom: 15px; }

.specs-grid {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f9f9f9;
    padding: 15px 0;
    margin-bottom: 10px;
}

.specs-grid span { font-size: 0.75rem; color: #777; font-weight: 500; }
.specs-grid i { color: var(--gold); margin-right: 3px; }

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.btn-circle-view {
    width: 35px; height: 35px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: none;
    color: var(--gold);
    cursor: pointer;
    transition: 0.3s;
}

.btn-circle-view:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* RESPONSIVO DINÁMICO */
@media (max-width: 1600px) { .properties-grid-5 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1200px) { .properties-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .properties-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .properties-grid-5 { grid-template-columns: 1fr; } }























/* EL CONTENEDOR MAESTRO */
.grid-5-cols {
    display: grid !important;
    /* Forzamos 5 columnas exactas. '1fr' significa una fracción igual del ancho */
    grid-template-columns: repeat(5, 1fr) !important; 
    gap: 20px; /* Espacio uniforme entre tarjetas */
    padding: 30px 2%;
    max-width: 100%;
    margin: 0 auto;
    /* Alinea todas las tarjetas al inicio de su fila */
    align-items: start; 
}

/* LA TARJETA (ESTRUCTURA RÍGIDA) */
.prop-card-new {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Esto garantiza que el padding no afecte el tamaño total */
    box-sizing: border-box; 
    height: 100%;
    min-height: 420px; /* Altura mínima uniforme para todas */
}

/* LA IMAGEN (TODAS IGUALES) */
.card-thumb {
    width: 100%;
    /* Relación de aspecto 4:3. No importa el tamaño original de la foto,
       el navegador la recortará para que encaje aquí perfectamente. */
    aspect-ratio: 4 / 3 !important; 
    overflow: hidden;
    position: relative;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene la calidad sin estirar la imagen */
}

/* CONTENIDO INTERNO PARA QUE NADA SE MUEVA */
.card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    /* Si el título es muy largo, ponemos puntos suspensivos para no mover el grid */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- DISPOSITIVOS MÓVILES (EL 2 DE 2 QUE PEDISTE) --- */
@media (max-width: 1024px) {
    .grid-5-cols {
        /* En tablets y móviles, pasamos a 2 columnas exactas */
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 15px 3%;
    }

    .prop-card-new {
        min-height: auto; /* En móvil dejamos que fluya un poco más */
    }
}
















/* AJUSTE DEL FILTRO PARA MÓVILES */
@media (max-width: 768px) {
    .glass-filter-box {
        width: 92%;           /* Que no pegue a los bordes */
        margin: 10px auto;    /* Centrado */
        padding: 20px;        /* Espacio interno */
        flex-direction: column; /* Apila todo: Estado -> Tipo -> Ciudad -> Botón */
        gap: 15px;            /* Espacio entre cada grupo */
        border-radius: 15px;
    }

    .filter-inputs {
        flex-direction: column; /* Asegura que los selects vayan hacia abajo */
        width: 100%;
        gap: 12px;
    }

    .f-group {
        width: 100%;         /* Cada select ocupa todo el ancho del filtro */
    }

    .f-group label {
        font-size: 0.85rem;  /* Etiqueta un poco más pequeña */
        margin-bottom: 5px;
        display: block;
    }

    .f-group select {
        width: 100%;
        padding: 12px;       /* Tamaño cómodo para el dedo */
        font-size: 1rem;     /* Texto claro sin ser gigante */
        border-radius: 10px;
    }

    .btn-filter-glass {
        width: 100%;         /* El botón de Aplicar Filtro ocupa todo el ancho abajo */
        padding: 15px;
        justify-content: center;
        font-weight: 600;
        margin-top: 5px;
    }
}














/* --- PAGINA DE DETALLE --- */
.bg-dark-detail { background-color: #fdfdfd; margin: 0; }

.prop-hero-banner {
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px 5%;
}

.hero-info-text h1 {
    color: white;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin: 10px 0;
}

.btn-back-elegant {
    position: absolute;
    top: 30px;
    left: 5%;
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    border-bottom: 1px solid gold;
    padding-bottom: 5px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* IZQUIERDA: TEXTO */
.info-side { color: #c2bbbb; }
.slogan-italic { font-family: 'Playfair Display', italic; color: #b89355; font-size: 1.2rem; }
.spec-item { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
.spec-item i { color: #b89355; width: 25px; }

/* BOTON WHATSAPP DORADO DISCRETO */
.btn-wa-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: #b89355;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #b89355;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-wa-gold:hover { background: #b89355; color: #1a1a1a; }

/* DERECHA: PIRÁMIDE DE FOTOS */
.gallery-side { position: relative; }
.photo-pyramid { display: flex; flex-direction: column; gap: 20px; align-items: center; }

.photo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.p-left { width: 90%; align-self: flex-start; }
.p-center { width: 100%; z-index: 2; }
.p-right { width: 90%; align-self: flex-end; }

/* MOVIL */
@media (max-width: 900px) {
    .content-wrapper { grid-template-columns: 1fr; }
    .hero-info-text h1 { font-size: 2.5rem; }
}





















/* --- MEJORA DE LECTURA Y ESPACIADO --- */

.info-side {
    color: #333;
    /* Aumentamos el espacio entre el texto y la galería */
    padding-right: 40px; 
}

/* Introducción del Lab */
.intro-lab h3 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.main-desc {
    font-size: 1.25rem; /* Letra más grande */
    line-height: 1.9;    /* Más espacio entre líneas */
    color: #555;
    margin-bottom: 40px; /* Separación con el siguiente bloque */
    text-align: justify;
}

/* Lista de Especificaciones (La parte que querías más separada) */
.specs-full-list {
    margin-bottom: 50px;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); /* Un toque sutil de profundidad */
}

.specs-full-list h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-left: 4px solid #b89355;
    padding-left: 15px;
}

.spec-item {
    margin-bottom: 25px; /* ¡Mucha más separación entre cada detalle! */
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;   /* Letra más legible */
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateX(10px); /* Efecto interactivo al pasar el mouse */
}

.spec-item i {
    color: #b89355;
    font-size: 1.4rem; /* Iconos un poco más grandes */
    width: 30px;
    text-align: center;
}

/* Descripción Larga */
.long-description h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.long-description p {
    font-size: 1.2rem;
    line-height: 2; /* Espaciado generoso para lectura fluida */
    color: #444;
}

/* Ajuste del Botón de WhatsApp para que no quede pegado al texto */
.btn-wa-gold {
    margin-top: 50px;
    padding: 15px 35px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .info-side {
        padding-right: 0;
    }
    .main-desc, .long-description p, .spec-item {
        font-size: 1.1rem; /* Un poco más pequeña en móvil para que no sea gigante */
    }
}











/* --- MEJORA DE LECTURA Y ESPACIADO --- */

.info-side {
    color: #333;
    /* Aumentamos el espacio entre el texto y la galería */
    padding-right: 40px; 
}

/* Introducción del Lab */
.intro-lab h3 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.main-desc {
    font-size: 1.25rem; /* Letra más grande */
    line-height: 1.9;    /* Más espacio entre líneas */
    color: #555;
    margin-bottom: 40px; /* Separación con el siguiente bloque */
    text-align: justify;
}

/* Lista de Especificaciones (La parte que querías más separada) */
.specs-full-list {
    margin-bottom: 50px;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); /* Un toque sutil de profundidad */
}

.specs-full-list h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-left: 4px solid #b89355;
    padding-left: 15px;
}

.spec-item {
    margin-bottom: 25px; /* ¡Mucha más separación entre cada detalle! */
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;   /* Letra más legible */
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateX(10px); /* Efecto interactivo al pasar el mouse */
}

.spec-item i {
    color: #b89355;
    font-size: 1.4rem; /* Iconos un poco más grandes */
    width: 30px;
    text-align: center;
}

/* Descripción Larga */
.long-description h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.long-description p {
    font-size: 1.2rem;
    line-height: 2; /* Espaciado generoso para lectura fluida */
    color: #444;
}

/* Ajuste del Botón de WhatsApp para que no quede pegado al texto */
.btn-wa-gold {
    margin-top: 50px;
    padding: 15px 35px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .info-side {
        padding-right: 0;
    }
    .main-desc, .long-description p, .spec-item {
        font-size: 1.1rem; /* Un poco más pequeña en móvil para que no sea gigante */
    }
}




/* Estilo Botón WhatsApp Glassmorphism */
.whatsapp-glass {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.whatsapp-content {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1); /* Fondo semi-transparente */
    backdrop-filter: blur(10px); /* Efecto borroso de vidrio */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3); /* Línea blanca sutil */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Icono blanco */
    font-size: 32px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

/* Tooltip (El texto que aparece al pasar el cursor) */
.wa-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    color: white;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateX(20px);
}

/* Efectos al pasar el cursor (Hover) */
.whatsapp-glass:hover .whatsapp-content {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    border-color: #C5A059; /* Un toque dorado de winstore al hover */
}

.whatsapp-glass:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animación de pulso suave */
@keyframes pulse-glass {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.whatsapp-content {
    animation: pulse-glass 2s infinite;
}





















/* --- CONTACTO PAGE COMPLETA --- */
.contacto-full-page {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.split-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
}

.info-section {
    width: 40%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    z-index: 5;
}

.brand-sub {
    color: #C5A059;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: -10px;
}

.intro-text {
    color: #888;
    margin: 30px 0;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
    transition: 0.3s;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
}

.label-gold {
    color: #C5A059;
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin: 40px 0 15px;
}

.social-btns { display: flex; gap: 15px; }
.social-btns a {
    color: #fff;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.4s;
}

.social-btns a:hover {
    background: #C5A059;
    color: #000;
}

.map-section {
    width: 60%;
    position: relative;
}

.google-map-dark {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.92) contrast(1.2);
}

.glass-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    box-shadow: inset 150px 0px 180px -50px #000;
}

/* Responsivo */
@media (max-width: 992px) {
    .split-wrapper { flex-direction: column; overflow-y: auto; }
    .info-section, .map-section { width: 100%; height: auto; }
    .info-section { padding: 120px 40px 60px; }
    .map-section { height: 400px; }
}



















/* EL ESTADO (En Venta / Alquiler) - Más discreto */
.tag-gold {
    background-color: #B89355; /* Dorado mate sutil */
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 2px; /* Bordes menos redondeados para más seriedad */
    font-size: 0.85rem;
    letter-spacing: 1px; /* Espaciado entre letras elegante */
    text-transform: uppercase;
}

/* LA UBICACIÓN - Color Platino con Icono Dorado */
.prop-sub-loc {
    color: #E0E0E0 !important; /* Gris Platino muy claro (más elegante que el amarillo) */
    font-size: 1.1rem;
    font-weight: 300; /* Letra más delgada = más elegancia */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); 
    margin-top: 10px;
}

/* ICONO EN DORADO CHAMPAGNE */
.prop-sub-loc i {
    color: #C5A059; /* El toque de dorado sutil solo en el detalle */
    margin-right: 5px;
}























/* Contenedor principal cuando hay más de 3 fotos */
.multi-grid-lab.grid-doble {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Crea dos columnas iguales */
    gap: 20px;
    width: 100%;
    padding: 20px 0;
}

/* Estilo para cada celda de imagen */
.photo-extra-wide {
    width: 100%;
    height: 350px; /* Altura fija para mantener simetría */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.photo-extra-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Evita que la imagen se deforme */
    transition: transform 0.5s ease;
}

.photo-extra-wide:hover img {
    transform: scale(1.08);
}

/* Responsivo: En celulares ponerlas de una en una para que no se vean pequeñas */
@media (max-width: 600px) {
    .multi-grid-lab.grid-doble {
        grid-template-columns: 1fr;
    }
    .photo-extra-wide {
        height: 250px;
    }
}








