@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');


/* Root */
:root {
  --primaryColor: #1F577B;
  --secondaryColor: #2FCED5;
  --secondaryColorVioletLight: #000000;
  --secondaryColorVioletDark: #000000;
  --filter: brightness(0) saturate(100%) invert(58%) sepia(87%) saturate(733%) hue-rotate(325deg) brightness(100%) contrast(88%);
  --footerBg: #b07e01;
}

.progressStep.active {
  background-color: var(--secondaryColor) !important;
}

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;
}

.call-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}

.call-txt p{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.call-txt .phone-number-display {
    font-weight: 400;
    font-size: 16px;
}

.cta-call {
    margin: 0 auto;
    font-size: 18px;
    width: 195px;
    height: 60px;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 15px;
    background-color: var(--primaryColor);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cta-call:hover {
    transform: scale(1.1);
    background-color: var(--secondaryColor);
}

.cta-call img{
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}


/* 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(--primaryColor);
  padding: 25px 0;
}

.progressDiv h2,
#progressText {
  color: #fff;
  text-wrap: balance;
  margin-bottom: 15px;
}

.progressBar {
  max-width: 450px;
  display: flex;
  margin: 10px auto 20px;
  gap: 20px;
}

.progressStep.active {
  width: 50%;
  height: 5px;
}

.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;
  min-height: 55vh;
}

.section-0-ty {
  min-height: unset !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

/* Form */
fieldset h1 {
  font-size: 30px;
  font-weight: 700;
  text-wrap: balance;
  color: var(--primaryColor);
  margin: 0;
}

fieldset h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  font-size: 16px;
  text-wrap: balance;
  color: var(--secondaryColorVioletLight);
}

fieldset h6 {
  margin-top: 8px;
}

fieldset img.assistant {
  max-width: 100px;
  margin: 35px auto 20px;
  display: block;
}

fieldset {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

fieldset.active {
  display: flex;
}

fieldset.tyPage {
  display: flex;
}

.recebe-simulacao {
  font-weight: 500;
  margin-top: 8px;
}

.radio-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.smallCheckbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 10px;
  position: relative;
  width: 170px;
  min-height: 140px;
  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;
}

.tinny-checkbox {
  width: 165px;
  min-height: unset;
  aspect-ratio: 1/1;
}

.smallCheckbox input {
  display: none;
}

.smallCheckbox img {
  display: block;
  width: 100%;
  max-width: 55px;
  height: auto;
  transition: all 0.3s ease;
}

.smallCheckbox span {
  font-weight: 300;
  display: block;
  font-size: 12px;
  text-wrap: balance;
  margin-top: 9px;
  line-height: 1.3;
}

.smallCheckbox:hover {
  transform: translateY(-3px);
  box-shadow: 9px 12px 18px 0 rgba(0, 0, 0, .1) !important;
}

.smallCheckbox:has(input:checked) {
  background-color: var(--primaryColor);
  color: #fff;
}

.smallCheckbox input:checked~img,
.radio-option input:checked~img {
  filter: brightness(0) invert(1);
}

.smallCheckbox:has(input:checked) {}

.smallCheckbox input:checked~span,
.radio-option input:checked~span {
  font-weight: 700;
  color: #fff;
}

.radio-options * {
  transition: all 0.3s ease;
}

.radio-options p {
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-wrap: balance;
  margin: 0;
}

.radio__no-image {
    min-height: 90px;
}


.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 {
  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;
}

.bigCheckbox {
  width: 180px;
}

.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: 115px;
  text-align: center;
  font-weight: 600;
  color: #8f8f8f;
}

/* Slider customization */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  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(--primaryColor);
  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(--primaryColor);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

#firstAssist img {
  width: 90px;
  height: auto;
}

/* Value display */
#sliderValue {
  margin-top: 15px;
  font-size: 32px;
  font-weight: bold;
}

#sliderValue input {
    text-align: center;
    background: transparent;
    border: none;
    outline: none;
    font-size: 32px;
    font-weight: bold;
    width: 100%;
    padding: inherit;
}


.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;
}

.forms-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 20px;
}

.ty-wrapper {
  margin-block: 50px;
}

/* Custom checkboxes */
label.check {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-size: 13px;
}

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(--secondaryColor);
}

@keyframes hi {
  0% {
    stroke-dashoffset: 20;
  }

  to {
    stroke-dashoffset: 1;
  }
}

