/* A+ Slider - carrusel ligero para brand_story y contenido_enriquecido */
.aplus-slider {
    position: relative;
    overflow: hidden;
    margin: 16px 0;
    border-radius: 8px;
    background: #f8f9fa;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.aplus-slider-viewport {
    overflow: hidden;
}

.aplus-slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
}

.aplus-slider-slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-width: 100%;
}

.aplus-slider-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.aplus-slider-prev,
.aplus-slider-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background .15s ease;
    transition: background .15s ease;
}

.aplus-slider-prev:hover,
.aplus-slider-next:hover {
    background: rgba(0, 0, 0, .7);
}

.aplus-slider-prev {
    left: 8px;
}

.aplus-slider-next {
    right: 8px;
}

.aplus-slider-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
}

.aplus-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    cursor: pointer;
    -webkit-transition: background .15s ease;
    transition: background .15s ease;
}

.aplus-slider-dot.active {
    background: #fff;
}
