.bc-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 10px;
    box-sizing: border-box;
}

.bc-section-title {
    text-align: center;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.bc-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}

.bc-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.bc-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 290px;
    height: 430px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.7);
    transition:
        transform 0.65s ease,
        opacity 0.65s ease,
        visibility 0.65s ease,
        box-shadow 0.65s ease;
}

.bc-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.bc-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bc-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,.12) 35%, rgba(0,0,0,0) 70%);
}

.bc-slide-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    padding: 0 18px;
    text-align: center;
    z-index: 2;
}

.bc-slide-title {
    margin: 0;
    display:none !important;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* ESTADOS DEL CARRUSEL */
.bc-slide.is-center {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 4;
    transform: translate(-50%, -50%) scale(1);
}

.bc-slide.is-left {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 3;
    transform: translate(calc(-50% - 270px), -50%) scale(0.76);
}

.bc-slide.is-right {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 3;
    transform: translate(calc(-50% + 270px), -50%) scale(0.76);
}

.bc-slide.is-hidden-left {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transform: translate(calc(-50% - 520px), -50%) scale(0.55);
}

.bc-slide.is-hidden-right {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transform: translate(calc(-50% + 520px), -50%) scale(0.55);
}

.bc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    background: transparent;
    color: #000;
    font-size: 58px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-arrow:hover {
    opacity: 0.75;
}

.bc-arrow-left {
    left: 110px;
}

.bc-arrow-right {
    right: 110px;
}

.bc-empty {
    padding: 20px;
    text-align: center;
}

/* TABLET */
@media (max-width: 1024px) {
    .bc-section-title {
        font-size: 38px;
    }

    .bc-carousel-wrapper {
        height: 500px;
    }

    .bc-slide {
        width: 250px;
        height: 370px;
    }

    .bc-slide.is-left {
        transform: translate(calc(-50% - 220px), -50%) scale(0.76);
    }

    .bc-slide.is-right {
        transform: translate(calc(-50% + 220px), -50%) scale(0.76);
    }

    .bc-slide.is-hidden-left {
        transform: translate(calc(-50% - 420px), -50%) scale(0.55);
    }

    .bc-slide.is-hidden-right {
        transform: translate(calc(-50% + 420px), -50%) scale(0.55);
    }

    .bc-arrow-left {
        left: 90px;
    }

    .bc-arrow-right {
        right: 90px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .bc-section {
        padding: 20px 12px 0;
    }

    .bc-section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .bc-carousel-wrapper {
        height: 440px;
    }

    .bc-slide {
        width: 210px;
        height: 315px;
    }

    .bc-slide.is-center {
        transform: translate(-50%, -50%) scale(1);
    }

    .bc-slide.is-left {
        transform: translate(calc(-50% - 120px), -50%) scale(0.72);
        opacity: .9;
    }

    .bc-slide.is-right {
        transform: translate(calc(-50% + 120px), -50%) scale(0.72);
        opacity: .9;
    }

    .bc-slide.is-hidden-left,
    .bc-slide.is-hidden-right {
        opacity: 0;
        visibility: hidden;
    }

    .bc-slide-title {
        font-size: 18px;
        display: none !important;
    }

    .bc-arrow {
        width: 40px;
        height: 40px;
        font-size: 42px;
    }

    .bc-arrow-left {
        left: 0;
    }

    .bc-arrow-right {
        right: 0;
    }
}