/* Cursos */
.cursos-titulo{
    text-transform: uppercase;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* #imersao {
    opacity: 0.5;
}
#botaoCurso, #imersao{
    transition: 0.3s;
} */

.cursos{
    display: flex;
    justify-content: space-between;
    width: 75%;
    height: 400px;
    margin: 0 auto;
}
.curso{
    display: flex;
    justify-content: center;
    flex: 1;
}

.curso img {
    height: 100%;
    border-radius: 10px;
}

.curso .swiper-button-disabled{
    display: none;
}

/* cards */
.swiper {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.swiper .swiper-wrapper{
    margin-bottom: 30px;    
}

.swiper .swiper-slide{
    width: auto;
    & img{
        width: 90%;
        border-radius: 10px;
        box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
        object-fit: cover;
        cursor: pointer;
    }
}

.swiper{
    margin-bottom: -10px
}

.swiper .swiper-button-prev, .swiper-button-next{
    color: #00afd8 !important; 
    /* width: 40px !important; */
}

.swiper .swiper-pagination-bullet{
    background-color: #888 !important;
}
.swiper .swiper-pagination-bullet-active{
    background-color: #00afd8 !important;
}

@media (max-width: 958px){
    .swiper .swiper-slide{
        justify-content: center;
        & img{
            width: 95%;
        }
    }

    .swiper .swiper-wrapper{
        padding: 0;
    }
}