@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 {
  --clr-primary: #0033CC;
  --clr-secondary: #FA7920;
  --clr-tertiary: #FFD560;
  --clr-white: #fff;
  --clr-black: #000;
  --clr-bg: #EEF2FF;
  --lightgrey: #F4F4F4;
  --white: #fff;
  --black: #000;
  --clr-hr: #CCCDD1;
  --green: #02968A;
  --darkgreen: #043E54;
  --gradient: linear-gradient(102deg, var(--clr-tertiary) 0.63%, var(--clr-secondary) 49.5%, var(--clr-secondary) 98.38%);
  --gradient-soft: linear-gradient(102deg, var(--clr-secondary) 0%, var(--clr-secondary) 50%, var(--clr-primary) 100%);
  --footer-gradient: linear-gradient(102deg, var(--clr-secondary) 0.63%, var(--clr-secondary) 49.5%, var(--clr-tertiary) 98.38%);
  --section-margin-top: 80px;
  --ff-primary: 'Poppins';
}

html, body {
  margin: 0;
  padding: 0 !important;
  font-family: var(--ff-primary), sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-primary);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  text-wrap: balance;
}

a:hover {
  color: #000000;
}

.custom-container {
  --max-width: 1200px;
  --padding: 2rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin: 0 auto;
}

.title {
  font-size: 30px;
  font-weight: 700;
}

.custom-button {
  max-width: 470px;
  flex-shrink: 0;
  color: var(--clr-white);
  background-color: var(--clr-secondary);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto;
  cursor: pointer;
}

.custom-button p {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  max-width: 93%;
  transition: background 3s;
}

.custom-button:hover {
  background: var(--clr-primary);
}


#section-ads {
  margin-block: 30px;
  text-align: center;
}

.hero__logo {
  width: 100%;
  max-width: 172px;
}

/* topbar */
.top-bar {
  width: 100%;
  background-color: var(--clr-primary);
  padding-block: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar a {
  text-decoration: none;
  color: var(--clr-white);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

#hero {
  margin-top: var(--section-margin-top);
}

.hero__wrapper {
  display: flex;
}

.hero__left {
  width: 100%;
  max-width: 550px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 75px;
}

.hero__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
  margin: 0;
  text-transform: uppercase;
}

.hero__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__paragrafo {
  margin: 0;
  font-size: 22px;
}

.hero__paragrafo span {
  font-weight: 700;
  background: linear-gradient(0deg,rgba(250, 121, 32, 1) 15%, rgba(250, 121, 32, 0) 15%);
  /*border-bottom: 4px solid var(--clr-secondary);*/
}

.hero__left-mobile {
  display: none;
}

.hero__header-mobile {
  display: none;
}


/* google review */
.google-review {
  border-radius: 35px;
  border: 0.729px solid var(--clr-primary);
  width: 390px;
}

.google-review__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding-inline: 15px;
}

.google-review__avaliacao p {
  margin: 0;
}

.review__rating {
  font-size: 18px;
  font-weight: 500;
  margin: 0
}

.review__comentarios {
  font-size: 13px;
  margin: 0;
}

.review__comentarios span {
  color: var(--clr-secondary);
  font-weight: 700;
}

.hero__right {
  width: 100%;
  height: 760px;
}

/* Formulario */
.form-body {
  width: 100%;
  max-width: 505px;
  margin-left: auto;
  border-radius: 20px;
}

/* #### FORM #### */
#contactform {
  width: 100%;
  /* min-height: 500px; */
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 15px 40px rgba(42, 51, 83, .13);
  backdrop-filter: blur(65px);
  border-radius: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 30px;
}

.form-step {
  width: 100%;
  text-align: center;
  display: none;
  text-align: center;
  opacity: 0;
}

.form-step.active {
  display: block;
  opacity: 1;
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.title h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.mascot img {
  height: 140px;
}

.form-step hr {
  height: 1px;
  width: 100%;
  border-radius: 10px;
  opacity: 1;
  background: var(--clr-hr);
  border: none;
  margin: 0;
}

/* tooltip i */
.tt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: scale 0.4s ease;
  cursor: pointer;
  margin-bottom: 2px;
}

.tt:hover {
  scale: 1.1;
  filter: none;
  opacity: 1;
}

