/* contem o css do footer presente em todas a paginas */

.footer {
  background: #f6edff;
}

.footer__conteudo {
  display: flex;
  height: 240px;
  justify-content: space-between;
  padding: 64px 4%;
}

.footer__img {
  height: 50px;
  width: 176px;
}

.footer__lista {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style-type: none;
}

.footer__lista_item_link {
  color: #464646;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.footer__faleconosco {
  color: #464646;
  display: flex;
  flex-direction: column;
  width: 560px;
}

.footer__faleconosco_titulo {
  color: #464646;
  margin: 0;
  margin-bottom: 8px;
}

.footer_faleconosco_nome {
  background: #ffffff;
  border-bottom: 1px solid #c8c8c8;
  border-radius: 4px;
  height: 56px;
  margin-bottom: 16px;
}

.footer_faleconosco_nome_titulo {
  color: #a2a2a2;
  font-size: 12px;
  font-weight: 400;
  margin: 0.5em 0 0.5em 1em;
}

.footer__faleconosco_nome_input {
  border: none;
  font-size: 16px;
  margin: 0 0 1em 0.6em;
  outline: 0;
  width: 530px;
}

.footer__faleconosco_msg {
  background: #ffffff;
  border-bottom: 1px solid #c8c8c8;
  border-radius: 4px;
  height: 82px;
  margin-bottom: 8px;
}

.footer_faleconosco_msg_titulo {
  color: #a2a2a2;
  font-size: 16px;
  font-weight: 400;
  margin: 0.5em 0 0.5em 0.6em;
}

.footer__faleconosco_msg_input {
  border: none;
  font-size: 16px;
  margin: 0 0 1em 0.6em;
  outline: 0;
  width: 530px;
}

.footer__faleconosco_btn {
  background: #7e21ce;
  border: none;
  height: 51px;
  width: 165px;
}

.rodape {
  align-items: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px;
}

.rodape__creditos {
  color: #464646;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.footer__faleconosco_botao {
  color: #ffffff;
  text-decoration: none;
}

/*SMALL VIEWPORTS*/

@media screen and (max-width: 767px) {
  .footer__conteudo {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 1em 0;
    height: 100%;
  }

  .footer__faleconosco,
  .footer__faleconosco_nome_input,
  .footer__faleconosco_msg_input {
    width: 92%;
  }

  .footer__lista_item {
    margin-bottom: 1em;
  }
}

/*MEDIUM VIEWPORTS*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__conteudo {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 2em 0;
    height: 100%;
  }

  .footer__faleconosco,
  .footer__faleconosco_nome_input,
  .footer__faleconosco_msg_input {
    width: 92%;
  }

  .footer__lista_item {
    margin-bottom: 1em;
  }
}