@import url(font.css);

h1, h2, h3, h4, h5, h6, p {
    font-family: 'Roboto', sans-serif;
}
.cp h1, .cp h2, .cp h3, .cp h4, .cp h5, .cp h6 {
    line-height: 2.2rem;
    margin: 1rem 0;
}
p {
    line-height: 1.5rem;
}

a {
    color: white;
}

body {
    background-color: #002b50;
    color: white;
}


/* Cabeçalho */

.cp{
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cp__heading{
    margin-top: 1.875rem;
}

.cp__heading--title_text{
    font-family: MullerExtrabold;
    font-size: 1.875rem;
}
.cp__heading--subtitle_textt{
    font-family: MullerExtrabold;
    font-size: 1.2rem;
}
.cp__cards{
    display: flex;
    flex-direction: column;
    width: 100vw;
    align-items: center;
}

.cp__card{
    width: 18.875rem;
    margin: 0 auto;
    height: auto;
}
@media screen and (min-width: 720px) {

    .cp__heading{
        margin-top: 1.5625rem;
        width: 68rem;
    }

    .cp__heading--title_text{
        font-size: 2.8125rem;
    }
    .cp__heading--subtitle_text{
        font-size: 1.8125rem;
        margin-top: 12px;
    }

    .cp__cards{
        display: flex;
        flex-direction: column;
        width: 68rem;
        margin-top: 3.125rem;
        gap: 2.5rem;
    }

    .cp__card{
        width: 68rem;
        background-color: #003059;
        border: 1px solid rgb(0, 162, 255, 0.3);
        border-radius: 1.875rem;
        height: auto;
    }
    .cp__card--body {
        padding: 32px;
    }


}