.custom-tooltip {
  --bs-tooltip-bg: var(--clr-bg);
  --bs-tooltip-opacity: 1;
  --bs-tooltip-color: var(--clr-primary);
  --bs-tooltip-padding-x: 15px;
  --bs-tooltip-max-width: 380px;
  --bs-tooltip-padding-y: 20px;
  line-height: 1.1;
  font-weight: 500;
}

.tooltip.custom-tooltip .tooltip-inner {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: .5rem;
}



/* sliders */
.form-slider {
  display: flex;
  justify-content: start;
  align-items: center;
}

.big-form-slider {
  flex-direction: column;
}

.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; */
  height: 10px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--clr-primary) 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: 6px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--clr-primary) 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]::-moz-range-track {
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--clr-primary) 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]::-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: 20px;
  height: 20px;
  background-color: var(--clr-secondary);
  border-radius: 13px;
  margin-top: -6.5px;
}

input[type="range"]::-moz-range-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--clr-secondary);
  border-radius: 13px;
  margin-top: -6.5px;
}

input[type="range"]::-ms-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--clr-secondary);
  border-radius: 13px;
  margin-top: -6.5px;
}

input[type=range]:focus-visible {
  outline: none;
}

.questions__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-block: 30px;
}

/*tooltip css*/
/*.question-title {
  margin-bottom: 5px;
}

.question-title h6 {
  text-align: start;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}*/

.question-title {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 0 !important;
  margin-bottom: 15px;
}

.question-title h6 {
  text-align: start;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}

.question-title span {
  font-size: 10px;
  width: 100%;
  opacity: 0.4;
  text-align: left;
  text-wrap: auto;
  line-height: 1.1;
  margin-top: 5px;
}

.question-title h6 span {
  font-size: 10px;
}

.question-title h5 {
  font-size: 18px;
  margin: 0 auto 20px auto;
  color: var(--darkgreen);
  font-weight: 700;
}

#small-txt {
  font-size: 12px;
  color: var(--darkgreen);
  line-height: 1;
  margin: -15px auto 20px auto;
}

.subtitulo {
  color: var(--clr-secondary);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.value-display {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--clr-primary);
  background: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
}

.value-display span {
  line-height: 1;
}

.value-display span:focus-visible {
  outline: none !important;
}

.big-form-slider .value-display {
  text-align: center;
  justify-content: center;
  margin-bottom: 20px;
}

.slider-rendimento {
  padding: 0;
}

.dinheiro_extra_slider {
  margin: 20px auto 5px auto;
}

/* radio */
.radio-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.radio-buton {
  width: 45%;
}
.radio-last {
  width: 100% !important;
}

.radio-opt-normal {
  justify-content: space-between;
}

.radio-opt-normal .radio-buton {
  width: 48%;
}

/* .radio-buton:last-of-type {
  margin-left: 15px;
} */

.radio-buton input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-buton label {
  background: var(--white);
  border: 1px solid var(--clr-primary);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--clr-primary);
  font-size: 14px;
  line-height: 1.1;
  text-align: start;
}

.radio-simnao .radio-label {
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
}

.radio-titular label {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.radio-opt-normal .radio-buton label {
  width: 100%;
  margin: 0 auto;
  padding: 0 2px 0 10px;
}

.radio-buton label img {
  height: 15px;
  margin: -1px 8px 0 0;
  filter: brightness(0) saturate(100%) invert(12%) sepia(29%) saturate(7188%) hue-rotate(221deg) brightness(94%) contrast(109%);
}

.radio-buton label .radio-opt-normal .radio-buton label img {
  height: 20px;
}

.radio-buton label:hover,
.radio-buton input[type="radio"]:checked+label {
  border: 1px solid var(--clr-secondary);
  color: var(--clr-secondary);
}

.radio-buton label:hover img,
.radio-buton input[type="radio"]:checked+label img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(89%) saturate(1495%) hue-rotate(347deg) brightness(99%) contrast(95%);
}

.radio-opt-grid {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
}

.radio-opt-grid .radio-buton {
  width: 49%;
}

.radio-opt-grid .radio-buton:first-of-type,
.radio-opt-grid .radio-buton:last-of-type {
  margin: 0;
}

.disc {
  text-align: left;
  font-size: 9px;
  line-height: 1.1;
  color: var(--clr-primary);
  margin: 10px 0 0 0;
}

