/* Frontend Publicidade Slider Rotativo */

.psr-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.psr-slider-inner {
    display: flex;
    transition: transform 0.6s ease;
}

.psr-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* tamanhos sugeridos */
.psr-size-1600x198 .psr-slide img {
    max-height: 198px;
    object-fit: cover;
}

.psr-size-728x90 .psr-slide img {
    max-height: 90px;
    object-fit: cover;
}

/* dots */

.psr-dots {
    margin-top: 6px;
    text-align: center;
}

.psr-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0,0,0,0.3);
    margin: 0 3px;
    cursor: pointer;
}

.psr-dot.psr-dot-active {
    background: rgba(0,0,0,0.8);
}

/* arrows */

.psr-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.4);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.psr-arrow-prev {
    left: 6px;
}

.psr-arrow-next {
    right: 6px;
}

.psr-arrow:hover {
    background: rgba(0,0,0,0.7);
}

/* responsivo */

@media (max-width: 768px){
    .psr-size-1600x198 .psr-slide img {
        max-height: 140px;
    }
}
