@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* hide aff pixel */
img[src="https://tracking.adstrategysites.com/aff_lsr?transaction_id=undefined"] {
    display: none;
}

:root{
  --white: #fff;
  --black: #0C0910;
  --darkblue: #00007D;
  --blue: #0075C4;
  --lightblue: #339AFF;
  --extralihgtblue: rgba(51, 154, 255, 0.10);
  --pink: #FA1E50;
  --grey: #D9D9D9;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Manrope", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* navbar */
.nav {
  background: var(--white);
  padding: 20px 0;
}
.nav.scrolled {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.nav-logo img {
  height: 50px;
  cursor: pointer;
}
.nav-menu ul {
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu ul li {
  margin: 0;
  color: var(--darkblue);
  cursor: pointer;
}
.nav-menu ul li:hover {
  color: var(--pink);
  text-decoration: underline;
}
.nav-active {
  color: var(--pink) !important;
  text-decoration: underline;
}
/* header */
.header {
  margin-top: 85px;
  padding: 20px 0 50px 0;
}
.header-txt h3 {
  color: var(--blue);
  font-size: 28px;
  font-weight: 400;
}
.header-txt h1 {
  color: var(--darkblue);
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 10px 0 20px 0;
}
.header-txt p {
  color: var(--darkblue);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 20px 0;
}
.header-txt p span {
  font-weight: 700;
}
.header-img img {
  width: 100%;
}
/* form */
.form-step {
  display: none;
  width: 100%;
}
.form-step.active {
  display: block;
}
#contactform {
  width: 100%;
  min-height: 235px;
  border-radius: 50px;
  background: var(--white);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 125, 0.20);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  margin-top: -80px;
  text-align: center;
}
.form-step h3 {
  color: var(--darkblue);
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}
.form-step h5 {
  color: var(--blue);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}
.form-step h4 {
  color: var(--blue);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 20px 0;
}
.range-container {
  position: relative;
  margin: 20px 0;
  text-align: center;
}
input[type=range] {
  -webkit-appearance: none;
  width: 80%;
  margin: 10px 0;
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--lightblue) 0%, var(--lightblue) var(--slider-value, 0%), var(--grey) var(--slider-value, 0%), var(--grey) 100%); /* Default gradient */
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
  margin: -10px 0 0 0px;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--lightblue) 0%, var(--lightblue) var(--slider-value, 0%), var(--grey) var(--slider-value, 0%), var(--grey) 100%);
}
input[type=range]::-moz-range-track {
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--lightblue) 0%, var(--lightblue) var(--slider-value, 0%), var(--grey) var(--slider-value, 0%), var(--grey) 100%);
}
input[type=range]::-ms-track {
  height: 12px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}
