.destaque_conteudo_principal {
  width: 50%;
  margin: 130px auto;
  padding: 30px;
  background-color: var(--cor-azul-escuro);
  color: white;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
}

.subdestaque_conteudo_principal {
  width: 50%;
  margin: 80px auto;
  text-align: center;
  font-size: 1.4rem;
  color: var(--cor-azul-escuro);
  font-weight: bold;
}

#lista_perguntas {
  width: 40%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-indent: 60px;
  margin: 150px auto;
  background-color: var(--cor-azul-escuro);
  border-radius: 10px;
}

#lista_perguntas > div {
  width: 90%;
  background-color: white;
  margin: 0 auto;
  text-indent: 0px;
  padding: 20px 15px;
  border-radius: 10px;
  text-align: left;
}

.ajuda {
  color: black;
}

.ajuda > a {
  color: black;
  font-weight: bold;
}

.ajuda > a:hover {
  color: var(--cor-vermelho);
}

.lista_perguntas_items {
  width: 70%;
  margin: 0 auto;
  padding: 10px 5px;
  cursor: pointer;
  color: white;
  font-size: 1.3rem;
  border-radius: 10px;
  transition: all ease .2s;
}

.lista_perguntas_items:hover {
  background-color: white;
  color: var(--cor-azul-claro);
}

#contato_ajuda {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin: 100px 0;
  margin-bottom: 50px;
  font-weight: bold;
}

.contato_ajuda_entrada {
  color: rgba(0, 0, 0, 0.6);
}

.contato_ajuda_entrada > input {
  width: 350px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid var(--cor-azul-claro);
  text-indent: 10px;
}

.contato_ajuda_entrada:nth-child(3) > input {
  height: 50px;
}

.contato_ajuda_entrada > input:focus {
  outline: none;
  border: 2px solid var(--cor-vermelho);
  background-color: rgba(355, 355,355, 0.2);
}

.btn {
  display: block;
  margin: 0 auto;
  margin-bottom: 130px;
  padding: 10px 30px;
  border: 1px solid black;
  border-radius: 10px;
  background-color: var(--cor-azul-claro);
  color: white;
  transition: all ease .1s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--cor-azul-escuro);
  transform: scale(1.1);
}