@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@keyframes pulse-once {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.pulse-once {
  animation: pulse-once 0.4s ease;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --creamwhite: #fbf4e5;
  --purple: #331E38;
  --lightblue: #03CBFF;
  --blue: #3266fd;
  --orange: #ff795a;
  --extralightgrey: #f1f5f9;
  --lightgrey: #e2e8f0;
  --grey: #64748b;
  --gradient: linear-gradient(45deg, rgba(78, 42, 252, 1) 0%, rgba(3, 203, 255, 1) 100%);
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "DM Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  overflow-x: hidden !important;
}

a:hover {
  color: #000000;
}

/* main */
.main {
  /*with AD logo min-height: 90vh;*/
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background: var(--creamwhite);
}

/* navbar */
.nav {
  background: var(--white);
  padding: 25px 0;
  width: 100%;
}

.logo img {
  height: 35px;
}

.nav-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu ul li {
  margin: 0 0 0 35px;
  color: var(--purple);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.nav-menu ul li:hover {
  transform: scale(1.05);
  border-bottom: 1px solid var(--purple);
}

.nav-menu ul li:last-of-type,
.nav-menu ul li:last-of-type:hover {
  border: none;
  transform: none;
}

.nav-menu ul li button {
  background: transparent;
  border-radius: 50px;
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 0 20px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.nav-menu ul li button:hover {
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--white);
}

.callcta button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  min-width: 150px;
}

.callcta button img {
  height: 13px;
  transform: rotate(35deg);
  transition: all 0.4s ease;
  margin-top: -1px;
}

.callcta button:hover img {
  filter: brightness(0) invert(100%);
}

.calltxt,
.callnum {
  transition: all 0.4s ease;
}

.callnum {
  display: none;
}

.callcta button:hover .callnum {
  display: flex;
}

.callcta button:hover .calltxt {
  display: none;
}

/* calculator */
.cal-body {
  width: 100%;
  min-height: 60vh;
  margin: 60px 0;
}

/* form */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h1 {
  font-size: 65px;
  line-height: 0.9;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 35px;
}

.form-step h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.questions,
.fee-output {
  background: var(--white);
  padding: 30px 40px;
  border-radius: 15px;
  max-width: 80%;
}

.fee-output {
  padding: 40px;
}

.input-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-row:nth-child(2) {
  margin: 20px 0 0 0;
}

.txt-box {
  width: 65%;
}

.txt-box h6 {
  margin: 0;
  font-size: 18px;
  color: var(--purple);
}

.disc-tooltip img {
  height: 16px;
  margin-top: -2px;
}

.disc-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.input-tooltip {
  position: absolute;
  top: -60px;
  right: -120px;
  width: 270px;
  line-height: 1.1;
  font-size: 12px;
  font-weight: 400;
  background: var(--white);
  padding: 8px 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}

.debt .input-tooltip {
  top: -70px;
  right: -150px;
  width: 300px;
}

.disc-tooltip img:hover~.input-tooltip {
  opacity: 1;
  z-index: 10;
}

.form-inputs {
  width: 35%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.form-inputs input {
  width: 160px;
  height: 40px;
  text-align: right;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid var(--lightgrey);
  font-size: 16px;
  color: var(--purple);
  font-weight: 600;
}

.form-inputs input:focus-visible,
.form-group input:focus-visible {
  outline: none !important;
  border: 1px solid var(--blue);
}

::-webkit-input-placeholder {
  color: var(--lightgrey);
  font-weight: 400;
}

:-moz-placeholder {
  color: var(--lightgrey);
  opacity: 1;
  font-weight: 400;
}

::-moz-placeholder {
  color: var(--lightgrey);
  opacity: 1;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: var(--lightgrey);
  font-weight: 400;
}

::-ms-input-placeholder {
  color: var(--lightgrey);
  font-weight: 400;
}

::placeholder {
  font-weight: 400;
  color: var(--lightgrey);
}

.form-inputs p {
  margin: 0 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--purple);
}

.radio-row {
  margin-top: 30px;
}

.radio-row h3 {
  color: var(--grey);
  font-size: 16px;
  font-weight: 600;
}

.radio-row hr {
  opacity: 1;
  color: var(--lightgrey);
  margin: 0 auto 25px auto;
}

.radio-row hr:last-of-type {
  margin: 25px auto 15px auto;
}

.radio-buton input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0px;
  height: 0px;
}

