* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-shadow: none;
  font-family: "Montserrat", sans-serif;
}
body {
  background: #f1f1f1;
}
.header {
  background: #ee6c2a;
  color: #fff;
  padding: 40px;
}
.header__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.header__content h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 51.2px;
  text-align: center;
  text-transform: uppercase;
}
.header__content--logo img {
  max-width: 220px;
  width: 100%;
}
.grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.grid__content {
  max-width: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.grid__content--box img {
  width: 100%;
}
.assinatura {
  background: #ee6c2a;
  color: #fff;
  padding: 16px;
  text-align: center;
}
.assinatura p, .assinatura a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 15.85px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
@media screen and (max-width: 768px){
    .grid{
        padding: 40px 50px;
    }
    .grid__content{
        max-width: 100%;
        grid-template-columns: 1fr;
    }
}