@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&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --black: #000;
  --white: #fff;
  --lightgrey: #F4F4F4;
  --bg-gray: #EBEEFA;
  --mediumgrey: #A2A2A2;
  --clr-primary: #9C42E0;
  --clr-purple-300: #9F92FF;
  --darkblue: #201C51;
  --gradient: linear-gradient(289deg, #FFB3A3 9.87%, #F0A2AB 20.47%, #B35CD1 68.6%, #9B41E0 91.44%);
  --gradient2: linear-gradient(70deg, #9F92FF -1.11%, #9C42E0 95.07%);
  --backgradient: linear-gradient(0deg, rgba(255, 255, 255, 0.0) 12%, rgba(255, 255, 255, 1) 12%), linear-gradient(289deg, #FFB3A3 9.87%, #F0A2AB 20.47%, #B35CD1 68.6%, #9B41E0 91.44%);
  --backgradient-footer: linear-gradient(0deg, var(--clr-primary) 14%, rgba(255, 255, 255, 0.0) 10%);
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Raleway", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
body::-webkit-scrollbar {
  display: none;
}

a:hover {
  color: #000000;
}

#section-ads {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-block: 10px;
}

#section-ads a {
  width: unset;
  padding: 20px;
}

.custom-container {
  --max-width: 1240px;
  --padding: 3rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin: 0 auto;
}

/* header */
.header {
  background: url('/img/header.png');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0 0 0;
}

.header-img img {
  height: 600px;
}

.divider {
  background: url('/img/hero-bg.svg');
  background-position: center bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  min-height: 300px;
  margin-top: -330px;
  position: relative;
  z-index: 22;
}

.header-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.header-txt {
  width: 60%;
  margin-bottom: 150px;
}

.logo {
  width: 140px;
  margin-bottom: 50px;
}

.header-txt h1 {
  color: var(--black);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.header-txt p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  margin: 30px 0 0 0;
  max-width: 94%;
}

.google {
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

.header-img {
  width: 40%;
}

/* form */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  width: 90%;
}

.step-header {
  margin-bottom: 25px;
}
.step-header hr {
    opacity: 1;
    border: none;
    height: 6px;
    background: linear-gradient(70deg, #9F92FF -1.11%, #9C42E0 95.07%);
    width: 280px;
    margin: -4px auto;
}

.step-header p {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 10px;
  text-wrap: balance;
}

#contactform {
  width: 400px;
  min-height: 280px;
  margin: 0 0 0 auto;
  padding: 35px 25px;
  background: var(--white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  z-index: 999;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.25);
}

#contactform h3 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}

#contactform h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-title img {
  width: 16px;
  cursor: pointer;
}

.message-title {
  position: relative;
  color: #747474;
  text-align: center;
  font-size: 16px;
  margin: 0;
}