.radio-buton label {
  cursor: pointer;
  width: 95%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--lighgrey);
  border: 1px solid var(--lightgrey);
  font-size: 15px;
  font-weight: 400;
  background: var(--white);
  border-radius: 10px;
  transition: all 0.6s ease;
  margin: 5px auto;
}

.radio-buton label img {
  width: 60%;
}

.radio-buton label p {
  line-height: 1;
  margin: 0;
  font-size: 18px;
  color: var(--purple);
  font-weight: 600;
}

.radio-buton label:hover,
.radio-buton input[type="checkbox"]:checked+label {
  color: var(--white);
  background: var(--gradient);
}

.radio-buton label:hover img,
.radio-buton input[type="checkbox"]:checked+label img,
.radio-buton label:hover p,
.radio-buton input[type="checkbox"]:checked+label p {
  filter: brightness(0) invert(1);
}

/* sliders */
.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: unset;
  width: 100%;
}

.slider {
  width: 100% !important;
  margin: 10px 0 !important;
  height: auto !important;
  padding-left: 15px;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 10px 0;
  padding: 0;
  height: 10px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--blue) 0%, var(--lightblue) 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: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--blue) 0%, var(--lightblue) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-moz-range-track {
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--blue) 0%, var(--lightblue) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-ms-track {
  height: 12px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}

input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--purple);
  cursor: pointer;
  margin: -6px 0 0 0px;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--purple);
  cursor: pointer;
  margin: -6px 0 0 0px;
}

input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--purple);
  cursor: pointer;
  margin: -6px 0 0 0px;
}

.value-display {
  min-width: 160px;
  height: 40px;
  text-align: right;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid var(--lightgrey);
  font-size: 16px;
  color: var(--purple);
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 10px;
  margin-left: 20px;
}

.value-display span {
  line-height: 1;
}

.value-display span:focus-visible {
  outline: none !important;
}

.fee-box {
  margin-top: 20px;
  display: none;
}

.fee-box h3 {
  margin: 0;
  font-size: 18px;
  color: var(--purple);
  margin-bottom: 30px;
}

#fees {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#fees button {
  min-width: 80px;
  height: 40px;
  padding: 0 10px;
  background: var(--white);
  border: 1px solid var(--lightgrey);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  margin: 0 10px;
}

#fees button:first-of-type {
  margin: 0;
}

#fees button:hover {
  background: var(--extralightgrey);
}

#fees button.active {
  background: var(--gradient);
  color: #fff;
}

.form-button {
  width: 180px;
  height: 40px;
  border-radius: 50px;
  border: none;
  margin: 20px 0 40px 0;
  background: var(--blue);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  transition: all 0.4s ease;
}

.form-button:hover {
  background: var(--purple);
}

/* output result */
.simulation {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
}

.after-sim {
  padding: 60px 40px;
  border: 3px solid var(--blue);
}

.simulation h3 {
  font-size: 36px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 20px;
  line-height: 1;
}

.simulation h3 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.output-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin-top: 10px;
  border-bottom: 1px solid var(--extralightgrey);
}

.no-border {
  border-bottom: none;
}

.intresst .input-tooltip {
  top: -45px;
}

.discount .input-tooltip {
  top: -70px;
}

.output-row h6 {
  width: 45%;
}

.output-row span {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  width: 55%;
}

.bold-output {
  font-size: 20px !important;
}

.before-output {
  color: var(--orange);
}

