* {
  font-family: "Oswald", sans-serif;
  /*     font-family: Arial, Helvetica, sans-serif; */
  /* box-sizing: border-box; */
  margin: 0px;
  padding: 0px;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
}

.cabecalho {
  background-position: center;
}

.imgcabeca {
  position: relative;
  height: 205px;
  width: 100%;
  background-position: center;
  box-shadow: 0px 0px 9px 0px black;
}

.principal {
  height: 100%;
  width: 100%;
  background-color: #f0f0f0;
  /*     padding: 20px; */
}

/* .conteudo {
  position: relative;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background-color: #fff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
} */

.modulos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 3%;
}

.modulo {
  flex-basis: 30%; /* TAMANHO DAS FORMAS DA PAGINA */
  margin-bottom: 20px;
  border-radius: 5px;
}

.modulo > h3 {
  margin: 0px;
  color: #fff;
  font-weight: 300;
  font-size: 1.5rem;
  padding: 10px 20px;
  background-color: #1867c0;
}

.modulo > ul {
  margin: 0px;
  padding: 10px;
  list-style: none;
}

.modulo > ul > li {
  padding: 7px;
  font-size: 1.2rem;
  cursor: pointer;
}

.modulo > ul > li > a {
  display: flex;
  text-decoration: none;
  color: #222;
}

.modulo > ul > li:hover {
  background-color: rgb(197, 197, 197);
}

.modulo.verde {
  border: 2px solid #2d2825;
  background-color: white;
}
.modulo.verde > h3 {
  background-color: #2d2825;
  color: white;
}

.modulo.vermelho {
  border: 2px solid #2d2825;
  background-color: white;
}
.modulo.vermelho > h3 {
  background-color: #2d2825;
  color: white;
}

.modulo.azul {
  border: 2px solid #2d2825;
  background-color: white;
}
.modulo.azul > h3 {
  background-color: #2d2825;
  color: white;
}

.modulo.roxo {
  border: 2px solid #2d2825;
  background-color: white;
}
.modulo.roxo > h3 {
  background-color: #2d2825;
  color: white;
}

.modulo.laranja {
  border: 2px solid #ff9800;
}
.modulo.laranja > h3 {
  background-color: #ff9800;
}

.modulo.verde-escuro {
  border: 2px solid #1b5e20;
}
.modulo.verde-escuro > h3 {
  background-color: #1b5e20;
}

.modulo.vermelho-escuro {
  border: 2px solid #b71c1c;
}
.modulo.vermelho-escuro > h3 {
  background-color: #b71c1c;
}

.modulo.azul-escuro {
  border: 2px solid #0d47a1;
}
.modulo.azul-escuro > h3 {
  background-color: #0d47a1;
}

.modulo.roxo-escuro {
  border: 2px solid #4a148c;
}
.modulo.roxo-escuro > h3 {
  background-color: #4a148c;
}

p.divisao {
  margin-bottom: 0px;
  font-weight: bold;
}

hr {
  margin-top: 0px;
}
