@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@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{
    margin: 0;
    padding:0;
    font-family: 'Poppins';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    overflow-x: hidden !important; 
}
a:hover {
  color: #000000;
}
#section-ads {
  padding: 20px 0;
}
 
/* Nav */
.nav{
  background-color: #fff;
  margin-bottom: 0;
  padding: 15px 0;
  box-shadow: 10px 5px 5px 0 #f3f3f3;
}
.nav img{
  min-width: 130px;
  padding: 0;
  width: 140px;
}
/* Progress bar */
.progressDiv{
  background-color: var(--primaryColorBlue);
  padding: 20px 0;
}
.progressDiv h2, #progressText{
    color: #fff;
}
.progressBar{
  max-width: 450px;
  display: flex;
  margin: 10px auto 20px;
  gap: 20px; 
}
.progressStep.active{
  width: 50%;
  height: 5px;
  background-color: var(--primaryColorGreen);
}
.progressStep{
  width: 25%;
  height: 5px;
  border-radius: 20px;
  background-color: #efefef;
  transition: width 0.4s ease, background-color 0.4s ease;
}
#progressText{
  text-wrap: balance;
}
/* Section 0*/
#section-0{
  background-color: #fafafa;
  padding: 0 0 20px;
  min-height: 55vh;
}
/* Form */
fieldset h1{
  font-size: 24px;
  font-weight: 700;
  text-wrap: balance;
  color: var(--secondaryColorVioletLight);
}
fieldset h2{
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  font-size: 16px;
  text-wrap: balance;
  color: var(--secondaryColorVioletLight);
}
fieldset img.assistant{
  max-width: 100px;
  margin: 35px auto 20px;
  display: block;
}
fieldset{
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: none;
  text-align: center;
}
fieldset.active{
  display: flex;
}
fieldset.tyPage{
  display: flex;
}   
.radio-options{
  display: flex;
  flex-wrap: wrap;
  max-width: 760px;
  justify-content: space-evenly;
}
.smallCheckbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 5px 5px 5px;
  position: relative;
  width: 120px;
  margin: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, .1);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  text-align: center;
} 
.smallCheckbox input {
  display: none;
} 
.smallCheckbox img {
  display: block;
  width: 100%;
  max-width: 70px;
  height: auto; 
  transition: all 0.3s ease;
} 
.smallCheckbox span {
  display: block;
  padding: 8px; 
  font-size: 12px;
} 
.smallCheckbox:hover {
  color: #fff;
} 
.smallCheckbox:hover{
  transform: translateY(-3px);
  box-shadow: 9px 12px 18px 0 rgba(0, 0, 0, .1) !important;
  background-color: var(--primaryColorGreen);
}
.smallCheckbox:hover img{
  filter: brightness(0) invert(1);
}
.smallCheckbox input:checked~img , .radio-option input:checked~img{  
  filter: brightness(0) invert(1);
} 
.smallCheckbox:has(input:checked) {
  background-color: var(--primaryColorGreen); 
}
.smallCheckbox input:checked~span,  .radio-option input:checked~span{
  font-weight: 700;
  color: #fff;
}
.radio-options *{
  transition: all 0.3s ease;
}
.radio-options span{
  padding-top: 20px; 
}
.radio-option{
  display: flex;
  flex-direction: column; 
  align-items: center;
  width: 160px;
  margin: 10px;
  padding: 15px 5px 15px 5px;
  border-radius: 8px;
  background-color: #fff;
  border: none;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, .1);
  cursor: pointer;
}
.radio-option:has(input:checked), .radio-option:hover{
  background-color: var(--primaryColorGreen);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 9px 12px 18px 0 rgba(0, 0, 0, .1) !important; 
}
.radio-option input{
  display: none;
}
.radio-option:has(input:checked) img, .radio-option:hover img{
  filter: brightness(0) invert(1);
}
.radio-option img{
  width: 55px; 
} 
.slider-container {
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Range wrapper with min and max labels */
.range-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.range-label {
  width: 80px;
  text-align: center;
  font-weight: bold;
  color: #444;
}

/* Slider customization */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, var(--primaryColorGreen) 0%, #ddd 0%);
  border-radius: 5px;
  outline: none;
  margin: 0 10px;
  transition: background 0.3s;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--primaryColorBlue);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--primaryColorBlue);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