.after-output {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.last-output-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.last-output-row img {
  width: 50px;
}

/* compare bars */
.compare-outer {
  margin-bottom: 40px;
}

.compare-bar-title {
  text-align: center;
  padding: 60px 0 10px 0;
}

.compare-bar-title h3 {
  font-size: 26px;
  font-weight: 500;
  color: var(--purple);
}

.compare-bar-title h3 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.compare-bar-outer {
  text-align: center;
  margin: 10px auto 20px auto;
}

.compare-bar-outer h6 {
  font-size: 14px;
  color: var(--purple);
}

.compare-bar-outer h6 span {
  font-weight: 700;
  color: var(--blue);
}

.old-debt,
.old-cuota {
  color: var(--orange) !important;
}

.compare-bars {
  display: flex;
  justify-content: flex;
  align-items: center;
  height: 55px;
}

.compare-left {
  background: var(--orange);
  color: var(--white);
  width: 49%;
  height: 40px;
  border-radius: 100px 0 0 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.compare-left span {
  color: var(--white) !important;
  padding-right: 20px;
  font-weight: 700;
}

.compare-right {
  background: var(--blue);
  width: 49%;
  height: 40px;
  border-radius: 0 100px 100px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.compare-right span {
  color: var(--white);
  padding-left: 20px;
  font-weight: 700;
}

.new-cuota-bar span {
  color: var(--purple);
}

.divider {
  width: 2px;
  height: 55px;
  background: var(--purple);
}

/* form last step */
#step-2 {
  position: relative;
}

.form-row {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 99;
}

.last_step {
  width: 450px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  margin: 0 auto;
  transition: transform 0.6s ease-in-out;
}

.last_step h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--purple);
}

.last_step hr {
  width: 200px;
  height: 4px;
  border: none;
  background: var(--blue);
  opacity: 1;
  margin: 0 auto 30px auto;
}

.form-group {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.form-group input {
  width: 90%;
  height: 40px;
  margin: 10px auto;
  text-align: left;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid var(--lightgrey);
  color: var(--purple);
  font-weight: 600;
}

.form-check {
  padding: 0;
  margin: 10px 0 0 0;
}

.form-check label {
  margin: 0;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  line-height: 1;
  color: var(--purple);
  font-size: 12px;
  font-weight: 400;
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0 px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--purple);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--purple);
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 1px;
  font-size: 13px;
}

#politica-link {
  color: var(--purple);
  font-weight: 400;
}

#politica-link:hover {
  color: var(--blue);
}

.last_step .form-button {
  margin: 20px auto 0 auto;
  width: 250px;
}

.last_step .form-button:hover {
  color: var(--white);
}

.error,
#termos-error {
  font-size: 11px;
  font-weight: 300;
  color: red;
  padding: 0;
}

.calc {
  margin-top: 10px;
  text-align: right;
}

.over {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  display: none;
  opacity: 0;
}

.over.overlay-view {
  display: flex;
  opacity: 1;
}

.after-sim span.span-blur,
.compare-outer span.span-blur {
  filter: blur(4px);
}

/* Thank you */
.message {
  width: 100%;
  text-align: center;
  padding: 60px 0 0 0;
  position: relative;
}

.cal-ty {
  margin: 40px 0;
}

.logo-ty {
  max-width: 180px;
  margin: 0 auto 20px auto;
}

.input-value-row {
  margin-bottom: 40px;
}

.input-values {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 60px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.input-values p {
  font-size: 14px;
  line-height: 1.1;
  margin: 0 0 5px 0;
  color: var(--purple);
}

.input-values h6 {
  font-size: 18px;
  color: var(--purple);
  font-weight: 700;
  margin: 0;
}

/* pop-up */
.popup {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  position: relative;
  width: 450px;
  min-height: 400px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  margin: 0 auto;
  transition: transform 0.6s ease-in-out;
}

.x-close {
  position: absolute;
  font-size: 27px;
  color: var(--white);
  background-color: var(--blue);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  top: 10px;
  right: 10px;
  border: none;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

.popup-content h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--purple);
  line-height: 0.9;
  max-width: 100%;
  margin: 0 auto 20px auto;
  text-wrap: balance;
}

.popup-content h3 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popup-content p {
  font-size: 16px;
  line-height: 1.1;
  color: var(--purple);
  margin: 0 auto;
  text-wrap: balance;
}

.popup-cta__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.popup-cta__wrapper button {
    margin: 0;
    width: 80%;
}

.popup-content .whatsapp-cta {
    background-color: #1ED741;
}

.popup-content .whatsapp-cta img {
    filter: none !important;
    width: 40px;
    height: 40px;
}

.popup-content button {
    margin: 0 auto;
    font-size: 18px;
    width: 100%;
    height: 55px;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 15px;
    background-color: var(--blue);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
}

.popup-content button img,
.nav-call img {
    filter: brightness(0) invert(1);
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
}

.popup-content button:hover {
    transform: scale(1.1);
}

.call-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.call-txt p{
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
}

.call-txt .phone-number-display {
    font-weight: 400;
    margin: 0;
}