.tooltip-title {
  min-width: 100%;
  background: #e1e1e1;
  padding: 10px 20px;
  border-radius: 10px;
  top: -50px;
  left: 0;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.tooltip-title p {
  margin: 0;
  font-size: 12px;
  text-align: left;
  font-weight: 500;
  color: var(--black);
}

.smaller-tooltip {
  top: -30px;
}

.message-title img:hover+.tooltip-title {
  visibility: visible;
  opacity: 1;
}

.progress-img {
  margin: 20px auto;
}

.progress-img img {
  max-width: 100%;
}

.form-input,
.form-input-slider {
  margin-bottom: 35px;
}

.form-input-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-input-contact {
  margin-bottom: 15px;
}

.form-input .dropdown-toggle,
.form-input input {
  background: var(--white);
  color: var(--mediumgrey);
  width: 100%;
  height: 50px;
  padding: 0 15px;
  font-size: 14px;
  border: 2px solid var(--clr-primary);
  border-radius: 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-input input {
  color: var(--black);
  font-size: 16px !important;
}

.form-input input:focus-visible {
  outline: none;
}

.radio-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.radio-group input[type="radio"] {
  display: none;
}

.form-dropdown {
  margin-top: 20px !important;
}

.radio-group label {
  min-width: 90px;
  min-height: 50px;
  padding: 15px 5px;
  border-radius: 20px;
  border: 2px solid var(--clr-primary);
  color: var(--mediumgrey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  transition: all 0.3s ease;
  background-color: transparent;
}

.radio-group input[type="radio"]:checked+label {
  background: var(--clr-primary);
  color: white;
  border-color: transparent;
}
.radio-group input[type="radio"]:hover+label {
  background: var(--clr-primary);
  color: white;
  border-color: transparent;
}


.input-with-icon {
  position: relative;
}

.input-with-icon input {
  padding-left: 45px;
  height: 50px;
  width: 100%;
  border: 2px solid var(--clr-primary);
  border-radius: 20px;
  font-size: 14px;
  padding-right: 15px;
}

.pt-flag {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.dividas_renegociar {
    margin-bottom: 0px !important;
}



::-webkit-input-placeholder {
  color: var(--mediumgrey);
}

:-moz-placeholder {
  color: var(--mediumgrey);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--mediumgrey);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--mediumgrey);
}

::-ms-input-placeholder {
  color: var(--mediumgrey);
}

::placeholder {
  color: var(--mediumgrey);
}

.dropdown-toggle::after {
  display: none;
}

.form-input .dropdown-toggle:active,
.form-input .dropdown-toggle:focus-visible,
.form-input .dropdown-toggle:focus {
  box-shadow: none;
  background: var(--white);
  color: var(--mediumgrey);
}

.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
}

.form-option:hover,
.form-option.selected {
  background: var(--clr-primary);
  color: var(--white);
}

.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slider {
  width: 100% !important;
  margin: 10px 0 0 0 !important;
  height: auto !important;
}
.select-formulario {
    margin-bottom: 0 !important;
}

input[type=range] {
  -webkit-appearance: none;
  width: 80%;
  margin: 10px 0;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--clr-purple-300) 0%, var(--clr-primary) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 12px;
  background:
    linear-gradient(
      to right,
      var(--clr-purple-300) 0%,
      var(--clr-primary) var(--slider-value),
      #ddd var(--slider-value),
      #ddd 100%
    );
}

input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 12px;
  background:
    linear-gradient(
      to right,
      var(--clr-purple-300) 0%,
      var(--clr-primary) var(--slider-value),
      #ddd var(--slider-value),
      #ddd 100%
    );
}

input[type=range]::-ms-track {
  height: 8px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}



input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(170deg, #1B98E4 2.54%, #1C9DE3 24.17%, #20ACE3 50.99%, #28C5E3 79.54%, #2BCFE3 89.05%);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}

input[type=range]::-ms-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-primary);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}

.value-display {
  width: 100%;
  color: var(--clr-primary);
  border-radius: 20px;
  border: 2px solid #9C42E0;
  padding: 5px;
  margin-block: 10px 5px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-display span:focus-visible {
  outline: none !important;
}

/* choices */
.choices {
  margin-bottom: 0px !important;
}
.choices__input--cloned {
  min-width: 30ch;
  display: inline-block !important;
  vertical-align: baseline !important;
  background-color: #fff !important;
  font-size: 14px !important;
  margin-bottom: 5px !important;
  border: 0 !important;
  border-radius: 0 !important;
  max-width: 100% !important;
  padding: 4px 0 4px 2px !important;
  height: auto !important;
}
.choices__inner {
  text-align: left !important;
  width: 100% !important;
  color: var(--clr-primary) !important;
  border-radius: 20px !important;
  border: 2px solid #9C42E0 !important;
  padding: 5px 15px !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  background: #fff !important;
}
.choices__list--multiple .choices__item {
  background: var(--clr-primary) !important;
  border: 1px solid var(--clr-primary) !important;
  margin-bottom: 0 !important;
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
  border-left:  1px solid #fff !important;
}
.choices__list--dropdown .choices__item {
  text-align: left !important;
}
.choices__list--dropdown {
  border-radius: 15px !important;
  border-left:  1px solid var(--clr-primary) !important;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: var(--clr-primary) !important;
  color: #fff;
}
#step-3 .form-button {
  margin-top: 15px;
}
.hidden-important {
  display: none !important;
}

.form-check {
  text-align: center;
  padding: 0;
  margin-bottom: 10px;
}

.form-check label {
  margin: 0 0 0 5px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  font-size: 11px;
  font-weight: 400;
}

.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(--clr-primary);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--clr-primary);
}

.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.1px;
  font-size: 12px;
}

#politica-link {
  color: var(--black);
  text-decoration: none;
}

#politica-link:hover {
  color: var(--clr-primary);
  text-decoration: underline;
}

.form-button {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  width: 200px;
  height: 50px;
  border-radius: 20px;
  background: var(--clr-primary);
  border: none;
  transition: all 0.4s ease;
}

