@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');

:root {
  --black: #000;
  --white: #fff;
  --green: #1f3a43;
  --lightgreen: #58d487;
  --lightgreen2: #53DD6C;
  --blue: #0d98ea;
  --platinum: #E8E9E7;
  --gradient: linear-gradient(130deg, rgba(31, 58, 67, 1) 0%, rgba(13, 152, 234, 1) 47%);
  ;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}

a:hover {
  color: #000000;
}

.body-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

section {
  width: 100%;
}

/* main */
.main {
  background: var(--platinum);
}

.nav {
  background: var(--white);
  padding: 15px 0;
}

.nav img {
  height: 65px;
  margin: 0 auto;
}

.progress-div {
  padding: 25px 0 35px 0;
  text-align: center;
  background: var(--green);
}

.progressBar {
  max-width: 450px;
  display: flex;
  margin: 10px auto 20px;
  gap: 20px;
}

.progressStep {
  width: 25%;
  height: 5px;
  border-radius: 20px;
  background-color: #efefef;
  transition: width 0.4s ease, background-color 0.4s ease;
}

.body-form #progress-1,
.submission #progress-2,
.ty-page #progress-3 {
  width: 50%;
  height: 5px;
  background-color: var(--lightgreen);
}

.title h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.stars {
  margin-top: 25px;
}

.stars,
.stars-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stars p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.stars p:first-of-type {
  font-size: 26px;
  font-weight: 700;
}

.stars-icons {
  margin: 0 10px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }

  100% {
    opacity: var(--final-opacity);
    transform: translateY(0);
  }
}

.stars-icons img {
  aspect-ratio: 1;
  height: 30px;
  margin: 0 2px;
  opacity: 0;
  animation: fadeInUp 1.3s ease forwards;
}

.stars-icons img {
  --final-opacity: 1;
}

.stars-icons img:last-of-type {
  --final-opacity: 0.3;
}

.stars-icons img:nth-child(1) {
  animation-delay: 0s;
}

.stars-icons img:nth-child(2) {
  animation-delay: 0.1s;
}

.stars-icons img:nth-child(3) {
  animation-delay: 0.2s;
}

.stars-icons img:nth-child(4) {
  animation-delay: 0.3s;
}

.stars-icons img:nth-child(5) {
  animation-delay: 0.4s;
}

.stars-icons img:nth-child(6) {
  animation-delay: 0.5s;
}

.stars-icons img:nth-child(7) {
  animation-delay: 0.6s;
}

.stars-icons img:nth-child(8) {
  animation-delay: 0.7s;
}

.stars-icons img:nth-child(9) {
  animation-delay: 0.8s;
}

.stars-icons img:nth-child(10) {
  animation-delay: 0.9s;
}

.stars-icons img:last-of-type {
  --final-opacity: 0.3;
}

/* fortm */
.form-section {
  text-align: center;
}

.flow-form {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 0 60px 0;
}

.form-step {
  display: none;
  width: 100%;
  padding: 0 100px;
}

.form-step.active {
  display: block;
}

.form-button {
  display: block;
  margin: 10px auto 0 auto;
}

.flow-form h6 {
  background: var(--green);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

.flow-form h2 {
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin: 10px 0 20px 0;
}

.form-step h3 {
  font-size: 30px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.1;
  text-wrap: balance;
}

/* radio buttons */
.radio-buton input[type="radio"],
.radio-buton input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-opt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 0;
}

.radio-buton {
  width: 370px;
  margin: 0;
}

.radio-buton label {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 335px;
  height: 85px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: var(--green);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
  transition: all 0.5s ease;
}

.radio-buton label span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-left: 10px;
  transition: all 0.5s ease;
}

.radio-opt-normal .radio-buton label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}

.radio-opt-normal .radio-buton:first-of-type {
  margin-right: 5px;
}

.radio-opt-normal .radio-buton:last-of-type {
  margin-left: 5px;
}

.radio-buton label img {
  height: 25px;
  margin: 0 10px 0 0;
}

.radio-opt-normal .radio-buton label img {
  height: 20px;
}

.radio-buton label:hover,
.radio-buton input[type="radio"]:checked+label,
.radio-buton input[type="checkbox"]:checked+label {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  transform: scale(1.07);
}

.radio-buton label:hover span,
.radio-buton input[type="radio"]:checked+label span,
.radio-buton input[type="checkbox"]:checked+label span {
  color: var(--white);
}

.radio-buton label:hover img,
.radio-buton input[type="radio"]:checked+label img,
.radio-buton input[type="checkbox"]:checked+label img {
  filter: brightness(0) invert(1);
}

.form-step button {
  width: 250px;
  height: 65px;
  border-radius: 20px;
  background: var(--blue);
  font-size: 22px;
  color: var(--white);
  border: none;
  margin-top: 30px;
  transition: all 0.5s ease;
  font-weight: 700;
}

.form-step button:hover {
  background: var(--green);
  transform: scale(1.07);
}

/* final form */
.submission .main {
  background: none;
}