#poupanca__wrapper {
  display: none;
}

#saida {
  text-align: center;
}

#poupanca__wrapper.is-visible {
  display: flex;
}

.dinheiro_extra_slider,
.titular2,
.mensalidade_valor,
.contrato_tipo,
.contrato_anos,
.contrato_tipo2,
.contrato_anos2,
#success-message {
  display: none;
}

.results {
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
  background: var(--clr-bg);
  border-radius: 10px;
}

.results__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
}

.results__title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.results__title p {
  margin: 0;
}

.results__wrapper,
.poupanca__wrapper {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px;
}

.poupanca__title {
  display: flex;
  align-items: center;
  gap: 5px;
}

#novaMens {
  font-size: 16px;
  font-weight: 700;
}

.results p span {
  font-size: 18px;
  font-weight: 700;
}

.piggy {
  height: 25px;
  margin-top: -4px;
  margin-right: 5px;
}

.poupanca__wrapper {
  background-color: var(--clr-primary);
  color: #fff;
  border-radius: 0 0 10px 10px;
}

#poupanca_form {
  font-size: 16px;
}

/* input */
.form-input input {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--clr-primary);
  font-size: 16px;
  font-weight: 400 !important;
  padding-left: 39px;
  background-size: 20px !important;
  background-position: 10px 11px !important;
  background-repeat: no-repeat !important;
  -webkit-appearance: none;
  color: var(--clr-primarys);
  text-align: left !important;
  margin: 0 auto;
  line-height: 1;
}

.form-input input:focus-visible {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.titular1,
.titular2 {
  margin-block: 20px;
}

.titular2 {
  margin-top: 10px;
}

.title_1titular, .title_2titular {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
}

#nascimento1,
#nascimento2,
#qnt_tempo,
#qnt_tempo2 {
  background: url('/img/icons/form/date.svg'), var(--white);
  background-position: 11px 12px !important;
  background-size: 18px 16px !important;
}

#nascimento1,
#nascimento2 {
  background-position: 11px 13px !important;
}

#mensalidade {
  background: url('/img/icons/form/euro.svg'), var(--white);
  background-position: 12px 14px !important;
  background-size: 14px 16px !important;
}

#nome {
  background: url('/img/icons/form/user.svg'), var(--white);
  background-position: 9px 12px !important;
}

#email {
  background: url('/img/icons/form/email.svg'), var(--white);
  background-position: 9px 12px !important;
}

#telefone {
  background: url('/img/icons/form/call.svg'), var(--white);
  background-position: 9px 12px !important;
}

#nif {
  background: url('/img/icons/form/id.svg'), var(--white);
  background-position: 9px 12px !important;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
  padding-left: 20px !important;
}

label.error {
  display: none;
}

.input-groups input {
  margin-bottom: 20px;
}

.input-groups input.error {
  margin-bottom: 5px;
}

.disclaimer__wrapper {
  display: flex;
  align-items: center;
}

.disclaimer {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  column-gap: 25px;
  margin-top: 15px;
}

.disclaimer img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 60px;
}

.disclaimer-text p {
  font-size: 11px;
  text-align: start;
  margin-bottom: 0;
}

.disclaimer__mais {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-check {
  text-align: center;
  padding: 0;
}

.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--clr-primary);
  font-size: 12px;
  font-weight: 200;
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: -2px;
  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.5px;
  font-size: 14px;
}

#politica-link {
  font-size: 12px;
  color: var(--clr-primary);
  text-decoration: underline;
  font-weight: 700;
}

#politica-link:hover {
  color: var(--clr-primary);
}

.error,
#termos-error {
  color: red;
  font-size: 10px;
  width: 100%;
  font-weight: 400;
  text-align: center;
  margin-block: 5px;
}

#termos-error {
  padding: 0;
}

.form__navigation {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 20px;
}

.back-button {
  height: 50px;
  width: 50px;
  background-color: transparent;
  border: 1px solid var(--clr-primary);
  border-radius: 10px;
}

.back-button img {
  width: 65%;
}

.form-button {
  width: 100%;
  max-width: 250px;
  height: 50px;
  background: var(--clr-secondary);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: 20px;
  border: none;
  border-radius: 10px;
  line-height: 1;
}

.pulse-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--clr-primary);
}

.pulse-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
  animation: pulseOverlay 3s ease-in-out infinite;
}