label.error {
  color: red;
  font-size: 11px;
}

.btn-row {
  margin-top: 25px;
  gap: 15px;
  align-items: center;
}

fieldset .btn-form {
  background: var(--secondaryColor);
  color: #fff;
  width: 200px;
  padding: 5px 20px;
  font-size: 22px;
  transition: all 0.2s ease;
}

fieldset .btn-form:hover {
  background-color: var(--primaryColor);
  color: #fff;
}

.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;
  min-width: 400px;
  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 {
  border-radius: 15px;
  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 {
  font-weight: 500;
}

.disclaimer .path,
.disclaimer label.check input:checked~svg .path {
  stroke: var(--secondaryColor);
}

.disclaimer svg {
  margin-right: 5px;
  margin-top: -1px;
}

.terms-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
}

.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 16px rgba(0, 0, 0, .1);
  border-radius: 15px;
  padding: 30px 30px;
  width: 90%;
  max-width: 500px;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: 10px;
  text-align: center;
  text-wrap: balance;
}

.message-box h3 {
  color: var(--primaryColor);
  font-weight: 700;
}

.message-box a {
    text-decoration: none;
    color: var(--primaryColor);
    font-weight: 700;
    font-size: 18px;
}

.message-box a:hover {
    color: var(--secondaryColor);
    text-decoration: underline;
}

.message-box h6 {
  line-height: 1.1;
  font-size: 16px;
  margin: 0px auto;
}
.message-box h6:last-of-type {
  margin-bottom: 10px;
}

.message-box__logo {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-top: -20px;
}

.modal .btn.btn-block {
  width: 200px;
  color: #fff;
  background-color: var(--secondaryColor);
  margin: auto;
}

.modal .btn.btn-block:hover {
  background-color: var(--primaryColor);
}

.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: 25px;
  margin-bottom: 32px;
  font-weight: 700;
  color: var(--primaryColor);
}

.footerSection h6 {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  margin: 0 0 10px 0;
  color: var(--primaryColor);
}

.footerSection p {
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 0;
  height: 46px;
  margin-top: auto;
}

.footerIcon {
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 20px;
  margin-bottom: 15px;
  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;
  color: #fff !important;
  font-size: 28px;
}

.modal-inner-content .btn:hover {
  background-color: var(--primaryColor) !important;
}

.spinner-border.text-primary {
  color: var(--primaryColor) !important;
}

.modal-body {
  padding: 1rem 10px !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: 10px
  }
}

/* Menor do que LG */
@media (max-width: 1024px) {
  .radio-options p {
    margin: 0;
  }
}

/* Menor do que MD */
@media (max-width: 768px) {
  .range-label {
    width: 70px;
    font-size: 15px;
  }

  .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) {
  .nav img {
    width: 30%;
    min-width: unset;
  }

  .progressDiv h2 {
    font-size: 20px;
  }

  #progressText {
    font-size: 16px;
  }

  #firstAssist {
    margin: 30px auto 0px !important;
  }

  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 {
    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;
  }
  .input {
      min-width: unset;
  }
}

@media (max-width: 480px) {
    .radio__no-image {
        min-height: unset;
    }
    
  .smallCheckbox {
    flex-direction: row;
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
  }

  .tinny-checkbox {
    aspect-ratio: unset;
  }

  .radio-options p {
    text-align: start;
  }

  .smallCheckbox span {
    margin-top: 5px;
  }

  .smallCheckbox img {
    max-width: 45px;
  }

  .btn-prev {
    transform: translate(-20%, 50%);
  }

  #progressText {
    line-height: 1.2;
    font-weight: 400;
    font-size: 15px;
  }

  #firstAssist {
    width: 80px !important;
    height: 80px !important;
  }

  #firstAssist img {
    max-width: 80px !important;
  }

  .footerIcon {
    gap: 10px;
  }

  .footerIcon img {
    margin-right: 5px;
    max-width: 50px;
  }

  .footerSection p {
    font-size: 13px;
    height: unset;
  }

  .footerSection h6 {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .input {
    padding: 5px 12px;
    height: 50px;
  }

  fieldset .terms-box {
    padding: 10px 0 !important;
  }

  .disclaimer {
    margin-top: 0;
  }

  .disclaimer p {
    font-size: 12px;
  }
}

@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;
  }

  .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;
  }
}