#vc-catalogo-mapa {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: inherit;
    padding: 30px 0;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.vc-catalogo-main {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    padding-top: 30px;
    border-radius: 0;
    min-height: 80vh;
    height: 70vh;
    max-height: 80vh;
    border-top: 2px solid #000;
}

#vc-map {
    flex: 0 1 70%;
    min-height: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px #0001;
    background: #e6e6e6;
    //position: sticky;
    top: 0;
}

.vc-catalogo-categorias-barra {
    background: #111;
    color: #fff;
    padding: 70px 28px 22px 28px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px 42px;
    /* EFECTO de borde superior "en punta" */
    position: relative;
    clip-path: polygon(30% 0, 100% 20%, 100% 100%, 0 100%, 0 20%);
    /* ↑ Ajusta los puntos para lograr más o menos "punta" */
    box-shadow: 0 6px 20px #0004;
}


.vc-categoria-barra {
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0 10px 0 0;
    transition: color 0.2s, filter 0.2s;
}

.vc-categoria-barra.active,
.vc-categoria-barra:hover {
    color: #ED5AB2; /* o #fff con subrayado, elegí tu highlight */
    background-color:  rgba(0, 0, 0, 0) !important;
}

.vc-categoria-dot {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
    box-sizing: border-box;
    vertical-align: middle;
}



.vc-catalogo-listado {
    flex: 0 1 540px;
    min-width: 540px;
    width: 540px;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 30px;
    padding-left: 24px;
}

.vc-catalogo-dot {
    position: absolute;
    left: -20px; /* Cambiado para que el dot esté mitad afuera */
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #A46AE6; /* será sobrescrito por JS */
    border: 2px solid #fff;
    /* box-shadow: 0 0 0 2px #fff; */
    z-index: 10; /* Asegura que quede sobre el borde */
    display: flex;  /* FLEX para centrar número */
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
}

.vc-catalogo-dot-num {
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    text-shadow: 0 1px 3px #00000038;
    pointer-events: none;
}

.vc-catalogo-item {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 18px;
    box-shadow: none;
    cursor: pointer;
    transition: border 0.2s;
    border: 2px solid #111;
    margin: 0;
    /* overflow: hidden; */
    align-items: center;
    position: relative;
    padding-left: 24px; /* Cambiado para que el contenido quede alineado */
}


.vc-catalogo-item.selected,
.vc-catalogo-item:hover {
    border-color:#ED5AB2;
    z-index: 2;
}

.vc-catalogo-thumb {
    flex: 0 0 40%;
    min-width: 40%;
    max-width: 40%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
}

.vc-catalogo-thumb img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 10px !important;
}

.vc-catalogo-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 20px 20px 0px;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    /* Para forzar que los iconos sociales queden siempre abajo */
    position: relative;
}

.vc-catalogo-cat {
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 2px 5px;
    align-self: flex-start;
    margin-bottom: 10px;
}

.vc-catalogo-title {
    font-size: 1.12em;
    font-weight: 700;
    line-height: 1.2;
}

.vc-catalogo-mas-info {
    font-family: "Rubik";
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

.vc-catalogo-mas-info a {
    color: #ED5AB2 !important;
}

.vc-catalogo-mail,
.vc-catalogo-tel,
.vc-catalogo-dir,
.vc-catalogo-summary {
    font-size: 0.8em;
    color: #222;
    margin-bottom: 2px;
    word-break: break-all;
}

.vc-catalogo-social {
    margin-top: auto;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.vc-catalogo-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #111;
    font-size: 1.15em;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.vc-catalogo-social a:hover {
    background-color: #ED5AB2;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .vc-catalogo-main {
        flex-direction: column;
        gap: 12px;
        height: auto;
        min-height: unset;
        max-height: unset;
    }
    #vc-map {
        width: 100%;
        min-height: 220px;
        height: 45vh;
        max-height: 60vh;
        flex: 0 0 auto;
    }
    .vc-catalogo-listado {
        flex: 1 1 100%;
        min-width: 0;
        max-width: 100%;
        gap: 14px;
        max-height: 55vh;
    }
    .vc-catalogo-item {
        padding-left: 9px;
    }
    .vc-catalogo-thumb {
        flex: 0 0 70px;
        min-width: 70px;
        max-width: 70px;
        padding: 10px 0px;
    }
    .vc-catalogo-info {
        padding: 10px 8px 10px 10px;
        font-size: 0.93em;
    }
    .vc-catalogo-cat {
        padding: 3px 8px;
        font-size: 0.98em;
    }
}