.form-button:hover {
  background: var(--clr-purple-300);
  color: var(--white);
  transform: scale(1.1);
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-button {
  width: 60px;
  height: 50px;
  background: var(--clr-primary);
  border: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-button:hover {
  transform: scale(1.05);
}

.message-exemplo {
  display: block;
  color: #000;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
  margin-top: 8px;
}

/* Arrows */
.arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-top: 4px solid white;
  border-right: 4px solid white;
}


.error,
#termos-error {
    font-size: 11px !important;
    font-weight: 300 !important;
    color: red;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* section 1 */
.section1 {
  padding: 60px 0;
  margin-top: -2px;
  background: var(--lightgrey);
  position: relative;
  z-index: 99;
}

.partner-wrapper {
  position: relative;
  overflow: hidden;
}

.partner-slider .slick-track {
  padding: 30px 0;
}

.partner-slider::before,
.partner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 4;
}

.partner-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--lightgrey), rgba(255, 255, 255, 0));
}

.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--lightgrey), rgba(255, 255, 255, 0));
}

.partner-outer img {
  max-width: 100%;
  height: 35px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.partner-outer img:hover {
  transform: scale(1.15);
  filter: none;
}

/* section2 */
.section2 {
  padding: 40px 0;
  text-align: center;
}

.title h3 {
  color: var(--black);
  font-size: 40px;
  font-weight: 700;
  text-wrap: balance;
}

.title h3 span {
  background: var(--backgradient);
}

.vant-row {
  margin-top: 50px;
}

.vants img {
  height: 60px;
  margin-bottom: 30px;
  animation: bounceInOut 3s ease-in-out infinite;
}

@keyframes bounceInOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.vants h6 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-primary);
  max-width: 55%;
  margin: 0 auto 16px auto;
}

.vants p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  max-width: 90%;
  text-wrap: balance;
  margin: 0 auto;
}

/* section3 */
.section3 {
  padding: 40px 0;
  text-align: center;
}

.numbers-box {
  background: url('/img/glass-effect.svg'), var(--gradient2);
  background-size: cover, 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  padding: 120px 40px;
  border-radius: 50px;
  color: var(--white);
  overflow: hidden;
}

.numbers-content {
  margin: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.numbers-content h6 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  max-width: 60%;
  margin: 0 auto 20px auto;
}

.numbers-content h3 {
  font-size: 80px;
  font-weight: 700;
  font-family: "Poppins", serif;
  line-height: 1;
  margin: 0 auto;
}

/* section 5 */
.section5 {
  text-align: center;
  padding: 0 0 30px;
}

.section5 .title {
  margin-bottom: 10px;
}

.review-slider .slick-track {
  padding: 30px 0;
}

.review-box {
  max-width: 90%;
  height: 238px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 auto;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--lightgrey);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.25);
}

.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  margin-bottom: 20px;
}

.person-icon {
  min-width: 60px;
  min-height: 60px;
  border-radius: 100px;
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.persona1,
.persona4 {
  background: #900048;
}

.persona2,
.persona5 {
  background: #00635B;
}

.persona3,
.persona6 {
  background: #0077FF;
}

.persona-name {
  margin-left: 15px;
}

.persona-name h6 {
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.persona-name p {
  color: rgba(0, 0, 0, 0.60);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.review-txt {
  text-align: left;
}

.review-txt p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  margin: 0 0 10px 0;
  text-wrap: balance;
}

.review-txt button {
  background: transparent;
  border: none;
  color: #07F;
  font-size: 12px;
  font-weight: 400;
  padding: 0;
}

.review-txt button:hover {
  border-bottom: 1px solid #07F;
}

.custom-dots {
  text-align: center;
  margin-top: 20px;
}

.custom-dots .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.custom-dots .slick-dots li {
  margin: 0 5px;
}

.custom-dots .slick-dots li button {
  background-color: var(--lightgrey);
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: block;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  transition: all 0.5s ease;
}

.custom-dots .slick-dots li.slick-active button {
  background-color: var(--clr-primary);
}

.popup-review {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  position: relative;
  background: var(--white);
  max-width: 450px;
  width: 90%;
  min-height: 238px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 auto;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--lightgrey);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.25);
}

.close-review {
  position: absolute;
  cursor: pointer;
  color: var(--white);
  background: var(--clr-primary);
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  top: -10px;
  right: -10px;
  transition: all 0.4s ease;
}

.close-review:hover {
  transform: scale(1.1);
  background: var(--clr-primary);
}

