html, body {
    background-color: #ffffff !important;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}

    :root {
        --dark-bg: #000000;
        --accent-gold: #e4c293;
        --light-gold-bg: #f9f4ee;
        --text-gray: #777;
        --border-color: #eee;
        --container-width: 1200px;
        --transition: all 0.3s ease;
    }

    /* --- LAYOUT GLOBAL --- */
    .container-wrapper, 
    .container-main {
        max-width: var(--container-width);
        margin: 0 auto;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* --- CABECERA --- */
    .property-header-bar {
        background: var(--dark-bg);
        color: white;
        padding: 15px 20px;
    }
    
    .property-header-bar h1 {
        font-size: 1.1rem;
        font-weight: 300;
        margin: 0;
        letter-spacing: 0.5px;
    }

        /*ESTILO DESPLEGABLE IDIOMAS*/
.language-switcher {
            display: flex;
            gap: 10px; /* Espacio entre los botones */
        }

        .language-switcher button {
            /* Estilo del botón: moderno y limpio */
            background: none; /* Sin fondo */
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 5px 8px;
            cursor: pointer;
            transition: background-color 0.2s;
            font-size: 16px; /* Ajusta el tamaño de la fuente para el emoji */
        }

        .language-switcher button:hover {
            background-color: #eee;
            border-color: #999;
        }

        .header-container {
            display: flex;
            justify-content: space-between; /* Mantiene la separación a los extremos */
            align-items: center; /* Centra verticalmente los ítems */
            max-width: var(--container-width);
             margin: 0 auto;
            padding: 10px 20px;
            box-sizing: border-box;
            background-color: #fff;
        }

        /* Estilos para la imagen del logo */
        .logo {
            max-height: 200px; /* Ajusta la altura máxima del logo */
            width: auto;
        }

/* --- CONTENEDOR GENERAL --- */
.carousel-wrapper {
    width: 100%;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* --- SLIDER PRINCIPAL --- */
.main-slider {
    width: 100%;
    height: 650px; /* Altura según tu segundo ejemplo */
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}

.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Cambiado a cover para llenar el contenedor */
}

/* --- TOUR VIRTUAL BADGE --- */
.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.tour-badge a {
    background: rgba(0,0,0,0.6);
    color: white !important;
    text-decoration: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: 0.3s;
}
.tour-badge a::before { content: "Tour Virtual"; font-size: 14px; font-weight: bold; text-align:center; }
.tour-badge a:hover { transform: scale(1.1); background: #000; }

/* --- CONTENEDOR MINIATURAS --- */
.thumbs-container {
    position: relative;
    margin-top: 10px;
    padding: 0 5px; /* Espacio para las flechas */
}

.thumb-slider {
    height: 75px;
    overflow: hidden;
}

.thumb-slider .swiper-slide {
    width: 105px; /* Ancho de la miniatura */
    cursor: pointer;
    transition: .3s;
}

.thumb-slider img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
}

/* Estado Activo (Miniatura seleccionada) */
.thumb-slider .swiper-slide-thumb-active img {
    border-color: #2a7ae2;
    transform: scale(1.05);
}

/* --- FLECHAS (Estilo del segundo ejemplo) --- */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffcc;
    border: 1px solid #ccc;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    z-index: 20;
    transition: .2s;
}

.arrow:hover { background: white; }
.arrow-left { left: -15px; }
.arrow-right { right: -15px; }

/* Ocultar flechas si Swiper las deshabilita */
.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

    /* --- BLOQUE CONTENIDO (DESCRIPCIÓN + SIDEBAR) --- */
    .main-content-layout {
        display: flex;
        gap: 40px;
        padding: 40px 0;
        background-color: #fff;
        align-items: flex-start;
    }

    .description-column {flex: 3; 
    color: #9a9a9a; 
    background-color: #f5f5f5;
    padding: 20px;}

    .section-title {
        font-size: 28px;
        color: #999;
        font-weight: 300;
        margin: 0 0 10px 0;
    }

    .property-subtitle {
        font-size: 18px;
        color: #666;
        font-weight: 400;
        margin-bottom: 25px;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 10px;
    }

    .description-text { line-height: 1.8; font-size: 15px; text-align: justify; }

    /* --- SIDEBAR & FORMULARIO --- */
    .sidebar-column { flex: 1; min-width: 280px; }

    .contact-card {
        background-color: var(--accent-gold);
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 25px;
    }

    .contact-header {
        color: white;
        padding: 18px 20px;
        font-size: 18px;
        font-weight: 500;
    }

    .contact-form { padding: 0 20px 20px 20px; display: flex; flex-direction: column; gap: 12px; }

    .contact-form input, 
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 2px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .policy-label {
        color: white;
        font-size: 12px;
        display: flex;
        gap: 8px;
        margin: 5px 0;
        cursor: pointer;
    }

    /* --- BOTONES --- */
    .action-buttons { display: flex; flex-direction: column; gap: 12px; }

    .btn-action, .btn-send {
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 2px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        text-decoration: none;
        font-weight: bold;
        transition: var(--transition);
        box-sizing: border-box;
    }

    .btn-black, .btn-send { background: #000; color: #fff; }
    .btn-light { background: var(--light-gold-bg); color: #d4ae7b; }

    .btn-action:hover { opacity: 0.85; transform: translateY(-2px); }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
        .main-content-layout { flex-direction: column; padding: 30px 20px; }
        .sidebar-column { width: 100%; }
        .main-slider { height: 45vh; }
    }

/* Contenedor general de tablas (Gris muy claro como en tu imagen) */
.features-container {
        max-width: var(--container-width); /* Los 1200px de tu root */
        margin: 20px auto; /* Centrado horizontal */
        background-color: #f8f8f8; /* Gris muy claro de la imagen */
        padding: 30px;
        box-sizing: border-box;
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 80px; /* Espacio central entre columnas */
    }

    .feat-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
        font-size: 14px;
    }

    .feat-row span { color: #666; font-weight: 300; }
    .feat-row strong { color: #000; font-weight: 600; text-transform: uppercase; }

    .price-text { color: #d9534f !important; }

    /* Estilo de Extras en 2 columnas */
    .extras-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 80px;
    }

    .extra-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
        font-size: 14px;
        color: #444;
    }

    .check-icon::before {
        content: '✔';
        font-weight: bold;
        color: #333;
    }

    /* Ajuste para que no se pegue a los bordes en monitores gigantes */
    @media (max-width: 1220px) {
        .features-container { margin-left: 20px; margin-right: 20px; }
    }

    @media (max-width: 800px) {
        .features-grid, .extras-grid { grid-template-columns: 1fr; gap: 0; }
    }

    /* Mapa */
    .map-wrapper {
        border: 1px solid #ddd;
        background: #fff;
        padding: 5px;
    }

    /* Tabla de Energía */
    .energy-table {
        background: #fff;
        border: 1px solid #ccc;
        display: flex;
        flex-direction: column;
    }

    .energy-header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        border-bottom: 1px solid #ccc;
        text-align: center;
        font-size: 13px;
        color: #555;
    }

    .header-main { padding: 15px; text-align: left; border-right: 1px solid #ccc; }
    .header-stat { padding: 10px; border-right: 1px solid #ccc; }
    .header-stat:last-child { border-right: none; }

    .energy-body {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        padding: 20px 0;
        position: relative;
        min-height: 230px;
    }

    /* Barras de colores */
    .energy-bars { display: flex; flex-direction: column; gap: 5px; padding-left: 10px; }
    .bar { height: 25px; color: white; font-weight: bold; padding-left: 10px; display: flex; align-items: center; width: 40%; clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%); }
    
    .bar-a { background: #00a651; width: 30%; }
    .bar-b { background: #4cb848; width: 40%; }
    .bar-c { background: #bfd730; width: 50%; }
    .bar-d { background: #fff200; width: 60%; }
    .bar-e { background: #f7941e; width: 70%; }
    .bar-f { background: #f26522; width: 80%; }
    .bar-g { background: #ed1c24; width: 90%; }

    /* Indicadores de valor (Punteros) */
    .energy-indicator-val, .energy-indicator-em { position: relative; border-left: 1px solid #ccc; }
    
    .pointer-val {
        position: absolute;
        left: -1px;
        background: #f7941e;
        color: white;
        padding: 5px 15px;
        font-weight: bold;
        clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
    }
    
    .red-val { background: #ed1c24; }

    .energy-footer {
        border-top: 1px solid #ccc;
        padding: 10px 15px;
        font-size: 12px;
        color: #888;
    }

   .google-translate-hidden{
    position:absolute;
    left:-9999px;
    opacity:0;
    pointer-events:none;
} 