.banner-slide-item {
    height: 710px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-slide-item .slide-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(33px);
}

.banner-slide-item .slide-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .banner-slide-item {
        height: 250px;
    }
}

.slick-dots {
    bottom: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    position: absolute;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s;
}

.slick-dots li.slick-active button {
    background: #ff8a00; /* Color temático si existe, o uno naranja/azul */
    transform: scale(1.2);
}