/* footer */
.footer {
  background: url('/img/footer-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.footer-img {
  text-align: center;
}

.footer-img img {
  height: 470px;
}

.footer-txt {
  margin-top: 110px;
}

.footer-txt h3 {
  color: var(--black);
  font-size: 30px;
  font-weight: 700;
  max-width: 95%;
  line-height: 1.2;
}

.footer-txt h3 span {
  background: var(--backgradient-footer);
}

.footer-txt h3 span,
.sec6-txt span {
  /* border-bottom: 6px solid var(--clr-primary); */
  background: var(--backgradient-footer) !important;
}


.footer-txt button {
  width: 300px;
  height: 60px;
  border-radius: 20px;
  border: none;
  background: var(--clr-primary);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 40px;
  transition: all 0.4s ease;
}

.footer-txt button:hover {
  transform: scale(1.1);
  background: var(--clr-purple-300);
}

/* section6 */
.section6 {
  padding: 40px 0 80px 0;
  text-align: center;
}

.sec6-txt {
  margin-bottom: 30px;
  text-wrap: balance;
}

.sec6-txt h3 {
    margin-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
  color: var(--darkblue);
}

.sec6-txt p {
    color: #333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #333;
  margin: 0 auto;
  max-width: 80%;
}

.caption {
  width: 60%;
  padding: 5px;
  border-radius: 10px;
  margin: 20px auto;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.caption p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.caption p:nth-child(1) {
  width: 50%;
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--clr-purple-300);
  color: var(--white);
}

.caption p:nth-child(2) {
  width: 50%;
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--white);
}

.caption:has(p:nth-child(2):hover)~.list-compare .right-compare,
.caption p:nth-child(2):hover,
.caption p:nth-child(1):hover {
  font-weight: 700;
  background: var(--clr-purple-300);
  color: var(--white);
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 5px rgba(27, 38, 117, 0.2);
}

.caption:has(p:nth-child(2):hover)~.list-compare .left-compare {
  opacity: 0.3;
  transform: scale(0.95);
  background: var(--white);
  color: var(--black);
}
.caption:has(p:nth-child(2):hover) p:nth-child(1) {
  opacity: 0.3;
  background: var(--white);
  color: var(--black);
}
.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: 100%;
  padding: 6px 8px;
  border-radius: 10px;
  margin: 15px auto;
  background: var(--bg-gray);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.left-compare,
