*{
    margin: 0;
    padding: 0;
}


#titulopagina{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin: 80px 0 0;
    font-size: 40px;
}

#descricao{
    text-align: center;
    margin-bottom: 50px;
}

.cardcursos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 100px 0;
}

.cardcursos .tipocurso{
    width: 300px;
    padding: 0 10px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.326);
    border-radius: 10px;
}

.cardcursos .tipocurso img{
    height: 70px;
    margin: -40px auto 0;
    display: block;
}

.cardcursos .tipocurso h1{
    text-align: center;
}

.cardcursos .tipocurso p{
    text-align: justify;
}


.curso{
    display: flex;
    margin: 30px 15px 60px;
    padding: 40px 15px;
    box-shadow: 2px 4px 32px rgba(8, 8, 8, 0.356);
    border-radius: 5px;
}

.curso .imagem{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curso .imagem img{
    max-width: 90%;
    min-width: 89%;
    margin: auto;
    border-radius: 10px;
}

.curso .texto{
    width: 50%;
    display: grid;
    place-content: center;
    margin: 0 20px;
}

.curso .texto h1{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.curso .texto h5{
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.curso .texto p{
    text-align: justify;
    margin-top: 30px;
    border-left: #004aad 4px solid;
    padding-left: 10px;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.curso .texto button{
    width: max-content;
    margin: 20px auto 0;
}

.curso .texto a{
    text-decoration: none;
    color: white;
}


@media (max-width:800px){
    .curso{
        flex-direction: column;
        margin: 30px 15px;
    }

    .curso .imagem{
        width: 100%;
    }

    .curso .texto{
        width: 100%;
        margin: 0 0;
    }

    .curso .texto h1{
        text-align: center;
        margin: 20px 0;
    }

    .curso .texto h5{
        text-align: center;
    }

    .curso .texto p{
        width: 90%;
        margin: 20px auto 0;
    }
}