div.background-slider {
    width: 100%;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #1b1e4d;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.background-slider a {
    position: relative;
    z-index: 2;
    /* Garante que o texto esteja acima do background */
    color: white;
    text-decoration: none;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Coloca o background atrás do texto */
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    filter: blur(10px);
    position: absolute;
}

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

.slide:not(.active) {
    opacity: 0;
    z-index: 0;
}