.fecharPopup-cta,
.popup-cta__call {
  width: 100%;
  height: 55px;
  border-radius: 50px;
  border: none;
  margin: 30px auto 0px auto;
  background: var(--blue);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  transition: all 0.4s ease;
}

.popup-cta__call img {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
}

.alivia-logo {
  width: 100%;
  height: 90px;
  object-fit: contain;
  margin-top: 30px;
}

.fecharPopup-cta:hover {
  background: var(--purple);
}

.popup-cta__call {
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-link {
  text-decoration: none;
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 9999;
}

.cal-ty .after-sim span,
.cal-ty .compare-outer span {
  filter: blur(4px);
}

.cal-ty .after-sim h3 span,
.cal-ty .compare-outer h3 span {
  filter: none;
}

.call {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0 auto;
  transition: all 0.5s ease;
  cursor: pointer;
}

.call:hover {
  transform: scale(1.1);
}

.call:hover .call-me p {
  display: none;
}

.call:hover .call-me h5 {
  display: flex;
}

.phone-icon {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background: var(--gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.phone-icon img {
  height: 35px;
}

.call-me {
  border: 2px solid var(--blue);
  background: var(--white);
  width: 185px;
  height: 40px;
  border-radius: 0 20px 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 0 0 -10px;
  transition: all 0.3s ease;
}

.call-me p {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 auto;
}

.call-me h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 auto;
  display: none;
}

/* offerwall */
.section1 {
  text-align: center;
  padding: 60px 0 30px 0;
}

.sec1-txt {
  margin-bottom: 20px;
}

.sec1-txt h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--purple);
}

.sec1-txt h3 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec1-txt p {
  font-size: 18px;
  line-height: 1.1;
  color: var(--purple);
}

.offer-box {
  margin: 0 auto 20px auto;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 20px;
  padding: 40px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 10px solid var(--blue);
  transition: all 0.4s ease;
}

.offer-box:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.offer-box img {
  width: 200px;
}

.big-logo {
  height: 90px;
}

.offer-txt {
  text-align: left;
  width: 55%;
  margin: 0 30px;
  border-right: 4px dashed var(--purple);
}

.offer-txt h6 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.offer-txt p {
  color: var(--purple);
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
}

.ty-pg-cta {
  margin: 0 auto;
  width: 180px;
  height: 40px;
  border: none;
  border-radius: 50px;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}

.ty-pg-cta:hover {
  background-color: var(--purple);
  color: var(--white);
}

.error-page {
  justify-content: center;
}

.message-error {
  text-align: center;
  width: 700px;
  background: var(--white);
  padding: 50px 40px;
  border-radius: 30px;
}

/* Adstrategy */
#section-ads {
  min-height: 10vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Media Queries */
@media only screen and (max-width: 1400px) {
  .offer-txt h6 {
    font-size: 20px;
  }

  .offer-txt p {
    max-width: 90%;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1200px) {

  .questions,
  .fee-output {
    max-width: 100%;
  }

  .simulation h3 {
    font-size: 30px;
  }

  .output-row h6 {
    width: 50%;
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .form-step h1 {
    font-size: 50px;
  }

  .simulation {
    padding: 30px;
  }

  .nav-menu ul li {
    margin: 0 0 0 25px;
  }

  .nav-menu ul li button {
    padding: 0;
    width: 170px;
  }

  .txt-box h6,
  .radio-row h3 {
    font-size: 14px;
  }

  .offer-box img {
    margin-bottom: 10px;
  }

  .offer-txt {
    width: 90%;
    text-align: center;
    margin: 10px auto 20px auto;
    border-right: none;
  }

  .offer-txt h3 {
    max-width: 100%;
    font-size: 23px;
  }

  .offer-box {
    flex-direction: column;
  }

  .call-link {
    top: 0;
  }

  .fee-box h3 {
    margin-bottom: 20px;
  }

  #fees {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #fees button,
  #fees button:first-of-type {
    margin: 8px 10px 8px 0;
    min-width: 23%;
  }
}

@media only screen and (max-width: 767px) {

  .nav,
  .form-step h1,
  .fee-box {
    text-align: center;
  }

  .fee-box h3 {
    max-width: 80%;
    margin: 0 auto 20px auto;
  }

  .txt-box h6 {
    max-width: 80%;
    font-size: 15px;
  }

  .form-button {
    margin: 20px auto 0 auto;
  }

  #fees {
    justify-content: space-between;
  }

  #fees button,
  #fees button:first-of-type {
    margin: 8px 0;
    min-width: 30%;
  }

  .after-sim {
    margin: 40px auto;
  }

  .cal-body {
    margin: 60px auto;
  }

  .offer-txt h6 {
    font-size: 22px;
    line-height: 1;
  }

  .call-link {
    position: relative;
    top: unset;
    right: unset;
  }

  .call-me p {
    font-size: 20px;
  }

  .message-error {
    width: 90%;
  }

  .compare-bar-title h3 {
    max-width: 80%;
    margin: 0 auto 10px auto;
  }

  .input-values {
    flex-direction: column;
  }

  .value-box:nth-child(2) {
    margin: 20px auto;
  }

  .form-row {
    top: 20%;
  }

  .form-slider {
    flex-wrap: wrap-reverse;
  }

  #deuda {
    margin-top: 20px !important;
  }

  .form-slider {
    width: 70%;
    justify-content: flex-end;
  }

  .form-inputs input,
  .value-display {
    width: 130px;
    min-width: 130px;
  }
}