.right-compare {
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s ease;
  text-wrap: balance;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-compare {
  width: 35%;
  text-align: center;
  padding: 8px 10px;
  border-radius: 5px;
  background: var(--clr-purple-300);
  color: white;
}

.right-compare {
  font-weight: 500;
  width: 65%;
  padding: 7px 5px;
  border-radius: 5px;
  background: var(--white);
}

.right-compare:hover {
  font-weight: 700;
  background: var(--clr-purple-300);
  color: var(--white);
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 5px rgba(27, 38, 117, 0.2);
}

.list-compare:has(.right-compare:hover),
.list-compare:has(.left-compare:hover) {
  transform: scale(1.05);
  box-shadow: 0px 0px 10px 0px rgba(27, 38, 117, 0.4);
}

.list-compare:has(.right-compare:hover) .left-compare {
  opacity: 0.3;
  transform: scale(0.95);
}

.left-compare:hover {
  font-weight: 700;
  transform: scale(1.01);
}

.list-compare:has(.left-compare:hover) .right-compare {
  opacity: 0.3;
  transform: scale(0.95);
}


/* Thanks page */
.upload-map {
  border: 2px dashed var(--clr-primary);
  border-radius: 8px;
  padding: 20px 25px;
  text-align: center;
  margin: 0 auto 20px;
  width: 80%;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}

.agradecimento-title {
  font-size: 22px;
  font-weight: 800;
}

.agradecimento-sec-title {
  color: var(--darkblue);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 20px;
}

.agradecimento-paragraph {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  text-wrap: balance;
}

.agradecimento-paragraph span {
  font-weight: 600;
}

.upload-label {
  cursor: pointer;
}

.upload-label p {
  color: var(--mediumgrey);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-wrap: balance;
  margin: 0;
}

.upload-label span {
  color: var(--clr-primary);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

.upload-map input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.form-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.no-map {
  font-size: 14px;
  font-weight: 400;
  text-wrap: balance;
}

.no-map a {
  font-weight: 600;
  color: var(--clr-primary);
}

.mensagem_politica {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(156, 66, 224, 0.25);
  width: 334px;
  height: 94px;
  margin-bottom: 15px;
  padding: 20px;
}

.mensagem_politica p {
  color: var(--darkblue);
  font-size: 12px;
  font-weight: 400;
  text-wrap: balance;
  margin: 0;
  text-align: start;
}

.mensagem_politica span {
  font-weight: 600;
}

.contactform-inner {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

#agradecimento {
  width: 100%;
}

.agradecimento-form {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

#pdfSubmit {
  margin-bottom: 10px;
}

.success-message h2 {
  color: var(--darkblue);
  font-size: 26px;
  font-weight: 800;
  text-wrap: balance;
  margin-bottom: 15px;
}

.success-message p {
  font-size: 16px;
  font-weight: 400;
  text-wrap: balance;
  margin-bottom: 25px;
  line-height: normal;
}

.success-message span {
  font-weight: 700;
}

.message-select {
  margin-bottom: 5px;
}

.entidades label {
  width: 50%;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-footer {
    justify-content: center !important;
}


/* Media Queries */
@media only screen and (max-width: 1400px) {
  .header-txt h1 {
    font-size: 26px;
  }

  .header-txt p {
    font-size: 16px;
  }

  .header-img img {
    margin-left: -50px;
  }

  .list-compare {
    width: 100%;
  }

  .left-compare,
  .right-compare {
    font-size: 13px;
  }

  .numbers-content h3 {
    font-size: 70px;
  }

  .numbers-content h6 {
    font-size: 20px;
  }

  .footer-txt h3 {
    font-size: 28px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
    br {
        display: none;
    }
    .entidades label br {
    display: block;
  }
  .header-txt h1 {
    font-size: 28px;
  }

  .header-txt p {
    font-size: 14px;
  }

  .header-img img {
    margin: 0 0 -80px 0;
    height: 480px;
  }

  .google {
    max-width: 90%;
  }

  .sec6-txt p {
    font-size: 16px;
  }

  .right-compare {
    padding: 7px 15px;
  }

  .numbers-content {
    margin: 0 auto;
  }

  .numbers-content h3 {
    font-size: 60px;
  }

  .numbers-content h6 {
    font-size: 18px;
  }

  .footer-txt h3 {
    max-width: 90%;
  }

  .vants h6 {
    font-size: 18px;
    max-width: 100%;
    text-wrap: balance;
  }

  .vants p {
    max-width: 90%;
    font-size: 14px;
  }

  .sec3-txt h3,
  .sec6-txt h3 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1100px) {
  #contactform {
    width: 420px;
  }

  .header-img img {
    margin: 0 0 -100px 0;
  }
}

@media only screen and (max-width: 991px) {
  #contactform {
    margin: 0 auto 20px;
  }

  #contactform h3 {
    font-size: 16px;
  }

  .form-input .dropdown-toggle,
  .form-input input {
    font-size: 12px;
  }

  /*.form-check {
    text-align: left;
  }*/

  .header-txt {
    width: 100%;
  }

  .header-img {
    display: none;
  }

  .numbers-content h3 {
    font-size: 45px;
  }

  .numbers-content h6 {
    font-size: 15px;
  }

  .accordion-button:not(.collapsed) {
    font-size: 18px;
  }

  .accordion-img img {
    width: 250px;
  }

  .right-compare {
    padding: 7px;
  }

  .title h3 {
    font-size: 30px;
  }

  .footer-txt {
    margin-top: 40px;
  }

  .footer-img img {
    height: 380px;
  }
  
  .step-header hr {
      width: 255px;
  }
  .section3 {
      padding: 0 0 40px 0;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    text-align: center;
    padding: 40px 0 0 0;
  }

  .logo {
    margin-bottom: 30px;
  }

  .header-txt {
    margin-bottom: 40px;
  }

  .header-txt p {
    font-size: 18px;
    max-width: 80%;
    margin: 20px auto 0px auto;
  }

  .google {
    max-width: 100%;
    margin-top: 30px;
  }

  #contactform {
    width: 440px;
  }

  .form-input .dropdown-toggle {
    font-size: 14px;
  }

  .form-input input {
    font-size: 16px;
  }

  .form-check {
    text-align: center;
  }

  .google {
    max-width: 100%;
    margin-top: 30px;
  }

  .vant-row {
    margin-top: 20px;
  }

  .vants {
      margin: 20px 0 40px;
  }

  .vants h6 br {
    display: none;
  }

  .sec3-txt h3 {
    max-width: 85%;
    margin: 0 auto 20px auto;
  }

  .sec3-txt p {
    font-size: 18px;
  }

  .accordion-img img {
    width: 80%;
    margin: 20px auto 0 auto;
  }

  .left-compare,
  .right-compare {
    line-height: 1.2;
    padding: 7px 30px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right-compare {
    min-height: 48px;
    width: 55%;
  }
  .left-compare {
      width: 45%;
  }

  .numbers-box {
    padding: 50px;
    background-position: 35%, center;
    max-width: 95%;
    margin: 0 auto;
  }

  .numbers-content {
    margin: 35px auto;
  }

  .numbers-content h3 {
    font-size: 58px;
  }

  .numbers-content h6 {
    font-size: 20px;
  }

  .footer {
    padding: 80px 0 70px 0;
    text-align: center;
    background-position: center right;
  }

  .footer-txt h3 {
    margin: 0px auto;
  }

  .footer-img {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .sec3-txt p {
    max-width: 80%;
    margin: 0 auto;
  }

  .left-compare,
  .right-compare {
    padding: 7px 10px;
  }

  .sec3-txt h3,
  .sec6-txt h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 550px) {
  #contactform {
    width: 100%;
  }

  .logo {
    width: 35%;
  }
  .entidades label br {
    display: none;
  }
}

@media only screen and (max-width: 475px) {
    .header-txt h1 {
        font-size: 24px;
        text-wrap: balance;
    }
    .sec6-txt p {
        max-width: 100%;
    }
    
  .header-txt p {
    /* max-width: 100%; */
    text-wrap: balance;
  }

  .form-input .dropdown-toggle,
  .form-input input {
    font-size: 16px;
  }

  .form-input input {
    overflow: hidden;
  }

  ::-webkit-input-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  :-moz-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ::-moz-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  :-ms-input-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ::-ms-input-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ::placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .vants h6 {
    font-size: 22px;
  }

  .vants p {
    max-width: 80%;
  }

  .footer-txt h3 {
    max-width: 100%;
    font-size: 26px;
  }
  
  .entidades{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  
  .entidades label {
     width: 90%;
     text-wrap: balance;
  }
}

@media only screen and (max-width: 415px) {
  .header-txt h1 {
    font-size: 24px;
  }

  .header-txt p {
    font-size: 16px;
  }

  #contactform {
    padding: 30px 20px;
  }

  #contactform h3 {
    font-size: 16px;
  }

  .title h3 {
    font-size: 28px;
  }

  .sec6-txt p {
    font-size: 15px;
  }

  .numbers-content h3 {
    font-size: 55px;
  }

  .footer-txt h3 {
    font-size: 22px;
  }
  .caption p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 375px) {
  .header-txt h1 {
    font-size: 24px;
  }

  .header-txt p {
    font-size: 14px;
  }

  /*.form-check {
    text-align: left;
  }*/

  .numbers-content h3 {
    font-size: 45px;
  }

  .message-title br {
    display: none;
  }

  .sec3-txt p {
    max-width: 90%;
  }

  .numbers-content h3 {
    font-size: 45px;
  }

  .footer-txt button {
    max-width: 100%;
  }
  .step-header hr {
      width: 100%;
  }
}

