@font-face {
  font-family: Brandon text;
  font-style: normal;
  font-weight: 500;
  src: url(https://dazroupaz.vteximg.com.br/arquivos/BrandonText-Regular.woff2.css)
      format("woff2"),
    url(https://dazroupaz.vteximg.com.br/arquivos/BrandonText-Regular.woff.css)
      format("woff");
}

@font-face {
  font-family: Brandon text;
  font-style: normal;
  font-weight: 600;
  src: url(https://dazroupaz.vteximg.com.br/arquivos/BrandonText-Medium.woff2.css)
      format("woff2"),
    url(https://dazroupaz.vteximg.com.br/arquivos/BrandonText-Medium.woff.css)
      format("woff");
}

@font-face {
  font-family: Brandon text;
  font-style: normal;
  font-weight: 800;
  src: url(https://dazroupaz.vteximg.com.br/arquivos/BrandonText-Bold.woff2.css)
      format("woff2"),
    url(https://dazroupaz.vteximg.com.br/arquivos/BrandonText-Bold.woff.css)
      format("woff");
}

body {
  font-family: Brandon text;
}

header {
  display: flex;
  color: #fb523a;
}
header img {
  height: 100px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 90%;
  gap: 5%;
  overflow: hidden;
  margin: 0px auto;
}

div.brand {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  background: none;
  border: none;
  align-items: center;
  color: #fb523a;
  font-size: 2em;
  font-weight: 600;
  font-family: Brandon text;
  min-height: 275px;
  justify-content: center;
  cursor: pointer;
  border-radius: 25px;
  transition: 0.3s background ease-in-out;
}
div.brand:hover {
  background-color: #fb523a0d;
}

.brand img {
  max-width: 70%;
  object-fit: contain;
  margin: 5% 10%;
}

div.brand:nth-child(even) img {
  order: 1;
}

.only-coupon {
  display: none;
}

.cp-act .only-coupon {
  margin-top: 10px;
  text-align: center;
  display: block;
}
.cp-act .only-coupon .website a {
  text-decoration: none;
  color: #fb523a;
  font-weight: 700;
  font-size: 1.5em;
}

.cp-act main.grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cp-act main img {
  width: 80%;
  max-width: 400px;
}
.cp-act main .coupon {
  text-align: center;
  margin-top: 50px;
  width: 300px;
  padding: 10px 60px;
  font-size: 2em;
  font-weight: 800;
  color: #000;
  border: 2px solid #fb523a;
  border-radius: 15px;
}

@media screen and (max-width: 800px) {
  header {
    flex-direction: column;
  }
  header img {
    height: 100px;
    width: 120px;
    margin: 0px 40%;
  }
  header h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 3em;
  }

  main.grid {
    grid-template-columns: 1fr;
    gap: 0%;
  }

  div.brand {
    flex-direction: column;
  }

  .brand img {
    max-width: 100%;
  }

  div.brand:nth-child(even) img {
    order: unset;
  }

  body.cp-act main span.coupon {
    padding: 10px 5px;
    font-size: 1.7em;
  }
}
