.images-slider .slider {
    position: relative;
    width: 100%;
    height: 600px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.images-slider .slider img {
    width: 100%;
    height: 100%;
}

.images-slider .slider .list-images {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    display: flex;

    justify-content: center;

    align-items: flex-end;
}

.images-slider .slider .list-images li {
    position: relative;
    display: flex;

    margin: 0.2rem;
    margin-bottom: 1.5rem;

    width: 20px;
    height: 20px;

    background-color: indigo;

    border-radius: 100%;
    
    cursor: pointer;
}

.images-slider .slider .list-images li:hover {
    background-color: rgb(159, 91, 207);  
    opacity: 0.6;
}

.images-slider .slider .list-image-selected {
    background-color: rgb(195, 0, 255) !important;
    opacity: 0.6;
}



.slider-text {
    position: absolute;

    z-index: 1;

    display: none;
    flex-direction: column;
    left: 50px;
    top: 22%;

    color: rgb(36, 36, 36);

    justify-content: center;
}

.slider-text h3 {
    font-size: 2.8rem;
}

.slider-text p {
    font-size: 1.2rem;
    padding-top: 5px;
}

.slider-text .aderir-button {
    margin-top: 5px;
}

.slider-active {
    display: flex;

    opacity: 1.0;
    transition: display 0.8s;
}
.slider-disabled {
    display: none;
    opacity: 1;
}

#texts_1 {
    color: white;
    padding: 10px;
    background-color: rgba(34, 34, 34, 0.349);
    top: 50%;
}

#texts_1 > .aderir-button{
    background-color: rgb(179, 43, 241); 
    width: 400px;
}