@keyframes pulseOverlay {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.form-button:hover {
  background: var(--clr-primary);
}

.final-step {
  text-wrap: balance;
}

.final-step img {
  height: 200px;
  margin-bottom: 20px;
}

.final-step h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}

.final-step p {
  line-height: 1.1;
  font-size: 18px;
  color: var(--darkgreen);
  margin-top: 20px;
}

/*#situacao_2titular {
  margin-bottom: 20px;
}*/

/* #### END FORM #### */


/* Partners */
#partners {
  margin-top: var(--section-margin-top);
}

.partners__box {
  border-radius: 40px;
  background: var(--clr-white);
  padding: 85px 90px;
}

.partners__wrapper h3 {
  text-align: center;
  line-height: 35px;
  margin-bottom: 70px;
}

.partners__wrapper span {
  color: var(--clr-secondary);
}

.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(--clr-white), rgba(255, 255, 255, 0));
}

.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-white), rgba(255, 255, 255, 0));
}

.partner-outer img {
    margin: 0 auto;
    height: 100px;
}

/* section2 */
#section-why {
  margin-top: var(--section-margin-top);
}

.section-why {
  text-align: center;
}

.section-why h3 {
  margin-bottom: 45px;
}

.section-why span {
  color: var(--clr-secondary);
}

.vant-box {
  background: var(--clr-white);
  border-radius: 20px;
  padding: 22px;
  width: 100%;
  max-width: 270px;
  height: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin: 0 auto 20px;
  transition: all 0.5s ease;
  cursor: pointer;
}

/* .vant-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vant-box.animate-in {
  opacity: 1;
  transform: translateY(0);
} */

.vant-box img {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
}

.vant-box h5 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  height: 45px;
  margin-bottom: 30px;
}

.vant-box p {
  max-width: 90%;
  font-size: 16px;
  line-height: 20px;
}

.vant-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}


/* container dos dots */
.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* dot ativo */
.slick-dots li.slick-active button {
  background: var(--clr-secondary);
  transform: scale(1.2);
}

.slick-dots li button:hover {
  background: var(--clr-primary);
}

.why-slider {
  margin: 0 -12px;
}

.why-slider .slick-slide {
  padding: 0 12px;
}

.why-slider .slick-track {
  margin-top: 15px;
}

/* section stats */
#stats {
  margin-top: var(--section-margin-top);
}

.numbers-box {
  background: url('/img/glass-effect.svg'), var(--gradient);
  background-size: cover, 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  padding: 108px 40px;
  border-radius: 50px;
  color: var(--clr-white);
  overflow: hidden;
  margin-bottom: 40px;
}

.numbers-content {
  margin: 0 30px;
}

.numbers-content h6 {
  color: var(--clr-white);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 auto 20px auto;
  text-align: center;
}

.numbers-content h3 {
  color: var(--clr-white);
  font-size: 65px;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto;
  text-align: center;
}

/* section Processo */
.section-processo {
  text-align: center;
  margin-top: var(--section-margin-top);
}

.processo__wrapper {
    margin-bottom: 40px;
}

.processo-txt {
  margin-bottom: 50px;
}

.processo-txt h3 {
  color: var(--blue);
  font-weight: 700;
  font-size: 30px;
}

.processo-txt h3 span {
  font-weight: 700;
  color: var(--clr-secondary);
}

.processo-txt p {
  font-size: 22px;
  margin: 0 auto;
  line-height: 1.2;
}

.section-processo .accordion {
  background-color: transparent;
  --bs-accordion-border-color: none;
}

.section-processo .accordion-item {
  margin-bottom: 15px;
  border: none !important;
}

.section-processo .accordion-item:focus {
  border: none !important;
}

.section-processo .accordion-item,
.section-processo .accordion-button {
  border: none;
  border-radius: 20px !important;
  background: var(--clr-white);
}

.accordion-button {
  padding: 18px !important;
}

.section-processo .accordion-button:not(.collapsed) {
  background: transparent;
  padding: 13px 20px !important;
  border-radius: 20px 20px 0 0 !important;
  font-weight: 700;
  color: var(--clr-secondary);
  line-height: 1.2;
}

.section-processo .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-position: center top;
}


