@media (max-width: 1200px) {
  .header {
    justify-content: space-around;
    text-align: center;
    gap: 24px;
  }
}

@media (max-width: 800px) {

  .header {
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    gap: 24px;
  }
  .contato p{
    text-align: center;
  }
  .contato {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
  }

  .contato span {
    font-size: 14px !important;
  }

  /* BANNER */

  .banner {
    height: 200px;
  }

  .banner-content h1 {
    font-size: 26px;
  }
}