* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Monaco", "Lucida Console", "Arial";
  --branco: #ffffff;
  --amarelo: #fffa96;
  --azul: #9f96ff;
  --vermelho: #ff521b;
  --preto: #190f10;
}

body,
html {
  height: 100vh;
}

body {
  background: var(--preto);
  font-size: 1.2vw;
  display: flex;
  text-align: center;
}

section {
  height: 95vh;
  width: 49vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

h1 {
  font-size: 1.5em;
}

h2 {
  color: var(--vermelho);
}

li {
  font-size: 4vh;
}

#articlelogo {
  width: 70%;
}

#articletelefone {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#articletelefone a {
  text-decoration: none;
  color: var(--amarelo);
}

#articletelefone img {
  width: 75%;
}

#articleemail a {
  text-decoration: none;
  color: var(--vermelho);
}

#articleatendimento {
  color: var(--amarelo);
  height: 85vh;
  display: flex;
  align-items: center;
}

#listaatendimento {
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style-position: inside;
}

.itematendimento {
  margin-top: 15px;
}

#listaprevidenciario {
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
}

.itemprevidenciario {
  margin-top: 15px;
}

#articleendereco{
  display: flex;
}