.section-processo .accordion-button::after,
.section-processo .accordion-button:not(.collapsed)::after {
  background-image: url(/img/icons/arrow-down.svg);
  background-size: 100%;
  height: 20px;
  width: 25px;
  background-position: center bottom;
  transition: transform .2s ease;
}

.section-processo .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-position: center top;
  background-image: url(/img/icons/arrow-up.svg);
  background-size: 100%;
}

/* section -processo.accordion-button.collapsed {
  border-radius: 20px 0!important;
} */

.section-processo .accordion-button:focus {
  box-shadow: none;
}

.section-processo .accordion-button {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-primary);
  transition: all 0.3s ease;
}

.section-processo .accordion-button span {
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.section-processo .accordion-button span p {
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  padding: 0;
  margin: -3px auto 0 auto;
}

.section-processo .accordion-button .step-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  margin-right: 20px;
}

@property --progress {
  syntax: '<number>';
  initial-value: 0;
  inherits: true;
}

/* círculo com loader e número no centro */
.section-processo .accordion-button .step-icon {
  --size: 36px;
  --track: var(--clr-primary);
  --progress: 0;
  color: var(--clr-secondary);
  position: relative;
  inline-size: var(--size);
  block-size: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* com o número */
.section-processo .accordion-button .step-icon::before {
  content: attr(data-step);
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-primary);
  z-index: 1;
  width: 30px;
  aspect-ratio: 1;
}

/* "anel" de progresso */
.section-processo .accordion-button .step-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(currentColor calc(var(--progress) * 1%), var(--track) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--thickness)), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - var(--thickness)), #000 0);
  z-index: 0;
  transition: background 0s, transform 0s;
}

.section-processo .accordion-body {
  border-left: 1px solid var(--acqua);
  padding-top: 0;
}

.section-processo .accordion-body p {
  text-align: left;
  color: var(--clr-primary);
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  line-height: 1.2;
  margin-left: 57px;
  text-wrap: auto;
  max-width: 85%;
}

.section-processo .accordion-img {
  position: relative;
  overflow: hidden;
}

.section-processo .accordion-img-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 40px;
  right: 0;
  left: 0;
  z-index: 4;
}

.section-processo .accordion-img img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.accordion-body {
  padding-bottom: 25px;
}

#simu1,
#simu2,
#simu3,
#simu4,
#simu5,
#simu6 {
  display: none;
}

#simu1.fade-in,
#simu2.fade-in,
#simu3.fade-in,
#simu4.fade-in,
#simu5.fade-in,
#simu6.fade-in {
  display: block;
  opacity: 1;
}

/* section-faqs */
.section-faqs {
  text-align: center;
  padding: 80px 0;
}

.section-faqs .custom-container {
  background: var(--clr-white);
  border-radius: 40px;
  padding: 60px 30px;
  position: relative;
}

.sec5-txt h3 {
  margin-bottom: 30px;
}

.sec5-txt h3 span {
  color: var(--clr-secondary);
}

.section-faqs .accordion-item {
  border: none;
  border-radius: 20px;
  margin-bottom: 15px;
  cursor: pointer;
}

.section-faqs .accordion-button {
  background-color: var(--clr-bg);
  border-radius: 20px !important;
  padding: 20px 35px;
}

.section-faqs .accordion-button span {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-primary);
}

.section-faqs .accordion-button::after,
.section-faqs .accordion-button:not(.collapsed)::after {
  background-image: url('/img/icons/arrow-down.svg');
  background-size: 100%;
  height: 20px;
  width: 25px;
  background-position: center bottom;
}

.section-faqs .accordion-button:not(.collapsed)::after {
  background-image: url('/img/icons/arrow-up.svg');
  background-position: center top;
}

.section-faqs .accordion-button:focus {
  box-shadow: none;
}

.section-faqs .accordion-button:not(.collapsed) {}

.section-faqs .accordion-body {
  background-color: var(--clr-white);
  text-align: left;
}

.section-faqs .accordion-body p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--clr-primary);
  margin: 10px 0;
  text-wrap: auto;
}


/* footer */
.footer {
  padding: 60px 0 0 0;
}

.footer-outer {
  background: var(--footer-gradient);
  border-radius: 60px;
  position: relative;
  padding: 65px 20px;
}

.footer-txt {
  color: var(--clr-white);
}

.footer-txt p {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
}