.over {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes scale {
  0% {
    transform: scale(1.0);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.0);
  }
}

.scale {
  animation: scale 1s ease-out forwards;
}

.submission-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
  text-align: center;
}

.form-title {
  margin-bottom: 10px;
}

.form-title h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin: 0 auto;
}

.form-sub {
  margin: 15px auto 0 auto;
  text-align: center;
}

.form-title p {
  font-size: 18px;
  color: var(--green);
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  max-width: 100%;
  text-wrap: balance;
}

.select2-container--default .select2-selection--single {
  border: 2px solid #eeeeee;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.select2-container .select2-selection--single .select2-selection__rendered{
  padding-left: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder{
  color: #72858f;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{
  border-radius: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 100%;
}
.select { 
  margin-top: 20px;
}

.form-input input {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 2px solid #eee;
  margin-top: 20px;
  padding: 0 0 0 20px;
  font-size: 16px;
  color: var(--green) !important;
  text-align: left !important;
}

.form-input input:focus-visible {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #72858f;
}

:-moz-placeholder {
  color: #72858f;
  opacity: 1;
}

::-moz-placeholder {
  color: #72858f;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #72858f;
}

::-ms-input-placeholder {
  color: #72858f;
}

::placeholder {
  color: #72858f;
}

.form-check {
  margin-top: 15px;
  text-align: center;
  padding: 0;
}

.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--green);
  font-size: 10px;
  font-weight: 400;
  text-align: left;
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--green);
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0.5px;
  margin-top: 0px;
  font-size: 13px;
}

#politica-link {
  color: var(--blue);
  text-decoration: none;
}

#politica-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.form-button {
  width: 300px;
  height: 45px;
  border-radius: 10px;
  border: none;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin: 30px auto 0 auto;
  transition: all 0.6s ease;
}

.form-button:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.03);
}

.error,
#terms-error {
  font-size: 11px;
  color: red;
  font-weight: 400;
  text-align: center;
}

/* section1 */
.seciton1 {
  padding: 30px 0 0 0;
}

.persona img {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}

.vant-slider .slick-track {
  padding: 20px 0;
}

.vant {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.vant-icon {
  height: 85px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotateAndMorph 2s linear infinite;
}

.vant-icon img {
  height: 40px;
  filter: brightness(0) invert(1);
}

@keyframes rotateAndMorph {
  0% {
    transform: rotate(0deg) scale(1.0);
  }

  50% {
    transform: rotate(30deg) scale(1.05);
  }

  100% {
    transform: rotate(0deg) scale(1.0);
  }
}

.vant h4 {
  font-weight: 700;
  color: var(--green);
  font-size: 26px;
  margin: 0 0 0 15px;
  line-height: 1.1;
}

/* offer styles */
.section2 {
  padding: 70px 0;
  width: 90%;
  margin: 0 auto;
  border-radius: 50px 50px 0 0;
  margin-top: -100px;
  background: var(--white);
}

.progress-offer {
  padding: 40px 0 160px 0;
}

.offer {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 0 30px;
  cursor: pointer;
  transition: all 0.5s ease;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}

#offers-container>div:first-child .offer {
  border: 1px solid var(--blue);
  transform: scale(1.05);
}

#offers-container>div:first-child .offer:hover {
  transform: scale(1.1);
}

#offers-container>div .offer:hover {
  border: 1px solid var(--blue);
  ;
}

.number {
  background: var(--blue);
  padding: 5px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 20px 0;
  filter: grayscale(1);
  transition: all 0.4s ease;
}

#offers-container>div:first-child .offer .number {
  filter: none;
}

.offer:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#offers-container>div .offer:hover .number {
  filter: none;
}

.aparelho {
  width: 20%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aparelho img {
  max-width: 90%;
  margin: 0 auto;
}

.info {
  width: 40%;
}

.info {
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  padding: 40px;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-btn {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  margin-left: 30px;
}

.info ul {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
}

.info ul li {
  font-size: 16px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.1;
  margin: 10px 0 0 0;
  position: relative;
  padding-left: 30px;
}

.info ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: var(--green);
}

.info h4,
.info-btn h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}

.info h6 {
  font-size: 24px;
  font-weight: 600;
  color: #1f3a43;
}

.avalia {
  text-align: center;
}

.info-btn h4 {
  color: var(--green);
  font-weight: 400;
  font-size: 20px;
}

.info-btn p {
  font-size: 30px;
  color: var(--blue);
  font-weight: 700;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulseScale 1.5s ease-in-out infinite;
  filter: grayscale(1);
}

#offers-container>div:first-child .offer .info-btn p {
  filter: none;
}

#offers-container>div .offer:hover .info-btn p {
  filter: none;
}

.info-btn p img {
  height: 40px;
}

@keyframes pulseScale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.info-cta {
  text-align: center;
}

.info-cta h6 {
  font-weight: 700;
  color: var(--lightgreen);
  margin: 20px 0 0 0;
  font-size: 20px;
  cursor: pointer;
}

