.bm-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
    line-height: 0;
}

.bm-carousel-track {
    width: 100%;
    height: 100%;
    line-height: 0;
}

.bm-carousel-slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    display: none;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
}

.bm-carousel-slide.active {
    display: block;
}

.bm-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: top;
}

/* Fade animation */
.bm-carousel-slide.fade-in {
    animation: bmFadeIn var(--bm-trans-speed, 600ms) ease forwards;
}

@keyframes bmFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Flechas */
.bm-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.2s ease, background 0.2s ease;
    padding: 0;
    background: rgba(0,0,0,0.4);
    color: #fff;
}

.bm-carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(0,0,0,0.65) !important;
}

.bm-carousel-arrow svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.bm-carousel-prev { left: 16px; }
.bm-carousel-next { right: 16px; }

/* Responsive */
@media (max-width: 768px) {
    .bm-carousel-arrow {
        width: 36px;
        height: 36px;
    }
    .bm-carousel-arrow svg {
        width: 16px;
        height: 16px;
    }
    .bm-carousel-prev { left: 8px; }
    .bm-carousel-next { right: 8px; }
}