.footer-txt h3 {
  color: var(--white);
  font-size: 30px;
}

.footer-txt button {
  text-transform: uppercase;
  background: var(--clr-white);
  width: 374px;
  height: 60px;
  border: none;
  border-radius: 20px;
  color: var(--clr-secondary);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0 0;
}

.footer-txt button img {
  width: 7px;
  margin-left: 10px;
  filter: brightness(0) invert(1);
}

.footer-txt button:hover {
  background: var(--white);
  color: var(--clr-primary);
}

.footer-txt button:hover img {
  filter: none;
}

.footer-img img {
  position: absolute;
  bottom: 0;
  right: 30px;
  bottom: -1px;
  width: 490px;
  height: auto;
}

#banco-portugal {
  margin-top: 40px;
}

.banco-portugal__wrapper {
  color: var(--clr-primary);
  font-size: 8px;
  line-height: 12px;
  text-wrap: auto;
}

.message-box {
  min-height: 433px;
  width: 100%;
  border-radius: 20px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  padding: 0 50px;
}

.message-box h3 {
  font-size: 30px;
  font-weight: 700;
}

.message-box p {
  font-size: 18px;
  line-height: 22px;
}

.message-box--rd {
  min-height: auto;
  justify-content: flex-start;
  gap: 16px;
  padding: 40px 50px;
}

.message-box--rd h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.rd-particular-subtitle {
  color: #3A3C44;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.rd-terms-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin: 0 0 20px;
  color: #3A3C44;
  font-size: 14px;
}

.message-box--rd form {
  width: 100%;
}

.rd-terms-consent input {
  margin-top: 4px;
}

.rd-terms-consent a {
  text-decoration: underline;
  color: var(--clr-primary);
  cursor: pointer;
}

.rd-form-error {
  color: #C1121F;
  font-weight: 600;
  margin-bottom: 18px;
}

.rd-submit-btn {
  width: 100%;
  max-width: 360px;
  border: none;
  border-radius: 14px;
  background: var(--clr-secondary);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  height: 56px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.rd-submit-btn:hover {
  background: var(--clr-primary);
}

.rd-submit-btn--sent,
.rd-submit-btn--sent:hover {
  background: var(--green);
  cursor: not-allowed;
}

.rd-upload-form {
  width: 100%;
}

.rd-upload-label {
  width: 100%;
  border: 2px dashed var(--clr-primary);
  border-radius: 14px;
  padding: 18px 14px;
  cursor: pointer;
  margin-bottom: 12px;
  text-align: center;
}

.rd-upload-label p {
  margin: 0 0 4px;
}

.rd-upload-label .underline {
  text-decoration: underline;
  font-weight: 700;
}

.rd-upload-label small {
  display: block;
  font-size: 12px;
}

#mapaResponsabilidades-upload {
  display: none;
}

.rd-upload-error {
  color: #C1121F;
  font-size: 13px;
  margin: 0 0 10px;
  text-align: left;
}

.rd-download-link {
  font-size: 13px;
  margin: 0 0 12px;
}

.rd-download-link a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.hr__2titular {
  margin-bottom: 20px !important;
}


.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(25px);
}

.box {
    position: absolute;
    padding: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    background-color: #fff;
    box-shadow: 0 26px 20.6px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    height: 450px;
    display: flex;
    align-items: center;
    gap: 28px;
    z-index: 1000;
}

.popup__header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: center;
    border-radius: 20px;
    background: #EEF2FF;
    height: 100%;
    width: 100%;
    max-width: 380px;
    z-index: 1;
}

.popup__header::before {
    content: "";
    height: 120px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;  
    position: absolute;
    background: url('/img/popup/mask.png') no-repeat bottom right / cover;
    border-radius: 20px;
} 

.popup__header--button {
    filter: drop-shadow(0 0 20px rgba(1, 51, 204, 0.50));
    border-radius: 72.5px;
    border: 5px solid #EEF2FF;
    background: #FFF;
    width: 90%;
    max-width: 325px;
    height: 68px;
    display: flex;
    max-width: 325px;
    align-items: center;
    justify-content: space-evenly;
}

.popup__header--button span {
    font-size: 30px;
}

.popup__body h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; 
}

.popup__body h2 span {
    border-bottom: 4px solid var(--clr-secondary);
}

