@import url('https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap');
body{
    margin: 0;
    padding:0;
    font-family: 'Kufam';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: var(--primaryColor);
    overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
#section-ads {
  padding: 30px 0;
}
:root{
  --primaryColor: #382A57;
  --secondaryColor: #1277C5;
  --terciaryColor: #5ED376;
  --white: #fff;
}

/* Nav */
.nav{
  padding: 30px 0;
}
.nav img{
  max-width: 180px;
}
/* Header */
.header{
    padding: 40px 0;
  background: url(/novo-credito_assets/img/header_bg.png);
  background-size: 470px;
  background-position: 50% bottom;
  background-repeat: no-repeat; 
}
.header .main{
  min-height: 600px; 
  align-items: center;
}
.main .img-fluid{
    width: 200px;
    margin-bottom: 60px;
}
.rightHeader h1{
  position: relative;
  font-weight: 700;
  color: var(--primaryColor);
  margin-bottom: 60px;
  font-size: 50px;
}
.rightHeader h1 span{
  background: linear-gradient(129deg, var(--secondaryColor) 14.24%, var(--terciaryColor) 86.04%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.rightHeader h1::after{
  position: absolute;
  content: '';
  background: url(/novo-credito_assets/img/icons/header_bottom_1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 230px;
  height: 130px;
  right: 20px;
  top: 30px;
  z-index: -1;
}
.rightHeader h3{
  color: var(--primaryColor);
  font-size: 26px;
  max-width: 320px;
  position: relative; 
}
.rightHeader h3::after{
  content: '';
  background: url(/novo-credito_assets/img/icons/header_bottom_2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 135px;
  top: 50px;
  height: 120px;
  width: 330px;
}

/* Form */
.progress-container {
    max-width: 400px;
	width: 100%;
	height: 10px;
	background: #ddd;
	border-radius: 5px;
	overflow: hidden;
	margin: 0 auto 20px;
}
.progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(to right, var(--secondaryColor), var(--terciaryColor));
	transition: width 0.6s ease;
}
.forms-wrapper{
  min-width: 500px;
  height: auto; 
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px #AEC4FF;
  padding: 40px 50px;
}
.forms-wrapper h2{
  text-align: center;
}
.forms-wrapper h2 b{
  color: var(--primaryColor);
  font-size: 30px; 
}
.forms-wrapper .form-title{
  font-size: 20px; 
  font-weight: 400;
  margin-bottom: 10px;
}
.question{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  width: 100%;
}
.sliderContainer h5{
  font-size: 50px;
  color: var(--secondaryColor);
  font-weight: 700;
  text-align: center;
  margin: 20px 0 0 0;
}
.sliderContainer{
  width: 100%;
} 
.sliderContainer input{
  width: 100%;
  margin: 10px 0 0 0;
}
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: linear-gradient(120deg, #4caf50 0%, #ccc 0%);
  border-radius: 4px;
  outline: none;
  transition: background 450ms ease-in;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background: linear-gradient(120deg, var(--secondaryColor) 0%, var(--terciaryColor) 100%);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
 
.rangeMaxMin{
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.rangeMaxMin p{
  margin: 0;
}
fieldset{
  display: none;
  flex-direction: column;
}
fieldset.active{
  justify-content: center;
  align-items: center;
  display: flex !important; 
  text-wrap: balance;
} 
fieldset h4{
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
#transitionStep h4{
    font-weight: 400;
}
.form-btn{
  background-color: var(--secondaryColor);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 30px;
  padding: 10px 20px 5px 20px;
  width: 100%;
  max-width: 160px;
}
.form-btn:hover{
  background-color: var(--terciaryColor);
  color: #fff;
}

/* Dropdown */
.form-input .dropdown-toggle {
  background: #fff;
  width: 100%;
  height: 40px;
  border-radius: 50px;
  border: 2px solid var(--secondaryColor);
  color: #000;
  text-align: left;
  padding: 2px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
.form-input .dropdown-toggle.money, input.money{
  padding-left: 45px;
  background: url(/novo-credito_assets/img/icons/euro.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 30px !important;
  background-position: 2% center !important;
}
.dropdown-toggle::after {
  display: none;
} 
.form-option:hover,
.form-option.selected,
.form-input .dropdown-toggle:active {
  background: var(--secondaryColor) !important;
  color: #fff !important;
}  
.form-input .dropdown-toggle:hover img {
  filter: brightness(0) invert(1);
} 
.form-input .dropdown-toggle:focus-visible,
.form-input .dropdown-toggle:focus {
  box-shadow: none;
  background: #fff;
  color: #000;
} 
.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
  border-radius: 20px;
  padding: 0;
  border: 2px solid var(--secondaryColor);
} 
.form-option {
  padding: 10px 20px;
} 
.form-option:hover {
  background: var(--secondaryColor);
  color: #fff;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
/*
.radio-buton label {
  background: var(--white);
  border: 1px solid var(--primaryColor);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  min-height: 90px;
  height: auto;
  padding: 10px;
  margin: 10px auto;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;  
  font-size: 20px;
  text-align: center;
  line-height: 1.1;
  font-weight: 400;
}*/
.input-block.col-12.col-md-7 {
    padding-left: 0;
}

.radio-buton label {
  background: var(--white);
  border: 1px solid var(--primaryColor);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 65px;
  padding: 10px;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;  
  font-size: 20px;
  text-align: center;
  line-height: 1.1;
  font-weight: 400;
} 

.form-body .big-label b{
    font-weight: 500;
    width: 31%;
    text-align: left;
}
.form-body .big-label{
    text-align: center;  
    justify-content: space-between;
}
.form-body .big-label span{
    font-size: 12px;
    width: 65%;
}
.small-radio label {
  width: 100%;
  min-width: 24%;
}
.big-txt label {
  width: 85%;
  min-width: 33%;
}
.big-txt label p {
  margin: 0;
  font-size: 10px;
  margin-top: 5px;
}
#big-txt-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto;
}
.radio-buton label img {
  height: 40px;
  margin: 0 10px 0 0;
}
.location-button label img {
  height: 62px;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--primaryColor);
  color: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.06);
}
.radio-buton label:hover img, .radio-buton input[type="radio"]:checked + label img {
  filter: brightness(0) invert(1);
}
#thumbs-down {
  transform: rotate(180deg);
}
.extra-row {
  margin-top: 20px;
}
.form-input p {
  font-size: 16px;
  margin: 10px auto;
  color: var(--grey);
  line-height: 1.1;
}

.option{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
/* Loader */
.loader3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 35px;
}

.bars {
  width: 10px;
  height: 20px;
  margin: 0 2px;
  border-radius: 4px;
  animation: loader3 3s ease-in-out infinite;
}

.bar1 {
  background-color: var(--secondaryColor);
  animation-delay: -0.8s;
}

.bar2 {
  background-color: var(--secondaryColor);
  animation-delay: -0.7s;
}

.bar3 {
  background-color: var(--secondaryColor);
  animation-delay: -0.6s;
}

.bar4 {
  background-color: var(--secondaryColor);
  animation-delay: -0.5s;
}

.bar5 {
  background-color: var(--secondaryColor);
  animation-delay: -0.4s;
}

.bar6 {
  background-color: var(--secondaryColor);
  animation-delay: -0.3s;
}

.bar7 {
  background-color: var(--secondaryColor);
  animation-delay: -0.2s;
}

.bar8 {
  background-color: var(--secondaryColor);
  animation-delay: -0.1s;
}

.bar9 {
  background-color: var(--secondaryColor);
  animation-delay: 0s;
}

.bar10 {
  background-color: var(--secondaryColor);
  animation-delay: 0.1s;
}

@keyframes loader3 {
  0% {
    background-color: var(--secondaryColor);
    transform: scale(1);
  }

  20% {
    background-color: var(--terciaryColor);
    transform: scale(1, 2.32);
  }

  40% {
    background-color: var(--secondaryColor);
    transform: scale(1);
  }
}
.question h1{
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 700;
}
.question input[type="text"]{
  width: 100%;
  border-radius: 50px;
  border: 2px solid var(--secondaryColor);
  outline: none;
  padding: 2px 20px 0;
  height: 40px;
}
.question input.money{
  padding-left: 45px;
}
.input-block {
  display: flex; 
  max-width: 100%;
  margin-top: 15px;
  flex-direction: column;
}

/* Checkbox */
.checkbox-wrapper{
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.checkbox-wrapper *,
.checkbox-wrapper *:after,
.checkbox-wrapper *:before {
  box-sizing: border-box;
}

.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
}

.checkbox-wrapper input:checked+label svg path {
  stroke-dashoffset: 0;
}

.checkbox-wrapper input:focus+label {
  transform: scale(1.03);
}

.checkbox-wrapper input+label {
  display: block;
  border: 2px solid var(--secondaryColor);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s ease;
  margin: -2px 10px 0 0;
}

.checkbox-wrapper input+label:active {
  transform: scale(1.05);
  border-radius: 12px;

}

.checkbox-wrapper input+label svg {
  pointer-events: none;
  padding: 5%;
  margin-top: -6px;
}

.checkbox-wrapper input+label svg path {
  fill: none;
  stroke: var(--terciaryColor);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 101;
  transition: all 250ms cubic-bezier(1, 0, .37, .91);
}

.checkbox-wrapper .m-0 {
  font-size: 12px;
}

.checkbox-wrapper .m-0 a {
  cursor: pointer;
}
.checkbox-wrapper .m-0 a:hover {
  color: var(--terciaryColor);
}
.titulares{
  display: none;
}
label.error{
  color: red;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

/* Section 1 */
.section1{
  padding: 80px 0 60px;
  background: #F4F7FF;
}
.section1 h1{
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}
.section1 .slick-track{
  padding: 40px 0;
}
.vantagem{
  height: 100%;
  min-height: 300px;
  margin: 0 20px 0;
  padding: 35px;
  border-radius: 10px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.6s ease-out;
  box-shadow: 0px 0px 20px 0px #AEC4FF;
}
.vantagem h5{
  margin: 20px 0 25px;
  font-weight: 700;
  font-size: 20px;
  text-wrap: balance;
}
.vantagem a{
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primaryColor);
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
}
.vantagem a:hover{
  cursor: pointer;
  text-decoration: underline;
  transform: scale(1.1);
}
.vantagem img{ 
  max-width: 80px;
  transition: all 0.3s ease;
}
.vantagem:hover img{
  transform: scale(1.05);
}
.vantagem:hover{
  box-shadow: 0px 0px 10px 10px #AEC4FF;
}
.vantagemSlider::after{
  content: '';
  position: absolute;
  left: -30px;
  top: 0;
  background: linear-gradient(90deg, #F4F7FF 0%, #F4F7FF 50%, transparent 100%);
  width: 60px;
  height: 100%;
}
.vantagemSlider::before {
  content: '';
  position: absolute;
  right: -30px;
  top: 0;
  background: linear-gradient(90deg, transparent 0%, #F4F7FF 50%, #F4F7FF 100%);
  width: 60px;
  height: 100%;
  z-index: 1;
}

/* Section 2 */
.section2{
  padding: 100px 0;
  overflow: hidden;
}
.section2 h1{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 80px;
  text-align: center;
}
.partners{
  position: relative;
}
.partners::after{
  content: '';  
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, transparent 100%);
  width: 60px;
  height: 100%;
}
.partners::before{
  content: '';  
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, transparent 0%, #fff 50%, #fff 100%);
  width: 60px;
  height: 100%;
  z-index: 1;
}
.partner{
  display: flex;
  height: 100px;
  padding: 20px 25px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px #AEC4FF;
  width: auto;
  transition: all 1s ease;
}
.partner:hover{
  transform: scale(1.1);
  box-shadow: 0px 0px 7px 7px #AEC4FF;
}
.partner-outer{
  padding: 20px; 
}
.partner img{
  width: 100%;
  max-height: 40px;
  display: block;
  margin: auto;
  object-fit: contain;
} 
.bdp {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}
.bdp img {
  height: 120px;
}
.bdp p {
  margin: 0 0 0 30px;
  line-height: 1.1;
  text-wrap: balance;
  width: 450px;
  max-width: 100%;
  font-size: 17px;
}
/* Section 3 */
.section3{
  background: url(/novo-credito_assets/img/icons/section3_top_circle.svg), url(/novo-credito_assets/img/icons/section3_bottom_circle.svg);
  background-repeat: no-repeat;
  background-position: top right, bottom left;
  background-color: #F4F7FF;
  padding: 80px 0;
}
.section3 h1{
  text-align: center;
  position: relative;
  font-size: 30px;
  font-weight: 700;
  margin: 0 auto 40px;
  width: auto;
}
.section3 h1::after{
  content: '';
  display: block;
  position: absolute;
  height: 120px;
  width: 190px;
  background: url(/novo-credito_assets/img/icons/section3_dotted_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  right: -30px;
  bottom: -90px;
}
.divisory{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.caption {
  width: auto; 
  border-radius: 10px;
  margin: 20px auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caption p {
  margin: 0; 
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.caption p:nth-child(1) {
  width: 130px;
  margin-left: 20px;
  text-align: center;
  padding: 10px 15px;
  border-radius: 15px 0 0 15px;
  background: white;
}

.caption p:nth-child(2) {
  width: 150px;
  text-align: center;
  padding: 10px 15px;
  border-radius: 0 15px 15px 0; 
  color: #fff;
  background: var(--secondaryColor);
}

.caption:has(p:nth-child(2):hover)~.list-compare .right-compare,
.caption p:nth-child(2):hover {
  font-weight: 700;
  background: var(--terciaryColor);
  color: #fff;
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 5px var(--secondaryColor);
}

.caption:has(p:nth-child(2):hover)~.list-compare .left-compare {
  opacity: 0.3;
  transform: scale(0.95);
}

.caption:has(p:nth-child(1):hover)~.list-compare .left-compare,
.caption p:nth-child(1):hover {
  font-weight: 700;
  transform: scale(1.01);
}

.caption:has(p:nth-child(1):hover)~.list-compare .right-compare {
  opacity: 0.3;
  transform: scale(0.95);
}

.list-compare {
  width: fit-content; 
  border-radius: 10px;
  margin: 15px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
} 
.left-compare,
.right-compare {
  font-size: 14px;
  text-wrap: balance;
  height: 100%;
  transition: all 0.4s ease;
}

.left-compare {
  width: auto;
  height: 100%;
  margin-left: auto;
  padding: 20px 15px 20px 20px;
  text-align: center;  
  border-radius: 20px 0 0 20px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px var(--secondaryColor);
}

.right-compare {
  font-weight: 400;
  width: 50%;
  max-width: 420px;
  padding: 10px 20px;
  border-radius: 0 20px 20px 0;
  color: #fff;
  box-shadow: 0px 0px 10px 0px var(--secondaryColor);
  background: var(--secondaryColor); 
}

.right-compare:hover {
  font-weight: 700;
  background: var(--terciaryColor);
  color: #fff;
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 5px var(--secondaryColor);
}

.list-compare:has(.right-compare:hover),
.list-compare:has(.left-compare:hover) { 
}

.list-compare:has(.right-compare:hover) .left-compare {
  opacity: 0.3; 
}

.left-compare:hover {
  font-weight: 700;
  transform: scale(1.01);
}

.list-compare:has(.left-compare:hover) .right-compare {
  opacity: 0.3; 
}
.compare-wrapper {
  position: relative;
}

.compare-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 5px;
  background-color: var(--primaryColor);
  transform: translateX(-50%);
  z-index: 20;
}

/* Section 4  */
.section4 {
  padding: 75px 0 115px;
}
.section4 h1{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 60px;
}
#faqAccordion{
  max-width: 780px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.accordion-button::after{
  display: none;
}
.accordion-item{
  border-radius: 10px !important;
  background: #FFF;
  box-shadow: 0px 0px 15px 0px #AEC4FF;
}
.accordion-button:hover{
  box-shadow: 0px 0px 15px 0px var(--secondaryColor);
}
.accordion-button{
  border-radius: 10px !important;
  justify-content: space-between;
  font-size: 20px;
  color: var(--primaryColor);
  font-weight: 700;
}
.btnImg{
  background-color: var(--secondaryColor);
  border-radius: 100%;
  transform: rotate(270deg);
  transition: all 0.4s ease;
}
.accordion-button img{
  padding: 10px;
  height: 40px;
  width: 40px;
  margin: 0;
  filter: brightness(0) invert(1);
}
.accordion-button:not(.collapsed) .btnImg{
  transform: rotate(180deg);
  background-color: var(--primaryColor);
}
.accordion-button:not(.collapsed), .accordion-button:focus{
  color: var(--primaryColor) !important;
  background-color: transparent;
  box-shadow: 0px 0px 0px 0px transparent;
  outline: none !important;
}

/* Footer */
.sectionFooter{
  padding: 50px 0;
  position: relative;
  background-color: #F4F7FF;
}
.sectionFooter img{
  bottom: 0;
  position: absolute;
}
.sectionFooter h1{
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}
.sectionFooter h2{
  font-size: 25px;
  font-weight: 700;
}
.sectionFooter p{
  margin: 20px 0 40px;
  font-size: 14px;
  font-weight: 400;
  text-wrap: balance;
}
.sectionFooter button{
  margin: 0;
}

/* MEDIA QUERIES */
@media(max-width: 1440px){
  .forms-wrapper{
    min-width: unset;
  }
  .rightHeader h1::after{
    top: 40px;
    right: 0;
    width: 150px;
  }
  .rightHeader h3::after{ 
    top: 60px; 
    width: 210px;
  }
   .left-compare {
    max-width: 50%;
   }
}
@media(max-width: 1400px){
  .left-compare{
        max-width: 320px;
        padding: 10px 20px;
  }
}
@media(max-width: 1200px){
    .checkbox-wrapper input+label{
        --size: 25px !important;
        margin: 15px;
    }
.checkbox-wrapper p{
    font-size: 12px;
}
  .rightHeader h1{
    font-size: 40px;
  }
  .rightHeader h1::after{
    top: 20px;
  }
  .rightHeader h3::after{
    left: 50px;
    top: 100px; 
    transform: rotate(17deg);
  }
    .left-compare{
      max-width: 300px;
    }
    .forms-wrapper h2 b{
      font-size: 24px;
    }
  .forms-wrapper .form-title{
    font-size: 18px;
  }
  .left-compare, .right-compare{
      font-size: 12px;
  }
  .radio-buton label, .radio-buton .small_label_font{
      font-size: 14px;
  }
}
@media (max-width: 992px) {
  .header .main{
    justify-content: center;
  }
  .main .img-fluid{
      margin-inline: auto;
  }
  .header{
    padding-bottom: 300px;
    background-size: 390px;
  }
  .forms-wrapper{
    position: relative; 
  } 
  .forms-wrapper::before{
    content: '';
    display: block;
    background: url(/novo-credito_assets/img/icons/header_bottom_2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0%;
    rotate: 70deg;
    bottom: -20%;
    height: 70px;
    width: 150px;
    z-index: -1;
  }
  .rightHeader h1::after{
    display: none;
  }
  .rightHeader h1{
    font-size: 40px;
    margin-bottom: 30px;
  }
  .rightHeader h1, .rightHeader h3{
    text-align: center;
  }
  .rightHeader h3 br{
    display: none;
  }
  .rightHeader h3::after{ 
    content: '';
    background: url(/novo-credito_assets/img/icons/section3_dotted_line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 65%;
    rotate: -20deg;
    top: 50px;
    height: 70px;
    width: 200px;
    z-index: 50;
  }
  .rightHeader h3{
    max-width: 500px;
    margin: 0 auto 40px;
  }
  .sectionFooter{ 
    overflow-x: clip;
    overflow-y: visible;
  }
  .sectionFooter img{  
    right: -40px;
  }
  .accordion-button{
    text-wrap: balance;
  }
  .section3{
    background-position: 122% 30%, bottom left;
  }
}

@media (max-width: 880px){
  .bdp p {
    font-size: 16px;
    width: 100%;
  }
}

@media (max-width: 768px){
  .section3 h1{
    font-size: 24px;
  }
  .radio-buton label, .radio-buton .small_label_font{
          
        width: 100%;
        height: 80px;
        padding: 10px;
        margin: 10px auto;
        gap: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        text-align: left; 
  }
  .section3 h1::after{
    width: 140px;
  }
  .section3{
    background-position: 100% 0%, bottom left;
    background-size: 100px, 200px;
  }
  .left-compare{
   max-width: 40%; 
  }
  .sectionFooter{
    text-align: center;
  }
  .sectionFooter p{
    position: relative;
  }
  .sectionFooter p::after{
    content: '';
    background: url(/novo-credito_assets/img/icons/section3_dotted_line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    display: block;
    right: -60px;
    rotate: 0deg;
    bottom: -60px;
    height: 70px;
    width: 200px;
    z-index: 50;
  }
  .option {
    max-width: 150px;
  }
  .partner img{
    max-height: 30px;
  }
  .bdp {
    flex-direction: column;
    text-align: center;
  }
  .bdp img {
    height: 90px;
  }
  .bdp p {
    margin: 30px 0 0 0;
  }
}
@media(max-width: 576px){
    .radio-buton label{
        height: auto;
        flex-direction: column;
        min-height: 45px;
    }
    .form-body .big-label b{
        font-size: 20px;
        width: 100%;
        text-align: center;
    }
    .form-btn{
        margin-top: 15px;
    }
    .header{
        padding-top: 20px;
    }
    .main .img-fluid{
        margin-bottom: 20px;
    }
    .header h3{
        margin-top: 20px;
        width: 320px;
        text-align: center;
    }
    .radio-buton label img{
        height: 40px;
    }
    .input-block{
     padding: 0 !important;   
    }
  .section1, .section3{
    overflow: hidden;
  }
  .forms-wrapper{
    max-width: 370px;
  }
  fieldset h4{
    font-size: 18px;
  }
  .rangeMaxMin p{
    font-size: 14px;
  }
  .sliderContainer h5{
    font-size: 30px;
  }
  .forms-wrapper::before{
    left: -20%;  
  }
  #transitionStep h4{
    font-size: 16px;
  }
  #transitionStep h1{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .checkbox-wrapper{
    font-size: 12px;
  }
  .left-compare{
    display: none;
    width: 100%;
    max-width: 100%; 
    align-items: center;
    text-align: center;
    border-radius: 20px;
    opacity: 1 !important;
  }
  .right-compare{
    width: 100%;
    border-radius: 20px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    opacity: 1 !important;
  }
  .compare-wrapper::before{
    height: 50px;
  }
  .header{
    overflow: hidden;
  }
  .sectionFooter p::after{ 
    rotate: 10deg; 
    bottom: -70px;
  }
  .section3 h1{
    font-size: 20px;
  }
  .section3 h1::after{
    right: -60px;
    rotate: -20deg;
  }
}
@media (max-width: 500px){
  .rightHeader h1{
    font-size: 30px;
  }
  .rightHeader h3{
    font-size: 22px;
    text-wrap: balance;
  }
  .rightHeader h3::after{
    left: 62%;
    rotate: -30deg;
    top: 40px;
    height: 70px;
    width: 110px;
  }
  .radio-buton label, .radio-buton .small_label_font{
        height: auto;
        text-align: left;
        flex-direction: column;
        justify-content: center;
  }
  .forms-wrapper::before{
      bottom: -10%;
  }
  .form-body .big-label span{
      text-align: center;
  }
}

@media (max-width: 450px){
  .rightHeader h1{
    font-size: 26px;
  } 
  
  .radio-buton label, .radio-buton .small_label_font{
      justify-content: flex-start;
  }
  .form-body .big-label{
      text-align:left;
  } 
  .rightHeader h3{
    font-size: 20px;
  }
  .forms-wrapper::before{
    left: -15%;
  }
  .sectionFooter p{
    margin: 20px auto 30px;
    max-width: 320px;
  }
  .sectionFooter p::after{
    rotate: -20deg;
    right: -15px;
    width: 100px;
  }
    .sectionFooter, .section4, .section1,
    .section3, .section2{
      padding-inline: 20px;
    }
  .accordion-button img{
    height: 30px;
    width: 30px;
    padding: 5px;
  }
  .accordion-button{
    font-size: 16px;
  }
  .radio-buton label, .radio-buton .small_label_font{
      min-height: auto;
      font-size: 18px;
  }
  .form-body .big-label{
      justify-content: center;
  }
  .form-body .big-label b{
      font-size: 22px;
  }
  .accordion-body{
    font-size: 14px;
  }
  .section3 h1{
    text-wrap: balance;
  }
  .section3 h1::after{
  width: 80px;
  right: 50px;
  bottom: -72px;
  rotate: -40deg;
  }
  .bdp p {
    font-size: 13px;
  }
  
    .header h3{
        font-size: 20px;
    }
}
@media (max-width: 375px){
  .forms-wrapper{
    max-width: 320px;
  }
  .question{
    min-width: unset;
    max-width: 300px;
  }
  .rangeMaxMin p:last-of-type{
    text-align: right;
  }
    .form-input .dropdown-toggle{
      overflow: hidden;
    }
  .form-option{
    font-size: 12px; 
  }
    .forms-wrapper::before{
      left: -20%;
      bottom: -8%;
    }
   fieldset:last-of-type .question{
    min-width: 300px;
   }
}