@media only screen and (max-width: 365px) {
    .header-txt h1 {
        font-size: 20px;
    }
  .header-txt h6 {
    font-size: 17px;
  }

  .list-compare {
    flex-direction: column;
  }

  .left-compare,
  .right-compare {
    width: 100%;
    padding: 10px 15px;
  }

  .caption p:nth-child(2) {
    font-weight: 600;
  }

  .right-compare {
    font-size: 14px;
    font-weight: 600;
  }
}

@media only screen and (max-width: 345px) {


  #contactform {
    padding: 30px 15px;
  }

  .opt-row .col-6 {
    width: 90%;
  }

  .dropdown-toggle {
    font-size: 15px;
  }

  .accordion-button:not(.collapsed) {
    font-size: 16px;
  }

  .accordion-body p {
    font-size: 13px;
  }

  .sec3-txt h3 {
    max-width: 100%;
  }

  .sec3-txt p {
    font-size: 16px;
  }

  .header-txt ul {
    max-width: 90%;
  }

  .google-img img {
    width: 90%;
    height: auto;
  }

  .message-txt-ty h3 {
    font-size: 22px;
  }

  .mobile-title-offer {
    font-size: 16px;
  }
}

@media only screen and (max-width: 335px) {
  .numbers-box {
    padding: 40px 0;
  }
    #contactform h3 {
    font-size: 15px;
    }
}