input[type=range]::-ms-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
  margin: -10px 0 0 0px;
}
#rangeValue {
  color: var(--darkblue);
  font-size: 70px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.1;
  width: 320px;
}
.value-symb {
  color: var(--blue);
  font-size: 30px;
  font-weight: 500;
  margin-left: 5px;
}
.range-container h6 {
  color: var(--black);
  font-size: 22px;
  font-weight: 300;
}
.range-container p {
  color: var(--black);
  font-size: 15px;
  font-weight: 300;
}
.form-input {
  text-align: left;
}
.form-input input, .form-input select {
  width: 100%;
  height: 40px;
  background: var(--white);
  border-radius: 15px;
  border: 1px solid var(--blue);
  font-size: 16px;
  color: var(--black) !important;
  font-weight: 400 !important;
  -webkit-appearance: none;
  text-align: left !important;
  padding-left: 20px;
}
::-webkit-input-placeholder {
  color: var(--black);
}
:-moz-placeholder {
  color: var(--black);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--black);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--black);
}
::-ms-input-placeholder {
  color: var(--black);
}
::placeholder {
  color: var(--black);
}
.form-input input:focus-visible, .form-input select:focus-visible {
  outline: none;
}
.form-input p {
  font-size: 18px;
  font-weight: 400;
  color: var(--darkblue);
  margin: 0 0 10px 0;
  line-height: 1.1;
}
.habitacao_inputs, .consumo_inputs, .extra-inputs-habitacao, .extra-inputs-consumo, .imovel-extra, .renda-extra, .titular-extra, .postal-extra, .contrato-extra, .contrato-extra2  {
  display: none;
}
.extra-inputs-habitacao p, .extra-inputs-consumo p, .sit_prof p, .contrato-extra p, .contrato-extra2 p {
  margin: 20px 0 10px 0 !important;
}
.input-row {
  margin: 20px 0;
}
.input-row2 {
  margin: 0 0 20px 0;
}
.radio-inputs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 40px 0 30px 0;
}
.radio-inputs2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 20px 0;
}
.radio-title {
  width: 50%;
  text-align: left;
}
.radio-title.mb-3{
    width: 60%;
    text-align: center;
}
.radio-title p {
  font-size: 18px;
  font-weight: 400;
  color: var(--darkblue);
  line-height: 1.1;
  margin: 0;
} 
/* big */
.radio-opt-big {
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px auto 0 auto;
}
.radio-buton1 {
  width: 50%;
}
.radio-buton1 input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton1 label {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 95%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto;
}
.radio-buton1 label:hover, .radio-buton1 input[type="radio"]:checked + label {
  background: var(--darkblue);
  border: 1px solid var(--darkblue);
  color: var(--white);
}
.radio-opt {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.radio-buton {
  width: 50%;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 90%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0 auto;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--darkblue);
  border: 1px solid var(--darkblue);
  color: var(--white);
}
.form-check {
  margin: 0 0 8px 0;
}
.form-check label {
  margin: 0px 0 0 -10px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  font-weight: 200;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--blue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0.5px;
  margin-top: -0.5px;
  font-size: 12px;
}
#politica-link {
  color: var(--black);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--purple);
  text-decoration: underline;
}
.form-btn {
  width: 280px;
  height: 60px;
  border-radius: 20px;
  background: var(--pink);
  color: var(--white);
  font-size: 30px;
  font-weight: 800;
  border: none;
  margin-top: 10px;
  transition: all 0.6s ease;
}
.form-btn:hover {
  transform: scale(1.03);
  background: var(--lightblue);
  color: var(--white);
}
.error, #terms-error {
  font-size: 11px;
  line-height: 1;
  color: darkblue !important;
  font-style: normal;
  width: 100%;
  font-weight: 200;
  text-align: center;
}
.radio-errors {
  margin-top: 10px;
  display: none;
}
/* Loader */
.loading-step {
  width: 100%;
  display: none;
}
.loading-step.active {
  display: block;
}
.loading-step h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--darkblue);
  line-height: 1.1;
  margin: 0;
}
.loading-step h3 span {
  font-size: 18px;
  font-weight: 400;
  color: var(--blue);
}
.circle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.circle__item {
  width: 90px;
  height: 90px;
  position: relative;
}
.circle__spinner {
  width: 90px;
  height: 90px;
}
.circle__spinner .path {
  stroke: var(--pink);
  stroke-linecap: round;
  animation: dash 12s linear;
}
.circle__percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-weight: bold;
  color: var(--pink);
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 130, 150;
    stroke-dashoffset: 0;
  }
}
.persona-slider {
  width: 100%;
}
.persona {
  border-radius: 20px;
  padding: 35px 25px;
  background: var(--extralihgtblue);
  margin-top: 20px;
}
.persona-title {
  color: var(--blue);
  font-weight: 700;
  font-size: 20px;
}
.persona-p {
  font-size: 15px;
  line-height: 1.2;
  color: var(--black);
}
.persona-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--darkblue);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.persona-name img {
  width: 140px;
}
/* Messages */
.message-box {
  width: 100%;
  min-height: 235px;
  border-radius: 50px;
  background: var(--white);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 125, 0.20);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  margin-top: -80px;
  text-align: center;
}
.message-box h3 {
  font-size: 40px;
  color: var(--darkblue);
  font-weight: 700;
}
.message-box p {
  color: var(--black);
  font-size: 16px;
  max-width: 90%;
  line-height: 1.2;
  margin: 10px auto 0 auto;
}
/* offerwall */
.offer {
  width: 90%;
  height: 190px;
  border-radius: 20px;
  padding: 10px 30px;
  background: var(--white);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 125, 0.20);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -20px 0 50px 0;
  transition: all 0.6s ease;
}
.offer:hover {
  transform: scale(1.03);
}
.offer-logo {
  width: 25%;
  padding: 0 10px;
}
.offer-logo img {
  max-width: 90%;
  margin: 0 auto;
}
.offer-txt {
  width: 50%;
  padding: 0 30px 0 10px;
  text-align: left;
}
.offer-txt p {
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}
.offer-cta {
  width: 20%;
  height: 55px;
  background: var(--pink);
  border-radius: 20px;
  border: none;
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  transition: all 0.6s ease;
}
.offer-cta:hover {
  transform: scale(1.03);
  background: var(--blue);
  color: var(--white);
}
/* section1 */
.section1 {
  text-align: center;
  padding: 40px 0;
}
.sec1-outer {
  border-radius: 30px;
  background: var(--extralihgtblue);
  height: 250px;
}
.sec1-txt {
  padding: 40px 0 0 0;
}
.sec1-txt h3 {
  color: var(--darkblue);
  font-size: 35px;
  font-weight: 300;
}
.sec1-txt h3 span {
  font-weight: 700;
}
.sec1-vant {
  margin-top: -100px;
}
.vant-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vant-box {
  width: 22%;
  height: 235px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 125, 0.20);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.6s ease;
}
.vant-box:hover {
  transform: scale(1.08);
}
.vant-box img {
  height: 80px;
  margin-bottom: 20px;
}
.vant-box h6 {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.banco {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.banco img {
  height: 80px;
}
.banco p {
  margin: 0 0 0 30px;
  line-height: 1.1;
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  max-width: 70%;
}
/* section2 */
.section2 {
  padding: 70px 0;
}
.sec2-txt h3 {
  color: var(--darkblue);
  font-size: 50px;
  font-weight: 700;
}
.sec2-txt h6 {
  color: var(--blue);
  font-size: 25px;
  font-weight: 400;
}
.sec2-txt p {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  max-width: 90%;
  line-height: 1.3;
}
.sec2-txt p span {
  font-weight: 700;
}
.caso-slide img {
  margin: 0 auto;
  max-width: 100%;
  padding: 20px;
  transition: all 0.6s ease;
}
.caso-slide img:hover {
  transform: scale(1.02);
}
/* section 3 */
.section3 {
  text-align: center;
  padding: 30px 0 80px 0;
}
.faq-row {
  border-radius: 40px;
  background: var(--extralihgtblue);
  padding: 50px 0;
}
.sec3-txt {
  margin-bottom: 30px;
}
.sec3-txt h3 {
  color: var(--darkblue);
  font-size: 35px;
  font-weight: 700;
}
.accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 10px;
}
.accordion-button {
  border-radius: 20px !important;
  color: var(--darkblue);
  font-size: 20px;
  font-weight: 700;
  padding: 18px 40px;
}
.accordion-button:focus {
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background: var(--darkblue);
  color: var(--white);
}
.accordion-button::after {
  background-image: url('/versaob_assests/img/drop.svg');
  width: 25px;
  height: 15px;  
  background-size: 24px;
}
.accordion-button:not(.collapsed)::after {
  background-image: url('/versaob_assests/img/drop.svg');
  width: 25px;
  height: 15px;  
  background-size: 24px;
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
}
.accordion-body {
  text-align: left;
  color: var(--darkblue);
  font-size: 15px;
  font-weight: 400;
  padding: 15px 50px 15px 40px;
}
.accordion-body ul {
  margin: 10px 0 0 0;
}
/* footer */
.footer {
  padding: 50px 0;
  background: var(--darkblue);
}
.footer-txt h3 {
  color: var(--white);
  font-size: 35px;
  font-weight: 700;
}
.footer-cta {
  text-align: right;
}
.foot-cta {
  width: 280px;
  height: 65px;
  background: var(--pink);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  border: none;
  border-radius: 20px;
  transition: all 0.6s ease;
}
.foot-cta:hover {
  transform: scale(1.03);
  background: var(--lightblue);
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1400px) {
  .nav-menu ul li {
    font-size: 14px;
  }
  .sec2-txt h6 {
    font-size: 21px;
  }
  .sec2-txt p {
    font-size: 16px;
  }
  .footer-txt h3 {
    font-size: 30px;
  }
  .vant-box h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1200px) {
  .nav-logo img {
    height: 40px;
  }
  .header-txt h3 {
    font-size: 24px;
  }
  .header-txt h1 {
    font-size: 40px;
  }
  .header-txt p {
    font-size: 13px;
  }
  #contactform {
    margin-top: -40px;
  }
  .nav-menu ul li {
    font-size: 15px;
  }
  .nav-menu {
    width: 45%;
  }
  .form-step h3 {
    font-size: 30px;
  }
  .form-step h5 {
    font-size: 22px;
  }
  .sec1-txt h3 {
    font-size: 30px;
  }
  .vant-box {
    height: auto;
    padding: 30px 15px;
  }
  .vant-box h6 {
    font-size: 15px;
  }
  .vant-box img {
    height: 60px;
  }
  .banco p {
    font-size: 14px;
    max-width: 100%;
  }
  .sec2-txt h6 {
    font-size: 22px;
    max-width: 80%;
  }
  .accordion-button {
    font-size: 17px;
  }
  .accordion-body {
    font-size: 14px;
  }
  #contactform {
    padding: 30px 0;
  }
  .radio-title p, .form-input p {
    font-size: 14px;
  }
  .range-container p {
    font-size: 14px;
  }
  .radio-inputs {
    margin: 30px 0;
  }
  .sec1-outer {
    height: 225px;
  }
  .offer {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 1080px) {
  .header-txt img {
    height: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .nav-menu {
    width: 50%;
  }
  .nav-menu ul li {
    font-size: 13px;
  }
  .header-txt h3 {
    font-size: 18px;
  }
  .header-txt h1 {
    font-size: 30px;
  }
  .header-txt p {
    font-size: 11px;
  }
  #form {
    padding-bottom: 30px;
  }
  .sec1-outer {
    height: 250px;
  }
  .sec1-txt h3 {
    font-size: 35px;
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  .vant-line {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .vant-box {
    width: 38%;
    margin: 15px 0;
  }
  .vant-box h6 {
    font-size: 17px;
  }
  .sec2-txt h3 {
    font-size: 45px;
  }
  .footer-txt h3 {
    font-size: 28px;
    max-width: 95%;
  }
  .accordion-button {
    font-size: 16px;
  }
  .offer {
    flex-wrap: wrap;
    height: auto;
    padding: 30px 10px;
    margin: 10px 0;
  }
  .offer-logo {
    width: 90%;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--darkblue);
  }
  .offer-txt p {
    font-size: 13px;
  }
  .offer-logo img {
    width: 150px;
    margin-bottom: 20px;
  }
  .offer-txt {
    width: 60%;
    padding: 0 25px;
  }
  .offer-cta {
    width: 30%;
  }
}
@media only screen and (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .nav-logo {
    text-align: center;
  }
  .header {
    text-align: center;
  }
  .header-img img {
    width: 60%;
  }
  #form {
    padding-bottom: 0;
  }
  .header-txt h3 {
    font-size: 22px;
  }
  .header-txt h1 {
    font-size: 45px;
  }
  .header-txt p {
    font-size: 13px;
  }
  .header-txt img {
    margin-bottom: 30px;
  }
  #contactform {
    margin-top: -50px;
    padding: 30px;
  }
  .radio-title p, .form-input p {
    font-size: 15px;
  }
  .form-input, .input-row{
    margin: 0 0 15px 0;
  }
  .radio-inputs {
    margin: 10px 0 20px 0;
  }
  .sec1-outer {
    height: 235px;
  }
  .sec1-txt h3 {
    font-size: 30px;
    max-width: 75%;
    margin: 0 auto 20px auto;
  }
  .vant-box {
    width: 45%;
  }
  .banco img {
    height: 70px;
  }
  .banco p {
    font-size: 13px;
  }
  .section2 {
    padding: 60px 0 70px 0;
    text-align: center;
  }
  .sec2-txt h6 {
    max-width: 100%;
  }
  .sec2-txt p {
    margin: 0 auto;
  }
  .sec3-txt h3 {
    font-size: 30px;
  }
  .footer, .footer-cta {
    text-align: center;
  }
  .footer-txt h3 {
    max-width: 100%;
    font-size: 28px;
  }
  .foot-cta {
    margin-top: 20px;
  }
  .offer-txt {
    width: 90%;
    text-align: center;
    margin-bottom: 20px;
  }
  .offer-cta {
    width: 250px;
  }
  .offer {
    margin: 15px 0;
  }
}
@media only screen and (max-width: 550px) {
  .header-txt h1 {
    font-size: 40px;
  }
  .form-step h5, .range-container h6, .sec2-txt h6 {
    font-size: 20px;
  }
  .vant-box h6 {
    font-size: 16px;
  }
  .sec2-txt p {
    font-size: 15px;
  }
  .message-box h3 {
    font-size: 30px;
  }
  .message-box p {
    font-size: 14px;
  }
  .radio-opt-big {
    width: 100%;
  }
  .radio-buton1 label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 475px) {
  .header-txt h3 {
    font-size: 20px;
  }
  .header-txt h1 {
    font-size: 35px;
  }
  .header-txt p {
    font-size: 11px;
  }
  .form-step h3 {
    font-size: 28px;
  }
  .form-step h5, .range-container h6, .sec2-txt h6 {
    font-size: 16px;
  }
  .sec1-txt h3 {
    max-width: 90%;
  }
  .vant-box h6 {
    font-size: 14px;
  }
  .accordion-button {
    font-size: 14px;
  }
  .accordion-body {
    font-size: 12px;
    line-height: 1.3;
  }
  .footer-txt h3 {
    font-size: 25px;
  }
  .persona-title {
    line-height: 1.2;
    max-width: 80%;
    margin: 0 auto 10px auto;
  }
  .persona-p {
    font-size: 13px;
  }
  .offer-txt {
    width: 100%;
  }
  .offer-txt p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 450px) {
  #contactform {
    margin-top: -30px;
  }
  .form-step h3 {
    font-size: 35px;
    max-width: 80%;
    margin: 0 auto 10px auto;
  }
  .radio-inputs, .radio-inputs2 {
    flex-direction: column;
  }
  .form-input {
    text-align: center;
  }
  .radio-title {
    width: 100% !important;
    text-align: center;
    margin-bottom: 15px;
  }
  .radio-opt, .radio-opt-big {
    width: 100%;
  }
  .radio-buton label {
    margin: 0 auto;
  }
  .vant-box img {
    height: 45px;
  }
  .vant-box h6 {
    font-size: 12px;
  }
  .radio-buton1 {
    width: 80%;
    margin: 8px 0;
  }
  .radio-buton1 label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 414px) {
  .header-txt h1 {
    font-size: 32px;
  }
  #priceRange {
    margin: 20px 0;
  }
  .banco p {
    font-size: 11px;
  }
  .sec3-txt h3 {
    font-size: 28px;
  }
  .persona-title {
    max-width: 95%;
  }
  .offer-txt {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 385px) {
  .header-txt h3 {
    font-size: 18px;
  }
  .header-txt h1 {
    font-size: 28px;
  }
  .form-step h3 {
    max-width: 90%;
  }
  .form-step h5 {
    font-size: 14px;
  }
  #rangeValue {
    width: 100%;
    font-size: 60px;
  }
  .form-btn {
    width: 100%;
  }
  .sec1-txt h3 {
    max-width: 100%;
  }
  .vant-box {
    width: 70%;
  }
  .vant-box img {
    height: 60px;
  }
  .vant-box h6 {
    font-size: 16px;
  }
  .banco {
    flex-direction: column;
    text-align: center;
  }
  .banco img {
    margin-bottom: 20px;
  }
  .banco p {
    text-align: center;
    margin: 0 auto;
  }
  .section2 {
    padding: 50px 0;
  }
  .sec2-txt h6 {
    max-width: 80%;
    font-size: 17px;
    margin: 0 auto 20px auto;
  }
  .sec2-txt p {
    max-width: 95%;
    font-size: 14px;
  }
  .accordion-button {
    padding: 15px 25px;
  }
  .foot-cta {
    width: 100%;
  }
  .persona-title {
    max-width: 95%;
    font-size: 18px;
  }
  .persona-p {
    font-size: 12px;
  }
  .nav-logo img {
    height: 35px;
  }
  .radio-buton1 {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .form-step h3 {
    max-width: 100%;
  }
  .sec1-txt h3 {
    font-size: 28px;
  }
  .footer-txt h3 {
    font-size: 22px;
  }
  .sec3-txt h3 {
    font-size: 22px;
  }
  .accordion-body {
    padding: 15px 20px;
  }
  .accordion-button {
    font-size: 13px;
  }
  .accordion-button::after {
    background-size: 20px;
    width: 22px;
  }
  .sec2-txt h3 {
    font-size: 40px;
  }
  .form-step h5 {
    max-width: 80%;
    margin: 0 auto;
  }
  .form-step h4 {
    font-size: 28px;
  }
  #contactform {
    padding: 30px 20px;
  }
  .caso-slide img {
    padding: 10px;
  }
  .form-check label {
    font-size: 9px;
  }
}
@media only screen and (max-width: 345px) {
  .header {
    margin-top: 70px;
  }
  .header-txt h3 {
    font-size: 17px;
  }
  .header-txt h1 {
    font-size: 25px;
  }
  .header-txt p {
    font-size: 10px;
    max-width: 70%;
    margin: 0 auto 10px auto;
  }
  .form-step h3 {
    font-size: 33px;
    max-width: 90%;
  }
  .form-step h5 {
    max-width: 75%;
  }
  .sec1-txt h3 {
    font-size: 25px;
  }
  .accordion-button::after {
    display: none;
  }
  .persona-name img {
    width: 100px;
  }
}
@media only screen and (max-width: 325px) {
  .header-txt h3 {
    font-size: 16px;
  }
  .form-step h3 {
    max-width: 100%;
    font-size: 30px;
  }
  .nav-logo img {
    height: 30px;
  }
  .offer-cta {
    width: 220px;
  }
}

/*Term animation */
.termContainer {
  width: 100%;
  font-size: 12px;
  color: #1E1E1E;
  margin-top: 20px;
  cursor: pointer;
}
.termContainer a{
  color: var(--blue);
}
.termContainer input {
  display: none;
}
.termContainer a:hover {
  color: var(--darkblue) !important;
}
.termContainer svg {
  overflow: visible;
  max-height: 15px;
  max-width: 15px;
  margin-right: 5px;
  margin-top: 1px;
  vertical-align: baseline;
  translate: 0 2px;
}

.path {
  fill: none;
  stroke: var(--darkblue);
  stroke-width: 5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.termContainer input:checked ~ svg .path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}