/* Definições padrão */
@font-face {
  font-family: "Roboto";
  src: url("Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  /*azuis*/
  --c-azul-super-escuro-background: #00143c;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto";
}

.conteudo_layout {
  width: 100%;
  max-width: 1920px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 24px;
}
div {
  box-sizing: border-box;
}

@media (max-width: 800px) {
  .area_util {
    width: calc(100% - 28px);
    max-width: unset;
  }
}
