@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.content {
  background: linear-gradient(180deg, #ece9e6 0%, #ffffff 100%);
  height: 100dvh;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  overflow-x: hidden;
  display: grid;
  place-items: center;
}

.box-banner {
  width: 100%;
  aspect-ratio: 375/490;
  position: relative;
}

.img-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::after {
  animation: mist 2s infinite linear;
  background: url("../img/bg-banner.png") top left;
  background-size: cover;
  background-repeat: round;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 735px;
  height: 100%;
}

@keyframes mist {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -736px 0;
  }
}

@-webkit-keyframes bounce {
  0% {
  }
  100% {
    transform: translateY(-5px);
    transform: translateX(0%);
  }
}

.car {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  animation: bounce 1.5s infinite alternate;
}

.img-banner {
  width: 100%;
}

.desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-inline: 24px;
  position: relative;
}

.desc .logo {
  width: 301px;
  margin-bottom: 32px;
}

.desc h5 {
  font-size: 24px;
  color: #212121;
  text-align: center;
  margin-bottom: 0;
}

.desc .text {
  text-align: center;
  color: #212121;
  font-size: 14px;
}

.desc .label {
  text-align: center;
  color: #717171;
  margin: 0;
  font-size: 14px;
  margin-bottom: 24px;
}

.desc .button {
  text-align: center;
  text-decoration: none;
  background: #605ca9;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  width: 100%;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

.top {
  position: absolute;
  top: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.top .logo {
  width: 60%;
  height: auto;
}

.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.bottom a {
  display: flex;
  justify-content: center;
}

.bottom .button {
  width: 70%;
  margin-bottom: 50px;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

.button-faq {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.button-faq .btn-faq {
  width: 30%;
  margin-bottom: 50px;
}

.bottom .img-read {
  width: 100%;
}

.detail-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1f1f;
  border-radius: 30px 30px 0 0;
  height: 85vh;
  overflow-y: auto;
  padding: 24px;
}

.title-pages {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.faq-text {
  color: #fff;
}

ol,
ul,
li {
  color: #fff;
  margin-bottom: 8px;
  font-size: 16px;
}

ol {
  padding-inline-start: 20px;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