/* Value display */
#sliderValue {
  margin-top: 15px;
  font-size: 32px;
  font-weight: bold;
  color: var(--primaryColorGreen);
}
.selectContainer{
  width: 100%;
  max-width: 450px;
  margin-top: 20px;
}
span[title="Select one of the following options"]{
    color: #b8b8b8 !important;
}
label[for="country"] {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:active,
.select2-container--default .select2-selection--single:hover {
  border-color: var(--primaryColorGreen);
}
.select2-container .select2-selection--single{
  height: auto;
}
.select2-container .select2-selection--single .select2-selection__rendered{
  padding: 10px 20px 10px 10px;
  font-size: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--secondaryColorVioletDark);
  line-height: 28px;
}
.select2-dropdown {
  border-radius: 8px;
  border: 2px solid #f3f3f3;
}
.select2-search--dropdown .select2-search__field {
  border: 1px solid #ccc;
  padding: 6px;
  font-size: 1rem;
  border-radius: 4px;
}
.select2-results__option {
  padding: 8px;
  font-size: 1rem;
}
.select2-results__option--highlighted {
  background-color: var(--primaryColorGreen);
  color: white;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
  background-color: var(--primaryColorGreen);
}
.select2-container--default .select2-selection--single{
    border: 2px solid var(--secondaryColorVioletLight);
    border-radius: 8px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 10px;
}
/* Custom checkboxes */
label.check {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

label.check input {
  display: none;
}

label.check svg {
  overflow: visible;
}

.path {
  fill: none;
  stroke: #000;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease;
  stroke-dasharray: 0 0 240 9999999;
  stroke-dashoffset: 1;
  scale: -1 1;
  transform-origin: center;
  animation: hi 0.5s;
}

label.check input:checked~svg .path {
  stroke-dasharray: 0 262 70 9999999;
  transition-delay: 0s;
  scale: 1 1;
  stroke: var(--primaryColor);
  animation: none;
}

.slick-dots {
  display: flex;
  justify-content: center;
  font-size: 0;
  padding: 0;
  gap: 15px;
}

.slick-dots li button {
    margin-top: 20px;
  width: 15px;
  height: 15px;
  background-color: #000;
  border-radius: 20px;
  border: none;
  transition: all 0.3s ease;
}

.slick-dots .slick-active button {
  transform: scale(1.2);
  background-color: var(--primaryColorGreen);
}
@keyframes hi {
  0% {
    stroke-dashoffset: 20;
  }

  to {
    stroke-dashoffset: 1;
  }
}
label.error{
  color: red;
  margin-top: 10px;
  font-size: 11px;
}
.btn-row{
  margin-top: 40px;
  gap: 15px;
  align-items: center;
}
fieldset .btn-form{
  background: var(--primaryColorBlue);  
  color: #fff;
  width: 200px;
  padding: 5px 20px;
  font-size: 22px;
  transition: all 0.2s ease;
}

fieldset .btn-form:hover{
  color: #fff; 
  background: var(--primaryColorGreen);
}
.fi-rr-arrow-left:before{
  top: 3px;
  position: relative;
}
 .btn-prev{
    background-color: #fff;
    border-radius: 10px;
    height: 50px;
    width: 50px;
    border: 1px solid transparent;
    position: absolute;
    left: -100%;
    bottom: 50%;
    transform: translate(-50%, 50%);
 }
 .btn-prev:hover{
  border: 1px solid var(--secondaryColorVioletDark);
 }

 /* Input custom */
 ::placeholder{
  color: #b8b8b8;
 }
 .input { 
   height: 60px;
   max-width: 450px;
   width: 100%;
   font-size: 15px;
   padding: 12px;
   border-radius: 12px;
   border: 1.5px solid #b8b8b8;
   outline: none;
   transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
   box-shadow: 0px 0px 20px -18px;
 }
 .telefone-iti{
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 1000;
 }
 .telefone-iti input{
  width: 100%;
 }
 .iti{
  width: 100%;
 } 
 .input:hover {
   border: 2px solid lightgrey;
   box-shadow: 0px 0px 20px -17px;
 }

 .input:active {
   transform: scale(0.95);
 }

 .input:focus {
   border: 2px solid var(--secondaryColorVioletLight);
 }

 select{
  height: 50px;
  max-width: 450px;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #b8b8b8;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
  -webkit-appearance: none;
  background-image: url(/img/icons/arrow_down.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 95% center;
 }

 select:hover{
  border: 2px solid lightgrey;
  box-shadow: 0px 0px 20px -17px;
 }

 /* Disclaimer */
 .disclaimer{
  background-color: var(--secondaryColorVioletLight);
  border-radius: 15px;
  margin-top: 40px;
  align-items: center;
  height: auto;
 }
 .disclaimer img{
  max-width: 90px;
  max-height: 60px;
  object-fit: contain;
 }
 .disclaimer h4{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
 }
 .disclaimer p{
  color: #fff;
  font-weight: 300;
 }
 .disclaimer .path, .disclaimer label.check input:checked~svg .path{
  stroke: #fff;
 }
 .disclaimer svg{
  margin-right: 15px;
 }
.terms-box p{
  margin: 0;
}
.message{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 650px;
  margin: auto;
}
.message .logo{
  max-width: 150px;
  border-radius: 15px; 
  margin: 20px ;
}
.message-box{
    background-color: #fff;
      box-shadow: 9px 12px 18px 0 rgba(0, 0, 0, .1);
      border-radius: 10px;
      padding: 30px 30px;
      margin-top: 10px;
      width: 100%;
      max-width: 650px;
      align-items: center;
}
.modal .btn.btn-block{ 
  background-color: var(--primaryColorGreen);
  width: 200px;   
  color: #fff;  
  margin: auto;
}
.modal .btn.btn-block:hover{
  background-color: var(--primaryColorBlue);
}
.modal.show{
  display: flex !important;
  align-items: center;
  height: 100%;
}
.modal-content{
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: #000 !important;
 }
 .modal button.close{
  color: #000 !important;
 } 
.footerSection h2{
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--primaryColorBlue);
}
.footerSection h6{
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin: 0 0 10px 0;
    color: var(--primaryColorBlue);
}
.footerSection p{
  font-size: 14px;
  line-height: 1.1; 
  margin-bottom: 0;
  margin-top: auto;
}
.footerIcon{
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 20px;
  max-width: auto;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 2px 5px 7px 0 #f3f3f3;
}
.footerIcon p{
  text-align: left;
  text-wrap: balance;
}
.footerIcon img{
  max-width: 70px;
  padding: 0px;
}
.modal .modal-inner-content .btn {
  max-width: 200px;
  background-color: var(--primaryColorGreen) !important;
  color: #fff !important;
  font-size: 28px;
}

.modal-inner-content .btn:hover {
  background-color: var(--primaryColorBlue) !important;
}
.spinner-border.text-primary{ 
    color: var(--primaryColorBlue) !important;
}
  @media(max-width: 1400px) {
    .footerSection h2 {
      font-size: 20px;
    } 
  }
  @media(max-width: 1200px){ 
      .footerIconSlider{
          padding: 20px;
          max-width: 400px;
      }
          
    .arrowContainer{
      display: flex;
      gap: 15px;
      padding-right: 35px;
      justify-content: center;
    }
    .arrowContainer img{
      filter: var(--filter);
      max-width: 30px;
    }
    #prevArrow, #prevArrowFooter{
      transform: rotate(180deg);
    } 
  }
  @media(max-width: 992px){
    .footerIcon{
      max-width: 400px;
    }
    .footerIcon img{
      margin-right: 20px;
    }
    .footerSection .row{
        row-gap: 20px    
    }
  }
