.vc-carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    height: auto;
    overflow: hidden;
    padding: 10px 0;
    box-sizing: border-box;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.vc-arrow {
    cursor: pointer;
    font-size: 24px;
    color: white;
    user-select: none;
    margin: 5px 0;
}

.vc-carousel {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    scroll-behavior: smooth;
    gap: 10px;
    width: 100%;
    max-height: 480px; /* Mostrar 3 imgs aprox */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE y Edge */
}

.vc-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.vc-item {
    flex: 0 0 auto;
    padding: 0 10px;
}

.vc-item img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .vc-carousel-wrapper {
        max-width: 90%;
    }
    .vc-carousel {
        max-height: 300px; /* Más bajo para mobile */
    }
    .vc-item img {
        height: 120px;
    }
}
