.turmas-main-container {
    margin: 100px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.all-turmas {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 10px;
}

.turma-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 1px 5px 10px #ccc;
}

.turma-card h4 {
    text-align: center;
    text-transform: uppercase;
}

.turma-card h5 {
    text-align: center;
    margin-top: 12px;
    color: #004ca0;
}

.turma-card a {
    width: 100%;
    display: inline-block;
    margin: auto;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #004ca0;
    padding: 10px;
    font-weight: bolder;
    margin: 20px 0;
    transition: 0.5s ease-in-out;
}

.turma-card a:hover {
    background-color: #004cd9;
}

.turma-card p {
    margin-top: 5px;
}

.curso-turmas {
    width: 25%;
    background-color: #004ca0;
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 1px 5px 10px #ccc;
}

.curso-turmas h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
}

.valores-curso {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.valores-curso i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #004ca0;
    /* padding: 20px; */
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.valores-curso p {
    display: flex;
    flex-direction: column;
}

.curso-turmas hr {
    border: 1px dashed #fff;
    margin-bottom: 20px;
}

@media (max-width: 1250px) {
    .all-turmas {
        width: 70%;
        grid-template-columns: repeat(2, 1fr);
    }

    .curso-turmas {
        width: 30%;
    }
}

@media (max-width: 1050px) {
    .turmas-main-container {
        flex-direction: column;
    }

    .all-turmas {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .curso-turmas {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .turmas-main-container {
        margin: 100px 50px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .all-turmas {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .curso-turmas {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .all-turmas {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }
}