.info-cta h6:hover {
  transition: all 0.5s ease;
  text-decoration: underline;
  transform: scale(1.1);
}

.info-btn button {
  width: 250px;
  height: 65px;
  border-radius: 20px;
  background: var(--green);
  font-size: 22px;
  color: var(--white);
  border: none;
  transition: all 0.5s ease;
  font-weight: 700;
  padding: 0 15px;
}

.info-btn button:hover {
  transform: scale(1.07);
}

/* sections ads */
#section-ads {
  padding: 30px 0;
  text-align: center;
}

/* ty */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Pop-up content box */
.popup-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  width: 650px;
  min-height: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.popup-content img {
  margin-bottom: 40px;
  height: 130px;
}

.popup-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

.popup-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.1;
  text-wrap: balance;
}

.popup-close {
  width: 250px;
  height: 65px;
  border-radius: 20px;
  background: var(--green);
  font-size: 22px;
  color: var(--white);
  border: none;
  margin-top: 30px;
  transition: all 0.5s ease;
  font-weight: 700;
}

.popup-close:hover {
  transform: scale(1.07);
}

/* Media Queries */
@media only screen and (max-width: 1500px) {
  .radio-buton {
    width: 50%;
  }

  .radio-buton label {
    width: 90%;
    font-size: 17px;
  }

  .vant h4 {
    font-size: 20px;
  }

  .persona img {
    width: 100%;
  }

  .info h4,
  .info-btn h4 {
    font-size: 22px;
  }

  .info ul li {
    font-size: 14px;
  }

  .info-btn button {
    width: 100%;
  }

  .info-btn button {
    font-size: 18px;
  }

  .info-cta h6 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1200px) {
  .vant h4 {
    font-size: 17px;
  }

  .vant-icon {
    height: 65px;
  }

  .title h1 {
    font-size: 28px;
  }

  .radio-buton label:hover,
  .radio-buton input[type="radio"]:checked+label,
  .radio-buton input[type="checkbox"]:checked+label {
    transform: scale(1.04);
  }

  .offer {
    padding: 0 15px;
  }

  .info,
  .info-btn {
    width: 35%;
  }

  .info ul li {
    text-wrap: balance;
  }
}

@media only screen and (max-width: 1080px) {
  .aparelho {
    width: 20%;
  }

  .info,
  .info-btn {
    width: 40%;
  }

  .aparelho img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  body {
    justify-content: flex-start;
  }

  .vant-slider {
    margin-top: 60px;
  }

  .title h1,
  .flow-form h2 {
    text-wrap: balance;
  }

  .offer {
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0;
  }

  .aparelho {
    width: 100%;
    border-bottom: 2px solid var(--blue);
  }

  .aparelho img {
    max-width: 100%;
    height: 150px;
  }

  .info,
  .info-btn {
    width: 45%;
    min-width: 45%;
    margin-left: 0;
  }

  .info {
    border-left: none;
  }

  .info-btn {
    flex-direction: column;
  }

  .info-cta {
    width: 100%;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 768px) {

  .radio-buton,
  .radio-buton label {
    width: 100%;
  }

  .container-md {
    max-width: 90%;
  }

  .form-step h3 {
    font-size: 22px;
  }

  .stars {
    flex-wrap: wrap;
    padding: 0 30px;
  }

  .stars p:last-of-type {
    margin-top: 10px;
  }

  .form-step {
    padding: 0 50px;
  }

  .vant-slider {
    margin: 0;
    padding: 30px 0;
  }

  .section2 {
    width: 100%;
    padding: 50px 20px;
  }

  .info,
  .info-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 30px;
  }

  .info ul li {
    padding: 0;
  }

  .info ul li::before {
    display: none;
  }

  .info-btn {
    border-left: none;
    border-top: 2px solid var(--blue);
  }
}

@media only screen and (max-width: 600px) {
  .container-md {
    max-width: 95%;
  }

  .form-step {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 550px) {
  .vant {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .vant h4 {
    font-size: 25px;
    margin: 20px 0 0 0;
    text-align: center;
    text-wrap: balance;
  }

  .vant-icon {
    height: 110px;
  }

  .vant-icon img {
    height: 60px;
  }

  .form-title h3 {
    font-size: 24px;
    text-wrap: balance;
  }
}

@media only screen and (max-width: 435px) {
  .title h1 {
    font-size: 22px;
  }

  .stars-icons img {
    height: 20px;
  }

  .form-step button {
    width: 100%;
  }

  .submission-form,
  .form-button {
    width: 100%;
  }
}

@media only screen and (max-width: 414px) {
  .title h1 {
    font-size: 20px;
  }

  .stars-icons img {
    height: 22px;
  }

  .stars p {
    font-size: 20px;
  }

  .stars p:first-of-type {
    margin-bottom: 10px;
  }

  .form-step h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 375px) {
  .form-title h3 {
    font-size: 22px;
  }

  .form-title p {
    font-size: 14px;
  }

  .form-check {
    text-align: left;
  }
}