.popup__body {
    border-radius: 20px;
    background: #FFF;
    color: var(--clr-primary);
}

.popup__body p {
    font-size: 18px;
    line-height: 22px;
}

.popup__body ul {
    margin-block: 20px;
    list-style: none;
    padding: 0;
}

.popup__body ul li {
    line-height: 30px;
    position: relative;
    padding-left: 25px;
}

.popup__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("/img/popup/popup-list.svg") no-repeat center;
  background-size: contain;
}

.popup__body button {
    background-color: var(--clr-secondary);
    border-radius: 10px;
    width: 85%;
    height: 50px;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    
}

.close {
    position: absolute;
    right: 1%;
    top: 7px;
    width: 30px;
    height: 30px;
    color: var(--clr-primary);
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: grid;
    place-content: center;
    z-index: 10;
}

.close:hover {
    color: var(--clr-primary);
}

@media (max-width: 1400px) {
  .numbers-content h3 {
    font-size: 70px;
  }

  .numbers-content h6 {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .hero__header {
    width: 98%;
  }

  .hero__title {
    font-size: 50px;
  }

  .hero__paragrafo {
    font-size: 20px;
  }

  .google-review {
    max-width: 390px;
    width: 95%;
  }

  .numbers-content {
    margin: 0 auto;
  }

  .numbers-content h3 {
    font-size: 60px;
  }

  .footer-txt h3 {
    font-size: 24px;
    max-width: 70%;
  }

  .footer img {
    width: 477px;
  }
}

@media (max-width: 1115px) {
  .vant-box h5 {
    font-size: 22px;
    height: 35px;
  }

  .vant-box p {
    max-width: 100%;
    font-size: 15px;
    line-height: 20px;
  }

  .footer-img img {
    right: 0;
  }

  .footer {
    padding: 30px 0 0 0;
  }

  .footer-txt button {
    max-width: 300px;
    width: 100%;
    font-size: 16px;
  }


  .footer-txt h3 {
    max-width: 85%;
  }
}

@media (max-width: 991px) {
    .popup__header--button span {
        font-size: 24px;
    }
    
    .popup__header--button {
        width: 85%;
        height: 60px;
    }
    
    .popup__body ul li {
        line-height: 26px;
    }
    
    .popup__body button {
        width: 75%;
        font-size: 17px;
    }
    
  .hero__title {
    font-size: 40px;
    line-height: 50px;
  }

  .hero__paragrafo {
    font-size: 18px;
  }

  .google-review {
    max-width: 360px;
    width: 92%;
  }

  .review__rating {
    font-size: 15px;
  }

  .review__comentarios {
    font-size: 12px;
  }

  .stars {
    display: block;
    width: 65px;
  }

  .numbers-content h3 {
    font-size: 45px;
  }

  .numbers-content h6 {
    font-size: 18px;
  }

  .custom-button p {
    font-size: 18px;
  }

  .processo-txt h3 {
    font-size: 28px;
  }

  .processo-txt p {
    font-size: 18px;
    margin: 0 auto;
  }

  .section-processo .accordion-body p {
    font-size: 15px;
  }

  .section-processo .accordion-button {
    font-size: 18px;
  }

  .footer-outer {
    padding: 22px 20px;
  }

  .footer img {
    width: 370px;
  }

  .footer-txt button {
    max-width: 250px;
    width: 100%;
    font-size: 15px;
  }

  .footer-txt p {
    font-size: 15px;
  }

}

@media (max-width: 768px) {
    .lightbox { display: none !important; }
    .box {
        flex-direction: column;
        height: auto;
    }
    .partner-outer img {
        max-width: 80%;
        height: auto;
    }
    .popup__body {
        display: flex;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .popup__header {
        max-width: 100%;
        padding-block: 30px;
    }
    .popup__header::before {
        height: 135px;
        background-position: 29px;
    }
  .message-box {
    padding: 0px 30px;
  }

  #hero {
    margin-top: 40px;
  }

  .hero__header-mobile {
    display: flex;
    flex-direction: column;
  }

  .hero__wrapper {
    flex-direction: column;
  }

  .hero__left {
    display: none;
  }

  .hero__header-mobile {
    margin-top: 80px;
  }

  .hero__left-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .hero__logo {
    width: 100%;
    max-width: 200px;
  }

  .hero__paragrafo__wrapper {
    width: 90%;
    margin: 0 auto 30px;
  }

  .hero__header {
    text-align: center;
  }

  .google-review {
    margin: 0 auto;
    width: 100%;
  }

  .form-body {
    margin: 0 auto;
  }

  .section-faqs {
    padding: 20px 0;
  }

  .section-processo .accordion-img img {
    max-width: 300px;
  }

  .section-faqs .accordion-button span {
    font-size: 17px;
  }

  .section-faqs .custom-container {
    padding: 35px 18px;
  }

  .numbers-box {
    padding: 50px;
    background-position: 35%, center;
    max-width: 95%;
  }

  .numbers-content {
    margin: 25px auto;
  }

  .numbers-content h3 {
    font-size: 65px;
  }

  .numbers-content h6 {
    font-size: 20px;
  }

  .custom-button {
    max-width: 85%;
    margin-top: 40px;
  }

  .title {
    font-size: 25px;
  }

  .partners__box {
    padding: 80px 40px 70px;
  }

  .partners__wrapper h3 {
    margin-bottom: 35px;
  }
  
  .section-processo {
      margin-block: var(--section-margin-top);
  }
  
  .processo__wrapper {
      margin-bottom: 0;
  }

  .processo-txt p {
    max-width: 80%;
  }

  .footer-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .footer-img img {
    position: relative;
  }

  .footer-outer {
    padding-bottom: 0;
    padding-top: 30px;
  }

  .footer-txt {
    text-align: center;
  }

  .footer button {
    margin-inline: auto;
    margin-bottom: 20px;
  }

  .footer-txt h3 {
    max-width: 80%;
    font-size: 30px;
    margin-inline: auto;
  }

  .custom-container {
    --padding: 1rem;
  }

  .message-box--rd {
    padding: 30px 22px;
  }
}

@media (max-width: 600px) {
  .footer-img img {
    width: 90%;
  }
  .custom-tooltip {
      --bs-tooltip-max-width: 200px;
  }
  .popup__body button {
      font-size: 16px;
  }
  .question-title span {
    font-size: 9px;
  }
}

@media (max-width: 475px) {
    .popup__header {
        gap: 25px;
    }
    .popup__body h2 {
        font-size: 27px;
        line-height: 1.2;
    }
    .popup__header--button span {
        font-size: 18px;
    }
    .box {
        padding: 15px;
    }
    .partner-slider .slick-track {
        padding: 30px 0 15px;
    }
    .partners__box {
        padding: 32px 25px;
    }
    
    .partners__wrapper h3 {
        line-height: 1.2;
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .partner-outer img {
        max-width: 98%;
        height: auto;
    }
    
  .radio-opt-normal {
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
  }

  .rd-terms-consent {
    font-size: 13px;
  }

  .message-box--rd {
    padding: 26px 16px;
  }

  .rd-submit-btn {
    height: 52px;
    font-size: 16px;
  }

  .radio-opt-normal .radio-buton {
    width: 100%;
  }

  .numbers-box {
    padding: 50px 30px;
  }

  .hero__title {
    font-size: 30px;
    line-height: 40px;
  }

  .section-processo .accordion-button::after,
  .section-processo .accordion-button:not(.collapsed)::after {
    width: 20px;
  }

  .hero__header {
    gap: 20px;
  }

  .hero__paragrafo {
    font-size: 16px;
  }

  .section-processo .accordion-button {
    font-size: 16px;
  }

  .section-processo .accordion-body p {
    font-size: 14px;
  }

  .radio-opt-grid .radio-buton {
    width: 100%;
  }

  .footer-txt h3 {
    max-width: 100%;
    font-size: 25px;
  }
}

@media (max-width: 414px) {
  .numbers-content h3 {
    font-size: 55px;
  }
}

@media (max-width: 375px) {
  .results {
    align-items: center;
    flex-direction: column;
  }

  .numbers-content h3 {
    font-size: 45px;
  }

  .footer-txt button {
    max-width: 250px;
    width: 80%;
  }

  .footer-img {
    display: none;
  }

  .footer-outer {
    border-radius: 40px;
  }
}

@media (max-width: 335px) {
  .numbers-box {
    padding: 40px 0;
  }

  .stars {
    display: none;
  }

  .google-review__wrapper {
    justify-content: flex-start;
    gap: 20px;
  }
}
