.page-footer {
  background-color: #0f0f0f;
  color: #fff;
  padding: 50px 0 64px;
}
.page-footer__container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
}
.page-footer__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}
.page-footer .social-icon * {
  fill: #fff;
}
.page-footer #social-wrapper {
  justify-content: flex-start;
}
.page-footer__col:first-child p {
  margin: 32px 0;
}
/*Projetos*/
.footer__projetos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.projetos-box {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
  color: #fff;
}
.projetos-box__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
/*Newsletter*/
.newsletter-form {
  margin: 16px 0 40px;
  position: relative;
}
.newsletter-form__input-wrapper br,
.newsletter-form .wpcf7-spinner {
  display: none;
}
.newsletter-form .wpcf7-not-valid-tip {
  position: absolute;
  top: 110%;
  font-size: 12px;
}
.newsletter-form .wpcf7-response-output {
  position: absolute;
  bottom: -40px;
  background-color: #0f0f0f;
  font-size: 12px;
  width: 100%;
}
.wpcf7-not-valid-tip {
  display: none!important;
}
.newsletter-form__input-wrapper > p {
  border-radius: 53px;
  border: solid 2px #fff;
  display: flex;
  align-items: center;
  padding-right: 2px;
}
.newsletter-form__input {
  background: none;
  border: none;
}
.newsletter-form__input--email,
#newsletter {
  color: #fff;
  padding: 0 24px;
  height: 46px;
  width: 100%;
}
.newsletter-form__input--email:focus {
  outline: none;
  background: #000;
  border-radius: 53px;
}
.newsletter-form__input--submit {
  cursor: pointer;
  background: url('../img/icons/newsletter-send-btn.svg') no-repeat center;
  background-size: cover;
  height: 43px;
  width: 65px;
  font-size: .1px;
}
/*Bottom Bar*/
.bottom-bar {
  background-color: #211e16;
  padding: 15px 0;
  color: #ffffff;
  font-size: 14px;
}
.bottom-bar a {
  color: #ffffff;
} 
.bottom-bar__container {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .page-footer__container {
    grid-template-columns: 1fr;
  }
  .page-footer__logo {
    display: block;
    margin: auto;
  }
}