@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100&family=Rubik+Mono+One&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --bg-generico: linear-gradient(to left, #E5FFF3 0%, #e0f1ff 30%, #FDF2EF 100%);
}

body{
    background: var(--bg-generico);
}

.padding_geral{
    padding: 0 70px;
}

.fill-warning{
    fill: #f7c32e;
}

@keyframes balancar {
    0% {
        transform: rotate(1deg);
    }
    50% {
        transform: rotate(-1deg);
    }
    100% {
        transform: rotate(1deg);
    }
}

@keyframes morph1 {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}



/*CSS PADRÃO*/
.linha{
    display: flex;
    flex-wrap: wrap;
}


/*LISTA DE CURSO*/

.lista_cursos{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.lista_cursos .card_curso{
    width: calc(25% - 20px);
    /*height: 350px;*/
    border: 1px solid #ccc;
    margin: 10px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    box-shadow: 0px -4px 50px -14px rgb(109 117 143 / 53%);
    transition: all 0.15s ease-in-out;
    padding: 5px;
}

.lista_cursos .card_curso *{
    text-decoration: none;
}

.lista_cursos .card_curso:hover{
    border: 2px solid #6562f9;
    transition: all 0.35s ease-in-out;
}


.lista_cursos .card_curso:hover .thumb img{
    transform: scale(1.05);
    transition: all 0.15s ease-in-out;
}

.lista_cursos .card_curso .thumb{
    border-radius: 9px 9px 0 0;
    overflow: hidden;
    height: 150px;
    display: flex;
}

.lista_cursos .card_curso .thumb img{
    width: 100%;
    transition: all 0.15s ease-in-out;
    height: 100%;
    object-fit: cover;
}

.lista_cursos .card_curso .linha_cat_estrelas{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 7px 0;
}


.lista_cursos .card_curso .linha_cat_estrelas .c_estrelas i{
    color: #ffa41c;
}

.lista_cursos .card_curso .linha_cat_estrelas .c_categoria{
    font-family: 'Rubik';
    font-weight: bold;
    font-size: 12px;
    color: #43409b;
    background: #b3b1ff;
    padding: 1px 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lista_cursos .card_curso .linha_cat_estrelas .c_categoria:hover{
    background: #a3a1fd;
}

.lista_cursos .card_curso h2{
    font-family: Rubik;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    height: 42px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}


.lista_cursos .card_curso h2 a{
    color: #333;
}
.lista_cursos .card_curso h2 a:hover{
    color: #222;
}

.lista_cursos .linha_apost_estudantes{
    display: flex;
    flex-wrap: wrap;
    margin: 7px 0;
    text-align: center;
    justify-content: space-around;
}
.lista_cursos .linha_apost_estudantes .col_estudantes, .lista_cursos .linha_apost_estudantes .col_apostilas{
    font-family: Rubik;
    font-size: 13px;
    color: #555;
}



.lista_cursos .card_curso .linha_btn_valor{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}


.lista_cursos .card_curso .linha_btn_valor .col_btn a{
    font-family: Rubik;
    padding: 3px 11px;
    color: #604185;
    display: inline-flex;
    border: 1px solid #e3caff;
    font-weight: bold;
    font-size: 15px;
    border-radius: 5px;
    background: #f3e8ff;
}


.lista_cursos .card_curso .linha_btn_valor .col_btn a:hover{
    border: 1px solid #c795ff;
    background: #e2c7ff;
}

.lista_cursos .card_curso .linha_btn_valor .col_valor{
    display: flex;
    align-items: center;
    justify-content: center;
}

.lista_cursos .card_curso .linha_btn_valor .col_valor .valor_curso{
    font-family: 'Rubik';
    font-weight: 500;
    color: #006906;
}

.header_page{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.header_page h2{
    font-family: Rubik;
    font-weight: bold;
    font-size: 1.1rem;
    color: #272567;
    border: 1px dashed #272567;
    border-radius: 5px;
    padding: 5px 15px;
    background: #fff;
    text-transform: uppercase;
    background: #f3f3ff;
    text-align: center;
}

.header_page h3{
    font-family: Rubik;
    font-weight: bold;
    font-size: 2.5rem;
    color: #272567;
    line-height: 1;
    padding: 15px 0 0 0;
    text-align: center;
}