html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    
}

.pad{
    padding: 60px 0;
}

.google-icon{
    position: relative !important;
    padding: 0px !important;
    top: 6px !important;
    font-size: 23px !important;
    margin-left: 5px !important;
}

.container{
    padding: 0 5%;
    max-width: 1300px;
    margin: auto;
}
h1{
    font-weight: 700;
}

p{
    font-weight: 400;
}

h2{
    font-size: 28px;
    font-weight: 600;
}

.btn{
    filter: brightness(100%);
    transition: 0.8s;
    cursor: pointer;
}

.btn:hover{
    filter: brightness(70%);
    transition: 0.8s;
}
.flex{
    display: flex;
}

.underline{
    width: 100%;
    height: 2px;
    margin-top: -25px;
    background-color: white;
    border-radius: 10px;
}

.navegacao .align{
    height: 90px;
    display: flex;
    flex-direction: column;
}

.esquerda{
    width: 50%;
}
.direita{
    width: 50%;
}

.cursos .filtro .align{
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 680px){
    .cursos .filtro{
        flex-direction: column;
        margin-bottom: 35px;
    }
}
/* header */

.header{
    min-height: 400px;
    background-color: #002689;
    padding-top: 80px;
    color: white;
}

.header h1{
    margin: 100px 0px;
    text-align: center;
    font-size: 50px;
}

.header .navegacao{
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1300px;
    margin: auto;
}

.header .navegacao .teste{
    border: 1px solid white;
    width: 100px;
}

.navegacao a{
    color: white;
    text-decoration: none;
}

/* blocos */
.bloco{
    padding: 100px 0;
}
.bloco .flex{
    justify-content: space-between;
}

.bloco h3{
    font-size: 48px;
    font-weight: 700;
}

.bloco .underline{
    background-color: black;
    height: 6px;
    width: 15%;
    margin-top: -55px;
}

.bloco .itens{
    display: grid;
    grid-template-columns: 48% 48%;
    justify-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.bloco .itens .item{
    display: flex;
    text-align: center;
    align-items: center;
    background-color: #004FAC;
    text-align: center;
    font-size: 28px;
    border-radius: 21px;
    width: 100%;
    color: white;
    padding: 10px 0px;
    margin: 20px 0px;
}

.bloco .itens .item a{
    width: 100%;
    color: white;
    text-decoration: none;
}

/* roxo  */

.roxo .direita{
    text-align: end;
}

@media only screen and (max-width: 1050px){
    .bloco img{
        display: none;
    }

    .flex{
        display: block;
    }

    .direita{
        width: 100%;
    }

    .esquerda{
        width: 100%;
    }
}

/* Página destaques cursos (MOBILE) */
    @media only screen and (max-width: 900px){
        .header h1 {
        margin: 50px 0px;
        text-align: center;
        font-size: 50px;
        }
        .header .navegacao {
        flex-direction: column;
        align-items: center;
        }
        .bloco h3 {
            margin-top: 0;
        }
        .bloco .itens {
            grid-template-columns: 100%;
        }
    }
/* Fim pag destaques cursos */

/* Todos - Cursos */

.cursos{
    padding-bottom: 100px;
}

.cursos .filtro{
    display: flex;
    align-items: center;
}

.cursos .filtro span{
    margin-left: -33px;
    margin-right: 10px;
    pointer-events: none;
    color: white;
}

.cursos h2{
    font-size: 30px;
    margin-right: 5px;
}

.cursos select{
    width: 165px;
    font-size: 20px;
    padding: 4px 20px;
    background-color: #0365F9B8;
    border-radius: 8px;
    border: none;
    height: 30px;
    margin: 0px 5px;
    color: white;
    -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
  outline: none;
}

.cursos-area{
    display: flex;
    flex-wrap: wrap;
}

.cursos-area .curso{
    margin: 0px 10px;
}

.cursos-area .curso a{
    display: flex;
    justify-content: space-between;
    background-color: #5CABF4;
    flex-direction: column;
    align-items: center;
    padding: 5px 25px;
    padding-bottom: 20px;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 40px;
    width: 250px;
    min-height: 360px;
    text-align: center;
}

.cursos-area .curso img{
    margin-bottom: 20px;
}

.cursos-area .curso h3{
    font-size: 25px;
    color: white;
    margin: 0px;
    margin-top: -15px;
}


@media only screen and (max-width: 681px){
    .cursos-area{
        justify-content: space-evenly;
    }
}