main {
  max-width: none;
}

.max-width {
  --max-width: 64rem;
  max-width: var(--max-width, 64rem);
  margin-left: auto;
  margin-right: auto;
}

.banner {
  --max-width: 1440px;
  --min-height: 428px;
  position: relative;
  background-color: #3C8CB7;
  background: url('https://s3-sa-east-1.amazonaws.com/cdn.portosegurofaz.com.br/wp-content/uploads/2021/01/06075957/livelo__hero-content-bg.png'), url('https://s3-sa-east-1.amazonaws.com/cdn.portosegurofaz.com.br/wp-content/uploads/2021/01/06075939/livelo__hero-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: var(--max-width, 1440px);
  height: var(--min-height, 428px);
  margin: 0 auto;
  transition: 0.25s;
}
.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  max-width: 39ch;
  min-height: var(--min-height);
  transition: 0.25s;
}
.banner-logo {
  position: absolute;
  /*top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);*/
  bottom: 0;
  right: 0;
  transition: 0.25s;
}
@media (max-width: 45rem) {
  .banner {
    background-position: center right calc(50% - 8.25vw), center right calc(50% + 16.5vw);
  }
  .banner-content {
    width: 60%;
  }
  .banner-logo {
    /*left: 66%;*/
  }
}
@media (max-width: 30rem) {
  .banner {
    background-position: center right calc(50% - 12.5vw), center right calc(50% + 25vw);
  }
  .banner-content {
    /*width: 66%;*/
  }
  .banner-logo {
    /*left: 75%;*/
  }
}

.buy-now {
  --columns: 1fr;
  --gap:  1rem;
  place-items: center;
}
.buy-now img {
  max-width: 100%;
}
.buy-now-content {
  --max-width: 30rem;
  text-align: center;
}
@media (min-width: 45rem) {
  .buy-now {
      --columns: 5fr 7fr;
      --gap:  1rem;
      place-items: center;
  }
  .buy-now img {
      width: 100%;
  }
  .buy-now-content {
      margin-left: 0;
      text-align: left;
  }
  .buy-now-content h2 {
      text-align: inherit;
  }
}

.features {
  --columns: 1fr;
  --gap: 1.5rem;
  padding: 0;
}
.features span {
  font-size: inherit;
}
.feature {
  display: block;
  text-align: inherit;
  list-style: none;
}
.feature a {
  display: block;
  text-decoration-color: var(--color-primary);
}
.feature strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.feature span {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
@media (min-width: 45rem) {
  .features {
      --columns: repeat(3, 1fr);
  }
}