@media only screen and (max-width: 500px) {
    .popup-cta__wrapper {
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    .popup-cta__wrapper .alivia-ctas {
        margin: 0;
    }
    
  .txt-box h6 {
    font-size: 14px;
  }

  .fee-output {
    padding: 30px 20px;
  }

  .input-row {
    flex-direction: column;
    text-align: center;
  }

  .txt-box,
  .form-inputs {
    width: 100%;
    justify-content: center;
  }

  .txt-box h6 {
    font-size: 16px;
    max-width: 80%;
    margin: 0 auto 20px auto;
  }

  .form-inputs input,
  .value-display {
    width: 180px;
    min-width: 180px;
  }

  .debt {
    margin-top: 10px !important;
  }

  .form-row {
    width: 100%;
  }

  .last_step {
    width: 95%;
  }

  .radio-row h3 {
    text-align: center;
  }

  .offer-box img {
    width: 150px;
  }

  .offer-txt p {
    max-width: 95%;
  }

  .popup-content {
    width: 95%;
  }

  .popup-content h3 {
    max-width: 70%;
  }
}

@media only screen and (max-width: 475px) {

    .popup-cta__wrapper {
        width: 100%;
        margin-top: 20px;
        gap: 10px;
    }

  .fecharPopup-cta,
  .popup-cta__call {
    margin: 18px 0 0;
    width: 100%;
  }

  .alivia-logo {
    margin-top: 18px;
  }

  .form-step h1 {
    font-size: 40px;
  }

  .questions,
  .fee-output {
    padding: 30px 20px;
  }

  .last_step {
    padding: 30px;
  }

  .simulation h3 {
    font-size: 25px;
  }

  .debt .input-tooltip {
    right: -100px;
  }

  .popup-content {
    padding: 40px 30px;
  }

  .popup-content h3 {
    max-width: 95%;
  }
}

@media only screen and (max-width: 390px) {
  .last_step h3 {
    font-size: 18px;
  }

  #fees button {
    width: 45%;
  }

  .fee-box h3 {
    max-width: 100%;
  }

  .compare-left span,
  .compare-right span {
    font-size: 13px;
  }
}

@media only screen and (max-width: 375px) {
  .last_step {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .form-step h1 {
    font-size: 35px;
  }

  .txt-box h6 {
    max-width: 100%;
    font-size: 15px;
  }

  .fee-box h3 {
    font-size: 16px;
  }

  .last_step .form-button {
    width: 100%;
  }

  .compare-bar-outer h6 {
    font-size: 12px;
  }

  .compare-bar-title h3 {
    font-size: 22px;
  }

  .debt .input-tooltip {
    right: -75px;
  }

  .popup-content h3 {
    font-size: 35px;
  }

  .popup-content p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 335px) {
  .form-step h1 {
    font-size: 32px;
  }

  .txt-box h6 {
    font-size: 13px;
  }

  .last_step {
    border-radius: 15px;
  }

  .last-output-row h6 {
    font-size: 13px;
  }

  .simulation h3 {
    font-size: 22px;
  }

  .last-output-row img {
    width: 40px;
  }

  .logo-ty {
    width: 120px;
  }

  .debt .input-tooltip {
    right: -85px;
  }
}