/* Menor do que LG */
 @media (max-width: 1024px){
  .radio-options p{
    margin: 0;
  }
 }
/* Menor do que MD */
  @media (max-width: 768px){
    .label-mob{
      display: flex;
      align-items: center;
    }

    .radio-options label.col-12 img{
      margin-right: 15px;
    }
    .many-options label{
      max-width: 200px; 
    }
    .many-options h3{
      font-size: 20px;
    }
    .radio-options h3, .many-options .check{
      margin-bottom: 0 !important;
    }
    .many-options .check{
      margin-bottom: 5px !important;
    }
    .many-options label.col-12 img{
      margin: 0 0 10px 0;
    }
    .disclaimer{
      justify-content: center;
      gap: 10px;
    }
    fieldset h2{
      font-size: 20px;
    }
    fieldset h1{
      font-size: 24px;
    }
        .select2-container .select2-selection--single .select2-selection__rendered{
          font-size: 18px;
        }
  }

 /* Menor do que SM */
 @media (max-width: 575px){
  fieldset h1{ 
    font-size: 26px;
  }
  fieldset h2{ 
    font-size: 18px;
  }
  .radio-options img{
    max-height: 70px;
    margin: 0 auto 0 auto;  
  }
  .terms-box img{
    display: none;
  } 
  .radio-options h3, .radio-options p{
    text-align: left;
  }
  .radio-options label.col-12{
    max-width: 370px;
  }
  .input, fieldset h2, fieldset h1, select, .telefone-iti{
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .telefone-iti input{
    max-width: 100%;
  }
  .many-options .check{
    margin: 0 !important;
    display: inline;
    width: 20px;
  }
  .modal-dialog{
    width: 100%;
  }
  .radio-options.many-options label.col-12{
    display: flex;
    gap: 15px;
  }
  .many-options h3{
    margin: 0;
  }
  .disclaimer{
    max-width: 300px;
    justify-content: center;
  }
  .disclaimer p{
    margin: 0;
    text-wrap: balance;
  }
  .disclaimer h4{
    font-size: 18px;
  }
  .terms-box label.check{
    flex-wrap: wrap; 
  }
  .terms-box img{
    margin: auto;
  }
  fieldset .terms-box{
    justify-content: center;
    padding: 15px 0 !important;
  }
  #email, .terms-box {
    max-width: 90%;
  }
  .message-box{
    flex-direction: column;
    align-items: center;
  }
  .message-box .d-flex{
    align-items: center;
  }
  .nav{
   padding: 15px 30px; 
  }
 }

 @media (max-width: 450px){ 
  fieldset h2{
    font-size: 16px;
  }
    .select2-container .select2-selection--single .select2-selection__rendered{
      font-size: 16px;
    }
  .footerIcon{
    max-width: unset;
  }
  #lastH2{
    font-size: 14px;
    margin-top: 20px !important;
  } 
  .radio-options label.col-12{
    max-width: 350px;
    padding-top: 10px;
  }
  label.check{
    position: relative;
    bottom: -20px;
  } 
  .radio-options.many-options label.col-12{
    padding-top: 15px;
    padding-bottom: 15px;
    align-items: center;
  }
  .radio-options.many-options label.col-12 img{
    width: 50px;
  }
  .radio-options.many-options label.col-12{
    margin: auto;
  }
  .img-label .label-mob{
    margin: auto;
  }
  .radio-options.img-label label.col-12 img{
    width: 100px;
  }
  .many-options .label-mob{
    gap: 15px;
  } 
  fieldset .terms-box{
    justify-content: center;
    height: auto;
    padding: 20px 0 !important;
  }
  .many-options label.check, .terms-box label.check{
    bottom: 0;
  }
  .radio-option{
    width: 140px;
  }
  .radio-options h5{
    max-width: 90%;
    text-align: left;
    font-size: 18px;
  }
  .many-options .label-mob {
    gap: 5px;
  }

  .radio-options.many-options label.col-12.col-md-3 {
    max-width: 300px;
    gap: 10px;
  }
 }

@media (max-width: 380px){
  .radio-options label.col-12 img{
    width: 50px;
    margin-right: 15px;
  }
  fieldset h1, .radio-options h3{
    font-size: 20px;
  }
}