.GridCurso{
    display: flex;
    gap:12px;
    flex-direction: column;
    justify-content: space-between;
}

.inputBuscar .mud-input-slot {
    padding: 10px 18px !important;
}

.inputBuscar .mud-icon-root {
    color: var(--primary-color) !important;
}

.gridCursos-item {
    width: 270px;
    height: 270px;
    overflow: hidden;
    border-radius: 14px;
    margin-top: 18px;
    cursor: pointer;
    opacity: 80%;
    transition: opacity 0.2s ease-in-out;
}

    .gridCursos-item:hover {
        opacity: 100%;
    }

    .gridCursos-item .infoGridCurso {
        display: flex;
        overflow: hidden;
        margin-top: 6px;
        margin-left: 4px;
        gap: 4px;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
    }

.infoGridCurso span {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
}

.infoGridCurso p {
    font-size: 12px;
    color: var(--color-black);
}

.gridCursos-item .thumbnail-container {
    max-width: 100%;
    min-height: 215px;
    border-radius: 10px !important;
    max-height: 215px;
    overflow: hidden;
}

    .gridCursos-item .thumbnail-container img {
        justify-content: center !important;
        border-radius: 10px !important;
        align-items: center !important;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.nav-curso ul li {
    color: var(--primary-color);
    transition: all 0.2s ease-in-out;
    font-size: 13px;
}

    .nav-curso ul li a {
        transition: all 0.2s ease-in-out;
        color: var(--text-color);
    }

.container-modulos {
    border: 2px solid var(--background-color);
    border-radius: 10px;
    padding: 1.0rem;
}

.text {
    color: var(--text-color);
    transition: all 0.2s ease-in-out;
    opacity: 100%;
}

    .text:hover {
        color: var(--primary-color);
    }

.concluido {
    font-weight: bold;
    opacity: 60%;
}

.ball {
    width: 40px;
    height: 40px;
    padding: 5px 12px;
    background: #FF8B66;
    border-radius: 26px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 38px;
    word-wrap: break-word;
}

@media (min-width: 1024px) {
    .container-modulos {
        width: 60%;
        border: 2px solid var(--background-color);
        border-radius: 10px;
        padding: 1.0rem;
    }
}
