:root {
    --cor-botao: royalblue;
    --cor-botao-hover: rgb(42, 80, 193);
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif; 
}

header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    background-color: black;
}

section {
    display: flex; 
    justify-content: center;
}

.container {
    /* background-color: black; */
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    flex-wrap: wrap;
}

.logo {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: white;
    background-color: white;
    padding-left: 20px;
    padding-right: 20px;
}

.titulo {
    width: 800px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex: 4;
    color: white;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
}

span {
    font-size: 13px;
    text-align: center;
}

.conteudo {
    margin: auto;
    max-width: 900px;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(235, 235, 235);
    margin-top: 20px;
    padding-bottom: 30px;
}

h2 {
    margin-top: 40px;
    margin-bottom: 2px;
}

h4 {
    margin-top: 30px;
    margin-bottom: 0px;
}

h5 {
    margin: 3px;
}