html,
body {
  background: #fdfffc;
  color: #170315;
}
.cupom__content {
  border: 1px dashed #acacac;
  background: #fff;
  padding: 2%;
}
.cupom__content--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px dashed #acacac;
  padding-bottom: 2%;
}
.cupom__header--logo {
  width: 50%;
}
.cupom__header--logo img {
  background-color: var(--background-footer);
  border-radius: 15px;
  padding: 20px;
}
.cupom__header--text {
  text-align: right;
}
.cupom__content--infos {
  padding-top: 2%;
}
.cupom__content--infos h2 {
  margin-bottom: 16px;
}
.cupom__infos--btn {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .cupom__content--header {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .cupom__header--text {
    text-align: center;
  }
  .cupom__header--logo {
    width: 100%;
  }
}
