.page-wrapper {
  background-color: var(--clr-primary);
  min-height: 100svh;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.page-wrapper section {
  width: 100%;
}

/* NavBar */
.navbar-section {
  padding-block: 30px;
}

.navbar {
  padding: 18px 38px;
  border-radius: 100px;
  border: 0.7px solid #FFF;
  background: rgba(192, 201, 255, 0.40);
  backdrop-filter: blur(5px);
}

.navbar--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.google-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-wrapper span {
  font-size: 14px;
}

.google-logo {
  height: 30px;
}

.navbar-logo {
  height: 50px;
}

/* Hero */
.hero {
  padding-block: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero h1 {
  line-height: 40px;
  font-size: 40px;
  text-wrap: auto;
  max-width: 585px;
  font-weight: 400;
  position: relative;
}

.hero h1 span {
  font-weight: 700;
}

.hero-list__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.pig {
  height: 215px;
}

.hero-list__wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list__wrapper ul li {
  font-size: 16px;
  font-weight: 300;
  text-align: start;
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
}

.hero-list__wrapper ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 27px;
  height: 20px;
  background: url("/img/icons/bullet.svg") no-repeat center / contain;
}

.hero-list__wrapper ul li b {
  font-weight: 700;
}

.form-box {
  border-radius: 60px 60px 0 0;
  background: #FFF;
  box-shadow: 0 -14px 20px rgba(31, 8, 87, 0.10);
  min-height: 335px;
  padding: 35px 115px;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 1080px;
  max-width: 90%;
  margin: 0 auto;
}

@media(max-width: 992px) {
  .hero-list__wrapper {
    gap: 30px;
  }

  .hero-list__wrapper ul li {
    margin-bottom: 12px;
  }

  .pig {
    height: 165px;
  }

  .google-wrapper {
    display: none;
  }

  .cta {
    font-size: 20px;
  }

  .circle-icon {
    width: 35px;
    height: 35px;
  }

  .form-option label {
    font-size: 16px;
  }

}

@media (max-width: 880px) {
  .form-option label {
    font-size: 13px;
  }

  .form-options-grid {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .form-box {
    padding: 35px 25px;
  }

  .hero-list__wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .hero h1 {
    line-height: 40px;
    font-size: 36px;
  }

  .hero {
    padding: 0;
    margin-bottom: 40px;
  }

  .hero--inner {
    gap: 30px;
  }

  .hero-list__wrapper ul li {
    padding-left: 30px;
    text-wrap: auto;
    font-size: 15px;
  }


  .form-options-grid .form-option {
    width: 48%;
  }

  .pig {
    height: 150px;
    margin-bottom: 20px;
  }

  .form-box {
    border-radius: 40px;
  }

  .hero-m {
    margin-top: 40px;
    padding-bottom: 30px;
  }

  .form-option label {
    font-size: 13px;
    padding: 15px 10px;
  }

}

@media (max-width: 550px) {
  .cta {
    font-size: 20px;
  }

  .form-options-grid .form-option {
    min-width: 100%;
    width: 100%;
  }

  .form-option label {
    font-size: 16px;
    padding: 15px;
    max-width: 90%;
  }

  .navbar-cta {
    padding-inline: 15px;
    font-size: 14px;
    gap: 5px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .circle-icon {
    width: 20px;
    height: 20px;
  }

  .circle-icon img {
    height: 10px;
  }

  .navbar-logo {
    height: 30px;
  }

  .form-box {
    min-height: 390px;
  }

  .form-input input[type="text"] {
    height: 50px;
  }


  .message-box {
    padding: 60px 25px;
  }

  .no-map {
    font-size: 12px;
  }

  .agradecimento-paragraph {
    font-size: 15px;
    line-height: 1.2;
  }
}

@media (max-width: 414px) {
  .hero h1 {
    line-height: 1.2;
    font-size: 24px;
    text-wrap: balance;
  }

  .form-option label {
    font-size: 14px;
  }

  .form-box {
    padding: 35px 15px;
  }
}

@media (max-width: 380px) {
  .navbar-cta {
    display: none;
  }

  .navbar--inner {
    justify-content: center;
  }

  .form-option label {
    font-size: 13px;
  }
}

@media (max-width: 335px) {
  .form-option label {
    font-size: 12px;
  }
}