.modulos-modulo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem;
    border-bottom: 1px solid lightgray;
    cursor: pointer;
    transition: .2s all;
}

.modulos-modulo:hover {
    box-shadow: 1px 1px 10px lightgray;    
    box-sizing: border-box;
}

.modulo-nome {
    transition: .2s all;
    color: rgb(110, 110, 110);
}

.modulos-modulo:hover .modulo-nome {
    color: var(--corSecundaria);
}


.modulo-info {
    display: flex;
    align-items: center;
}

.modulo-img {
    width: 40px;
    height: 40px;
}

.modulo-info-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 20px;
}

.modulo-descricao {
    margin: 0;
    color: grey;
}

.modulos-progress {
    max-width: 150px;
}

.curso-categoria-texto, .curso-conteudo-texto {
    color: grey;
}

.curso-categoria-texto {
    margin-top: 10px;
}

.titulo {
    color: var(--corPrincipal);
}


.curso-foto {
    width: 100%; 
    height: 350px; 
    object-fit: cover; 
    border-radius: 5px;
}

@media (max-width: 1250px) {
    .modulos-modulo {
        flex-direction: column;
        align-items: inherit;
    }
    .modulos-progress {
        width: 100%;
        margin-top: 0;
        max-width: none;
    }
}

@media (max-width: 990px) {
    .modulos-modulo {
        flex-direction: row;
        align-items: center;
    }
    .modulos-progress {
        max-width: 250px;
    }
}

@media (max-width: 650px) {
    .modulos-modulo {
        flex-direction: column;
        align-items: inherit;
    }
    .modulos-progress {
        width: 100%;
        max-width: none;
        margin-top: 0;
    }
}

.botao {
    border: 1px solid black;
}