.abas {
    width: 100%;
    background: var(--color-white);
    margin: 0;
    padding: 6px 0px;
    font-size: 13px;
    font-weight: 100;
    color: var(--text-color);
    transition: all 0.2s ease-in-out;
}

    .abas a {
        margin: 0;
        padding: 6px 0px;
        font-size: 13px;
        font-weight: 100;
        color: var(--text-color);
        transition: all 0.2s ease-in-out;
    }

        .abas a:hover {
            color: var(--primary-color);
        }

        .abas a i:hover {
            color: var(--primary-color);
        }

    .abas i {
        color: var(--color-black);
    }

#container_curso {
    margin-top: 60px;
    margin-bottom: 72px;
}

.progresso-Curso {
    gap: 32px;
    width: 100%;
    padding: 22px;
    display: flex;
    min-height: 240px;
    align-items: center;
    justify-content: start;
    border-radius: 20px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    background-color: var(--color-white);
}

    .progresso-Curso:hover {
        border: 2px solid var(--primary-color);
    }

.progresso-details {
    flex: 1;
    gap: 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

    .progresso-details button {
        max-width: 220px;
    }

.progresso-tituloVideo,
.progresso-descVideo,
.texto-ProgressoConcluido {
    width: 100%;
}

    .progresso-tituloVideo h3,
    .texto-ProgressoConcluido,
    .progresso-descVideo {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.progresso-tituloVideo {
    display: grid;
    color: var(--text-padrao);
    gap: 4px;
}

    .progresso-tituloVideo h3 {
        font-size: 22px !important;
    }

    .progresso-tituloVideo span {
        font-size: 14px;
    }

.progresso-descVideo {
    font-size: 14px;
    max-width: 80%;
}

.progresso-image-wrapper {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    object-fit: cover;
    border-radius: 10px;
}

.texto-ProgressoConcluido {
    color: #09B823;
}

@media (max-width: 992px) {
    .progresso-Curso {
        gap: 20px;
        padding: 18px;
    }

    .progresso-image-wrapper {
        width: 240px;
        height: 160px;
    }

    .progresso-descVideo {
        max-width: 100%;
        white-space: normal;
    }

    .progresso-tituloVideo h3 {
        font-size: 20px !important;
    }
}

@media (min-width: 577px) {
    .progresso-descVideo {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    #container_curso {
        margin-top: 32px;
        margin-bottom: 48px;
    }

    .progresso-Curso {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding: 16px;
    }

    .progresso-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .progresso-details {
        width: 100%;
        gap: 12px;
    }

    .progresso-tituloVideo h3,
    .progresso-descVideo,
    .texto-ProgressoConcluido {
        white-space: normal;
        text-overflow: unset;
    }

    .progresso-descVideo {
        font-size: 13px;
    }

    .progresso-details button {
        max-width: 100%;
        width: 100%;
    }

    .abas {
        font-size: 12px;
        padding: 4px 0;
    }
}
