* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  color: #666666;
  font-family: "Montserrat", sans-serif;
}
.container {
  width: 90%;
  max-width: 1076px;
  margin: 0 auto;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
p {
  font-size: 18px;
  margin-bottom: 30px;
}
h1,
h2 {
  color: #333;
  font-weight: 800;
}
img {
  display: block;
  max-width: 100%;
}
.btn {
  text-align: center;
  background: #ff7a00;
  color: #fff;
  text-transform: uppercase;
  padding: 16px 24px;
  display: inline-block;
  box-shadow: 0px 14px 34px rgba(255, 122, 0, 0.4),
    inset -2px -2px 0px rgba(0, 0, 0, 0.15),
    inset 2px 3px 0px rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  transition: ease 0.6s;
}
.btn:hover {
  transform: scale(1.06);
}

.sobre .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 120px 0;
}
.sobre h2 {
  font-size: 45px;
  margin-bottom: 90px;
}
.sobre h2::before {
  content: url(../img/book.png);
  display: block;
}
.area-sobre-text {
  padding-top: 60px;
}

#ebook {
  background: linear-gradient(
    7.19deg,
    rgba(58, 211, 147, 0.2) 5.6%,
    rgba(58, 211, 147, 0.2) 5.61%,
    rgba(59, 212, 148, 0) 94.41%
  );
  position: relative;
}
#ebook .container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card {
  background: rgba(240, 240, 240, 0.5);
  backdrop-filter: blur(27px);
  padding: 160px 65px 15px;
  border-radius: 20px;
  display: grid;
  position: relative;

  place-items: center;
}
.card img {
  position: absolute;
  top: -130px;
}
.preco {
  display: flex;
  gap: 24px;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.19);
  width: 100%;
  align-items: center;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.preco span {
  font-size: 16px;
  line-height: 0;
}
.preco strong {
  font-weight: 800;
  color: #333333;
  font-size: 65px;
}
.card li {
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  display: flex;
}
.card li::before {
  content: url(../img/check.png);
}
.card .btn {
  margin-top: 44px;
}
.bg {
  position: absolute;
  left: 52.5%;
  transform: translate3d(-50%, -50%, 0);
  top: 46%;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  text-align: center;
  background: #333333;
}
footer span {
  font-size: 18px;
  color: #3ad393;
}
footer small {
  color: #999;
  font-size: 16px;
}
@media (max-width: 1500px) {
  #ebook {
    height: auto;
    padding: 80px 0;
  }
}
@media (max-width: 900px) {
  #ebook {
    padding-bottom: 0;
  }

  .sobre .container {
    grid-template-columns: 1fr;
    padding: 80px 0 40px;
  }
  .bg {
    left: 0;
  }
  .bg svg {
    display: block;
    width: 100%;
  }
  .sobre h2 {
    margin-bottom: 40px;
    font-size: 24px;
  }
  p {
    font-size: 16px;
  }
  .card {
    width: 100%;
  }
  footer span {
    font-size: 16px;
  }
  footer small {
    font-size: 14px;
  }
}
@media (max-width: 370px) {
  .preco strong {
    font-size: 45px;
  }
  .card {
    padding: 160px 20px 20px;
  }
}
