/* =========================================================
   RESET & GRID
========================================================= */
.pluxdom-property-grid *,
.pluxdom-property-card * { box-sizing: border-box; }

.pluxdom-property-grid {
    width: 100%; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 28px; padding: 14px;
}

/* =========================================================
   CARD & MEDIA SLIDER
========================================================= */
.pluxdom-property-card {

    width: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0,0,0,.45);
}

.pluxdom-card-media {
    position: relative; width: 100%; padding-top: 56%;
    overflow: hidden; background: #111;
}

.pluxdom-card-slider,
.pluxdom-slide { position: absolute; inset: 0; width: 100%; height: 100%; }

.pluxdom-slide { opacity: 0; transition: .3s ease; }
.pluxdom-slide.active { opacity: 1; }
.pluxdom-slide img { width: 100%; height: 100%; object-fit: contain; }

/* =========================================================
   BADGES & OVERLAYS
========================================================= */
.pluxdom-badge {
    position: absolute; top: 12px; padding: 2px 10px;
    border-radius: 6px; font-weight: 550; font-size: 12px; z-index: 5;
}
.pluxdom-badge-type { left: 10px; background: #ffd400; color: #000; }
.pluxdom-badge-status { right: 10px; background: #18a63c; color: #fff; }

.pluxdom-location-badge {
    position: absolute; left: 10px; bottom: 10px;
    background: rgba(0,0,0,.75); color: #fff; padding: 2px 10px;
    border-radius: 6px; font-size: 12px; font-weight: 550; z-index: 5;
}

/* =========================================================
   CONTROLS & DOTS
========================================================= */
/* =========================================================
   PLUXDOM FAVORITE BUTTON PREMIUM
   Diseño idéntico referencia:
   Cuadro blanco redondeado + corazón negro fino
========================================================= */
.pluxdom-favorite-btn{
    position:absolute;
    top:18px;
    right:18px;
    width:62px;
    height:62px;
    border:none;
    outline:none;
    padding:0;
    margin:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffffde;
    border-radius:10px;
    cursor:pointer;
    z-index:30;

    /* sombra ultra suave */
    box-shadow:
        0 4px 14px rgba(0,0,0,0.10),
        0 1px 3px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.95);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

/* Hover */
.pluxdom-favorite-btn:hover{
    transform:translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(0,0,0,0.14),
        0 3px 8px rgba(0,0,0,0.08);
}

/* Click */
.pluxdom-favorite-btn:active{
    transform:scale(.96);
}

/* Contenedor SVG */
.pluxdom-favorite-heart{
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111111;
}

/* SVG exacto */
.pluxdom-favorite-heart svg{
    width:100%;
    height:100%;
    display:block;
}

/* Estado activo */
.pluxdom-favorite-btn.active{
    background:#ffffff;
}

.pluxdom-favorite-btn.active .pluxdom-favorite-heart{
    color:#ff2b2b;
}

.pluxdom-favorite-btn.active svg path{
    fill:#ff2b2b;
    stroke:#ff2b2b;
}

/* Responsive */
@media (max-width:768px){
   .pluxdom-favorite-btn {
    width: 50px;
    height: 50px;
    top: 220px;
    right: 12px;
    /* border-radius: 16px; */
}

    .pluxdom-favorite-heart {
    width: 30px;
    height: 30px;
}
}


.pluxdom-slider-dots {
    position: absolute; left: 50%; bottom: 8px;
    transform: translateX(-50%); display: flex; gap: 10px; z-index: 6;
}
.pluxdom-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,.28);
}
.pluxdom-dot.active { background: #18a63c; }

/* =========================================================
   CONTENT & HEADER MASTER
========================================================= */
.pluxdom-card-content { background: #02070d; padding: 15px 10px 10px 10px; }

.pluxdom-card-header {
    display: flex; flex-direction: column; gap: 0px; width: 100%;
}
.pluxdom-card-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.pluxdom-card-row-top { align-items: flex-start; }
.pluxdom-card-row-bottom { align-items: flex-end; }

.pluxdom-card-title {
    position: relative; top: 8px; flex: 1; margin: 0; min-width: 0;
    font-size: 19px; color: #fff; font-weight: 600; line-height: 1.1;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pluxdom-card-subtitle {
    position: relative; top: 5px; bottom: 0px; flex: 1; margin: 0; min-width: 0;
    color: #d0d0d0; font-size: 12px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pluxdom-card-price-wrap { text-align: right; flex-shrink: 0; }
.pluxdom-card-price-note {
    position: relative; top: 5px; flex-shrink: 0;
    color: #cfcfcf; font-size: 16px; white-space: nowrap; text-align: right;
}
.pluxdom-card-price {
    display: flex; align-items: baseline; justify-content: flex-end;
    flex-wrap: wrap; gap: 6px; line-height: 1;
    flex-shrink: 0; white-space: nowrap; text-align: right;
    font-size: 22px; color: #1fd14b; font-weight: 600;
}

/* =========================================================
   FEATURES / SPECS & ICONS
========================================================= */
.pluxdom-card-specs {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 14px; margin-top: 6px;
}
.pluxdom-spec-box {
    background: #0b1118; border-radius: 8px;
    border: 1px solid rgba(255,255,255,.06);
    min-height: 132px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center; padding: 5px;
}
.pluxdom-spec-box strong { display: block; color: #fff; font-size: 38px; font-weight: 600; line-height: 1; margin-bottom: 0px; position: relative;
    top: 2px; }
.pluxdom-spec-box span { color: #fff; font-size: 16px; line-height: 1.3; }

.pluxdom-spec-top { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; }
.pluxdom-spec-icon { display: flex; align-items: center; justify-content: center; }
.pluxdom-spec-number { font-size: 42px; line-height: 1; font-weight: 600; color: #ffffff; }
.pluxdom-spec-label { margin-top: 10px; font-size: 20px; font-weight: 450; color: #ffffff; text-align: center; }

/* SVGs */
.pluxdom-icon-bed svg { width: 20px; height: 26px; fill: #ffd400; }
.pluxdom-icon-bath svg { width: 19px; height: 26px; fill: #ffd400; }
.pluxdom-icon-parking svg {
    position: relative;
    
    top: 2px;
    width: 23px;
    height: 30px;
    fill: #ffd400;
}

/* Área Terreno (Predominante final) */
.pluxdom-icon-area { display: flex; align-items: center; justify-content: center; min-width: 24px; min-height: 24px; flex-shrink: 0; }
.pluxdom-icon-area svg {
    display: block;
    width: 19px;
    height: 19px;
    min-width: 19px;
    min-height: 19px;
    fill: #ffd400;
    flex-shrink: 0;
    overflow: visible;
}

.pluxdom-spec-area { align-items: flex-start; padding: 5px 5px; }
.pluxdom-spec-area .pluxdom-spec-top { justify-content: flex-start; align-items: center; gap: 10px; width: 100%; padding-left: 4px; }
.pluxdom-spec-area .pluxdom-spec-number { font-size: 20px; line-height: 1; white-space: nowrap; display: flex; align-items: flex-start; gap: 3px; }
.pluxdom-spec-area .pluxdom-spec-number small { font-size: 15px; position: relative; top: 2px; }
.pluxdom-spec-area .pluxdom-spec-label { width: 100%; text-align: center; padding-left: 4px; margin-top: 10px; line-height: 1.2; }



/* =========================================================
   EXTRAS & CTA
========================================================= */
.pluxdom-card-extras {
    display: flex; flex-wrap: nowrap; gap: 12px; margin-top: 20px;
    overflow-x: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08);
}
.pluxdom-extra-item {
    flex: 0 0 auto; padding: 5px 5px; border-radius: 14px;
    
}

.pluxdom-card-cta {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px; margin-top: 1px;
}
.pluxdom-btn-details,
.pluxdom-btn-whatsapp {
     border-radius: 16px; display: flex;
    align-items: center; justify-content: center; text-decoration: none;
    font-size: 22px; font-weight: 600; text-align: center;
}
.pluxdom-btn-details { background: #ffd400; color: #000; }
.pluxdom-btn-whatsapp { background: #18a63c; color: #fff; }

/* =========================================================
   PRECIO + UNIDAD DE COBRO
========================================================= */
.pluxdom-price-main {
    position: relative; top: 6px; font-size: 22px; font-weight: 700;
    color: #1fd14b; white-space: nowrap;
}
.pluxdom-price-unit {
    position: relative; top: 2px; font-size: 14px; font-weight: 600;
    color: #ffffff; opacity: .92; white-space: nowrap;
}

/* =========================================================
   MOBILE (Sintaxis corregida & consolidado)
========================================================= */
@media(max-width:768px){
    .pluxdom-property-grid {

    grid-template-columns: 1fr;
    padding: 6px 0px 0px 0px;
}
    
    .pluxdom-card-specs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .pluxdom-spec-box { min-height: 70px; }
    .pluxdom-spec-box strong { font-size: 20px; }
    .pluxdom-spec-box span { font-size: 11px; }
    
    .pluxdom-card-cta { gap: 10px; }
    .pluxdom-btn-details, .pluxdom-btn-whatsapp { font-size: 18px;  }
    
    .pluxdom-price-main { font-size: 18px; }
    .pluxdom-price-unit { font-size: 10px; }
}


/* =========================================================
   PLUXDOM CARD EXTRAS PREMIUM MASTER
   Ruta:
   /wp-content/themes/PLUXDOM-ULTRA/css/style.css
========================================================= */

.pluxdom-card-extras{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:14px 18px;
    width:100%;
    margin:8px 0 8px;
    padding:10px 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* ITEM */
.pluxdom-extra-item{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:2px;
    min-width:0;
    white-space:nowrap;
    overflow:hidden;
}

/* ICONO */
.pluxdom-extra-icon{
    flex:0 0 20px;
    width:20px;
    height:20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/* SVG CONTROL */
.pluxdom-check-green{
    width:20px;
    height:20px;
    display:block;
    filter:drop-shadow(0 0 4px rgba(34,197,94,.25));
}

/* TEXTO */
.pluxdom-extra-text{
    display:block;
    font-size:15px;
    line-height:1.2;
    font-weight:600;
    color:#ffffff;
    overflow:hidden;
    
}

/* TABLET */
@media (max-width:991px){
    .pluxdom-card-extras{
       
    }
}

/* MOBILE */
@media (max-width:767px){
    .pluxdom-card-extras{
        
        gap:0px;
    }

    .pluxdom-extra-text{
        font-size:10px;
    }

    .pluxdom-extra-icon,
    .pluxdom-check-green{
        width:18px;
        height:18px;
    }
}

/* =========================================================
PLUXDOM EXTRAS WRAP ULTRA CONTROL
Ruta:
 /wp-content/themes/PLUXDOM-ULTRA/css/style.css
========================================================= */

/* CONTENEDOR GENERAL */
.pluxdom-card-extras-wrap{
    width:100%;
    overflow:hidden;
    margin:0px 0 0px;
    padding:14px 0;
    border-top:0px solid rgba(255,255,255,.08);
    border-bottom:0px solid rgba(255,255,255,.08);
}

/* FILA 4 COLUMNAS SIEMPRE */
.pluxdom-card-extras{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    align-items:center;
    gap:8px;
    width:100%;
}

/* ITEM */
.pluxdom-extra-item{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:6px;
    min-width:0;
    width:100%;
    transform-origin:left center;
}

/* ICONO */
.pluxdom-extra-icon{
    flex:0 0 clamp(14px, 1.2vw, 18px);
    width:clamp(14px, 1.2vw, 18px);
    height:clamp(14px, 1.2vw, 18px);
    display:flex;
    align-items:center;
    justify-content:center;
}

/* SVG */
.pluxdom-check-green{
    width:100%;
    height:100%;
    display:block;
    flex-shrink:0;
}

/* TEXTO AUTO REDUCTIVO */
.pluxdom-extra-text{
    flex:1;
    min-width:0;
    display:block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:clamp(9px, 0.95vw, 15px);
    line-height:1.15;
    font-weight:600;
    color:#ffffff;
    
    text-align: center;
}


/* TABLET */
@media (max-width:991px){

    .pluxdom-card-extras{
        gap:6px;
    }

    .pluxdom-extra-item{
        gap:5px;
    }
}

/* MOBILE */
@media (max-width:767px){

    .pluxdom-card-extras-wrap{
        padding:0px 0;
    }

    .pluxdom-card-extras{
        grid-template-columns:repeat(3, minmax(0,1fr));
        gap:0px;
    }

    .pluxdom-extra-item{
        gap:4px;
    }

    .pluxdom-extra-text{
        font-size:12px;
    }
}

/* =========================================================
PLUXDOM FIX SVG PEGADO AL TEXTO
========================================================= */

.pluxdom-extra-item{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:2px;
}

.pluxdom-extra-icon{
    flex:0 0 auto;
    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0;
}

.pluxdom-check-green{
    display:block;
    width:20px;
    height:20px;
}

.pluxdom-extra-text{
    flex:0 1 auto;
    margin:0;
    text-align:left;
    white-space:nowrap;
}




/* =========================================================
PLUXDOM HEADER DUAL CONTAINERS
TÍTULO + SUBTÍTULO (IZQUIERDA)
NEGOCIABLE + PRECIO + UNIDAD (DERECHA)
SIN !IMPORTANT
AGREGAR AL FINAL DE TU style.css
========================================================= */

/* CONTENEDOR GENERAL */
.pluxdom-card-header{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    align-items:center;
    column-gap:20px;
    width:100%;
    padding:8px 0 16px;
}

/* =========================================================
CONTENEDOR IZQUIERDO
========================================================= */
.pluxdom-card-main-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    min-width:0;
    width:100%;
    overflow:hidden;
}

/* TÍTULO */
.pluxdom-card-main-info .pluxdom-card-title{
    margin:0;
    min-width:0;
    width:100%;
    font-size:19px;
    line-height:1.1;
    font-weight:700;
    color:#ffffff;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* SUBTÍTULO */
.pluxdom-card-main-info .pluxdom-card-subtitle{
    margin:6px 0 0;
    min-width:0;
    width:100%;
    font-size:12px;
    line-height:2;
    font-weight:500;
    color:#d6d6d6;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* =========================================================
CONTENEDOR DERECHO
========================================================= */
.pluxdom-card-price-box{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-end;
    text-align:right;
    min-width:max-content;
    padding-left:20px;
    border-left:1px solid rgba(255,255,255,.12);
}

/* NEGOCIABLE */
.pluxdom-card-price-box .pluxdom-card-price-note{
    margin:0 0 6px;
    font-size:14px;
    line-height:1;
    font-weight:500;
    color:#f1f1f1;
    text-transform:uppercase;
    white-space:nowrap;
}

/* PRECIO */
.pluxdom-card-price-box .pluxdom-card-price{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    line-height:1;
    margin:0;
    white-space:nowrap;
}

/* PRECIO PRINCIPAL */
.pluxdom-card-price-box .pluxdom-price-main{
    font-size:22px;
    line-height:1;
    font-weight:800;
    color:#1fd14b;
    white-space:nowrap;
}

/* UNIDAD WRAP */
.pluxdom-price-unit-wrap{
    display:flex;
    justify-content:flex-end;
    width:100%;
    margin-top:6px;
}

/* UNIDAD */
.pluxdom-card-price-box .pluxdom-price-unit{
    display:block;
    font-size:14px;
    line-height:1;
    font-weight:600;
    color:#ffffff;
    white-space:nowrap;
}

/* =========================================================
TABLET
========================================================= */
@media (max-width:991px){

    .pluxdom-card-header{
        column-gap:14px;
    }

    .pluxdom-card-price-box{
        padding-left:14px;
    }

    .pluxdom-card-main-info .pluxdom-card-title{
        font-size:18px;
    }

    .pluxdom-card-price-box .pluxdom-price-main{
        font-size:20px;
    }
}

/* =========================================================
MOBILE EXACTO COMO MOCKUP
========================================================= */
@media (max-width:767px){

    .pluxdom-card-header{
        grid-template-columns:minmax(0,1fr) auto;
        column-gap:10px;
        padding:0px 0 6px;
    }

    /* IZQUIERDA */
    .pluxdom-card-main-info .pluxdom-card-title{
        font-size:17px;
        line-height:1.08;
    }

    .pluxdom-card-main-info .pluxdom-card-subtitle{
        margin-top:4px;
        font-size:12px;
    }

    /* DERECHA */
    .pluxdom-card-price-box{
        padding-left:10px;
    }

    .pluxdom-card-price-box .pluxdom-card-price-note{
        font-size:11px;
        margin-bottom:4px;
    }

    .pluxdom-card-price-box .pluxdom-price-main{
        font-size:18px;
    }

    .pluxdom-card-price-box .pluxdom-price-unit{
        font-size:12px;
    }

    .pluxdom-price-unit-wrap{
        margin-top:4px;
    }
}

.pluxdom-spec-parqueos .pluxdom-spec-label {
        position: relative;
        bottom: 2px;
    }

























/* =========================================================
PLUXDOM OFFICIAL IMAGE FRAME MASTER
MARCO OFICIAL UNIVERSAL:
1600px x 1067px

REGLAS:
- SI LA IMAGEN ES MÁS GRANDE → SE REDUCE
- SI ES MÁS PEQUEÑA → SE AMPLÍA
- SI ES VERTICAL/HORIZONTAL → SE CENTRA
- SI NO COINCIDE → RECORTE AUTOMÁTICO
- TODOS LOS SLIDES OBEDECEN EL MISMO MARCO
========================================================= */

/* =========================================================
MARCO PRINCIPAL OFICIAL
========================================================= */
.pluxdom-card-media{
    position:relative;
    width:100%;
    max-width:1600px;
    aspect-ratio:1600 / 1067;
    min-height:0;
    padding-top:0;
    overflow:hidden;
    background:#111;
    margin:0 auto;
}

/* =========================================================
SLIDER MASTER
========================================================= */
.pluxdom-card-slider{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    overflow:hidden;
}

/* CADA SLIDE */
.pluxdom-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    overflow:hidden;
    opacity:0;
    transition:opacity .35s ease;
}

/* ACTIVO */
.pluxdom-slide.active{
    opacity:1;
}

/* =========================================================
IMAGEN UNIVERSAL OFICIAL
========================================================= */
.pluxdom-slide img,
.pluxdom-slide-image{
    display:block;
    width:100%;
    height:100%;
    min-width:100%;
    min-height:100%;
    max-width:none;
    max-height:none;

    /* AJUSTE AUTOMÁTICO */
    object-fit:cover;

    /* CENTRADO EXACTO */
    object-position:center center;

    /* MICRO AJUSTE VISUAL */
    transform:scale(1);

    /* SUAVIDAD */
    backface-visibility:hidden;
}

/* =========================================================
IMÁGENES MUY PEQUEÑAS O DESPROPORCIONADAS
FORZAR LLENADO TOTAL DEL FRAME
========================================================= */
.pluxdom-slide picture,
.pluxdom-slide source{
    width:100%;
    height:100%;
}

/* =========================================================
MOBILE
========================================================= */
@media(max-width:768px){

    .pluxdom-card-media{
        width:100%;
        max-width:100%;
        aspect-ratio:1600 / 1067;
    }

    .pluxdom-slide,
    .pluxdom-slide img,
    .pluxdom-slide-image{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center center;
    }
}


/* =========================================================
PLUXDOM BADGE STATUS SIMPLE
SVG + TEXTO A LA IZQUIERDA
REEMPLAZA SOLO TU BADGE STATUS ACTUAL
========================================================= */

.pluxdom-badge-status {
    position: absolute;
    top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #18a63c;
    color: #ffffff;
    font-size: 12px;
    font-weight: 550;
    line-height: 1;
    z-index: 6;
}

/* ICONO SVG */
.pluxdom-status-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:15px;
    height:15px;

    flex-shrink:0;
}

.pluxdom-status-icon svg{
    display:block;
    width:100%;
    height:100%;
    color:#ffffff;
}

/* TEXTO */
.pluxdom-status-text{
    display:inline-block;
    color:#ffffff;
    white-space:nowrap;
    line-height:1;
}

/* =========================================================
   PLUXDOM BADGE TIPO + SVG PREMIUM
   Posición exacta como referencia visual
========================================================= */

.pluxdom-single-badge.tipo,
.pluxdom-card-badge.tipo,
.pluxdom-tipo-badge,
.pluxdom-property-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 30;

    background: #f5c400;
    color: #111111;

    padding: 8px 14px;
    border-radius: 12px;

    font-size: 18px;
    font-weight: 800;
    line-height: 1;

    box-shadow:
        0 4px 14px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.35);

    border: 1px solid rgba(0,0,0,.08);

    width: auto;
    min-height: 44px;

    text-transform: none;
    letter-spacing: -.2px;
}

/* =========================================================
   SVG ICONO
========================================================= */
.pluxdom-tipo-icono {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;
    flex-shrink: 0;
    line-height: 0;
}

.pluxdom-tipo-icono svg {
    left: -4px;
    top: 2px;
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
    
}
/* =========================================================
   TEXTO
========================================================= */
.pluxdom-tipo-texto {
    display: inline-block;
    font-size: 17px;
    
    color: #111111;
    white-space: nowrap;
    
}

/* =========================================================
   MOBILE ULTRA CLEAN
========================================================= */
@media (max-width: 768px) {

    .pluxdom-single-badge.tipo,
    .pluxdom-card-badge.tipo,
    .pluxdom-tipo-badge,
    .pluxdom-property-type {
        top: 14px;
        left: 14px;

        padding: 7px 12px;
        border-radius: 10px;

        font-size: 16px;
        min-height: 40px;
        gap: 6px;
    }

    .pluxdom-tipo-icono,
    .pluxdom-tipo-icono svg {
        width: 15px;
        height: 15px;
    }

    .pluxdom-tipo-texto {
        font-size: 14px;
    }
}

/* =========================================================
   EFECTO HOVER PREMIUM
========================================================= */
.pluxdom-single-badge.tipo:hover,
.pluxdom-card-badge.tipo:hover,
.pluxdom-tipo-badge:hover,
.pluxdom-property-type:hover {
    transform: translateY(-1px);
    box-shadow:
        0 8px 18px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.4);
}

/* =========================================================
   PREVENIR SVG GIGANTE
========================================================= */
.pluxdom-single-badge.tipo svg,
.pluxdom-card-badge.tipo svg,
.pluxdom-tipo-badge svg,
.pluxdom-property-type svg {
    max-width: 18px;
    max-height: 18px;
}





/* =========================================================
   PLUXDOM UBICACIÓN BADGE MASTER
   SVG IZQUIERDA + TEXTO DERECHA
========================================================= */
.pluxdom-location-badge{
    position:absolute;
    bottom:18px;
    left:18px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(20,20,20,.88);
    color:#ffffff;
    padding:8px 14px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    line-height:1;
    z-index:6;
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    box-shadow:0 4px 14px rgba(0,0,0,.28);
}

/* ICONO */
.pluxdom-location-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:16px;
    height:16px;
    flex-shrink:0;
    color:#ffffff;
    margin-right:2px;
}

/* SVG */
.pluxdom-location-icon svg{
    width:100%;
    height:100%;
    display:block;
    fill:#ffd400;
}

/* TEXTO */
.pluxdom-location-text{
    display:inline-block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:180px;
}

/* MOBILE */
@media (max-width:768px){

    .pluxdom-location-badge{
        bottom:14px;
        left:14px;
        padding:7px 12px;
        font-size:14px;
        border-radius:6px;
        gap:4px;
    }

    .pluxdom-location-icon{
        width:15px;
        height:15px;
    }

    .pluxdom-location-text{
        max-width:140px;
    }
}









/* =========================================================
   PLUXDOM CTA PREMIUM MASTER
   BOTONES FINALES ESTILO APP PREMIUM
========================================================= */

.pluxdom-card-cta{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
    width:100%;

}

/* =========================================================
   BASE BOTONES
========================================================= */
.pluxdom-btn-details,
.pluxdom-btn-whatsapp{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1px;
    width:100%;
  
    padding:10px 20px;
    border-radius:10px;
    text-decoration:none;
    overflow:hidden;
    transition:all .28s ease;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:
        0 10px 30px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.18);
}

/* =========================================================
   DETALLES
========================================================= */
.pluxdom-btn-details {
    background: #ffd400;
    color: #111;
}

/* =========================================================
   WHATSAPP
========================================================= */
.pluxdom-btn-whatsapp {
    background: #18a63c;
    color: #fff;
}

/* =========================================================
   HOVER
========================================================= */
.pluxdom-btn-details:hover,
.pluxdom-btn-whatsapp:hover{
    transform:translateY(-3px);
    box-shadow:
        0 18px 35px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.2);
}

/* =========================================================
   LEFT SIDE
========================================================= */
.pluxdom-btn-left{
    display:flex;
    align-items:flex-start;
    gap:5px;
    min-width:0;
    flex:1;
}

/* =========================================================
   ICONOS
========================================================= */
.pluxdom-btn-icon-eye,
.pluxdom-btn-icon-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.pluxdom-btn-icon-eye{
    width:32px;
    height:32px;
}

.pluxdom-btn-icon-eye svg{
    width:30px;
    height:30px;
    display:block;
    color:#111;
}

.pluxdom-btn-icon-whatsapp{
    width:42px;
    height:42px;
}

.pluxdom-btn-icon-whatsapp svg{
    width:42px;
    height:42px;
    display:block;
}

/* =========================================================
   TEXTOS
========================================================= */
.pluxdom-btn-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    min-width: 0;
}

.pluxdom-btn-text strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 550;
    letter-spacing: -0.02em;
    white-space: nowrap;

}

.pluxdom-btn-text small{
    display:block;
    margin-top:6px;
    font-size:.92rem;
    font-weight:500;
    opacity:.92;
    white-space:nowrap;
    
    
}

/* =========================================================
   COLOR TEXTO
========================================================= */
.pluxdom-btn-details .pluxdom-btn-text strong,
.pluxdom-btn-details .pluxdom-btn-text small{
    color:#111;
}

.pluxdom-btn-whatsapp .pluxdom-btn-text strong,
.pluxdom-btn-whatsapp .pluxdom-btn-text small{
    color:#fff;
}

/* =========================================================
   FLECHA
========================================================= */
.pluxdom-btn-arrow {
    bottom: 8px;
    left: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
}

.pluxdom-btn-arrow svg{
    width:24px;
    height:24px;
    display:block;
    color:#111;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:768px){

    .pluxdom-card-cta{
       
        gap:12px;
    }

  

   .pluxdom-btn-text strong {
    font-size: 15px;
}

    .pluxdom-btn-text small {
    font-size: 10px;
}

    .pluxdom-btn-icon-eye{
        width:28px;
        height:28px;
    }

    .pluxdom-btn-icon-eye svg{
        width:26px;
        height:26px;
    }

    .pluxdom-btn-icon-whatsapp {
    width: 28px;
    height: 28px;

    }

    .pluxdom-btn-icon-whatsapp svg{
        width:38px;
        height:38px;
    }

}

/* =========================================================
   EFECTO PREMIUM BRILLO
========================================================= */
.pluxdom-btn-details::before,
.pluxdom-btn-whatsapp::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
    transition:left .7s ease;
}

.pluxdom-btn-details:hover::before,
.pluxdom-btn-whatsapp:hover::before{
    left:130%;
}

.pluxdom-btn-subtext-box {
    

    right: 30px;
    position: relative;

    
    
}  
    
    

.pluxdom-btn-icon-eye {

    position: relative;
    bottom: 6px;
}



.linea-sutil-targeta-exterior {
    position: absolute;
    z-index: 100000;
    margin: 0px 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgb(255 255 255), transparent);
}




