.banner-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
}

.banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1920/600;
    overflow: hidden;
    height: auto !important;
    background-color: transparent;
}

@media (max-width:768px) {
    .banner-slider {
        aspect-ratio: 16/9;
    }
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.banner-slide.active img {}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-prev:hover,
.banner-next:hover {
    background-color: rgba(75, 0, 130, 0.9);
    border-color: var(--roxo);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(75, 0, 130, 0.6);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

/