@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  overflow-y: auto;
}

a:hover {
  color: #000000;
}

#section-ads {
  padding: 30px 0;
}


:root {
  --colorPrimary: #226CB5;
  --colorSecondary: #08477C;
  --colorTerciary: #226CB5;
  --darkblue: #254144;
  --pink: #df539a;
  --oragne: #ea9f4c;
}

/* Header / Form */
.section1 {
  background-image: url(/img/persona1.png), url(/img/bg.svg);
  background-size: 550px, cover;
  background-repeat: no-repeat;
  background-position: 55% bottom, center top;
  padding: 0 0 180px 0;
}

.logo {
  max-width: 220px;
  margin-top: 0;
  margin-bottom: 70px;
}

.section1 h5 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pink);
}

.section1 hr {
  background: var(--darkblue);
  opacity: 1;
  height: 5px;
}

.section1 h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--darkblue);
}

.reveal {
  position: relative;
  font-size: 60px;
  font-weight: bold;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.reveal::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--pink);
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.5),
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.5),
    0 0 40px var(--pink),
    0 0 80px var(--pink);
  animation: reveal 1.3s ease-in-out infinite alternate;
  transform: scale(0.8);
  opacity: 0;
}

@keyframes reveal {
  0% {
    opacity: 0.5;
    transform: scale(0.6);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.review {
  width: 355px;
  background-color: #fff;
  border-radius: 20px;
  padding: 18px 22px;
  margin-top: 10px;
}

.review-line img {
  margin-right: 15px;
}

.review h4 {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.stars {
  max-height: 22px;
}

.googleLogo {
  width: 50px;
  padding: 0;
}

.review .middleReview {
  width: 125px;
}

.middleReview {
  margin-right: 10px;
}

.counting {
  width: 80px;
}

.review h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.review p {
  font-size: 12px;
  font-weight: 400;
  margin: 10px 0 0 0;
  line-height: normal;
}

.list {
  list-style-type: none;
  padding: 0;
}

.list li {
  padding: 0 0 0 25px;
  background-image: url(/img/icons/check.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

/* Formulario */
.forms-wrapper {
  min-height: 700px;
  position: relative;
}

.form-body {
  border-radius: 40px;
  box-shadow: 0px 14.372px 19.162px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  padding: 30px;
  max-width: 425px;
  position: absolute;
  top: 50%;
  transform: translateY(-47%);
}

.form-title {
  color: var(--darkblue);
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

fieldset {
  display: none;
}

fieldset.active {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-wrap: balance;
}

fieldset p.text-center {
  font-size: 12px;
  font-weight: 500;
  margin: 0 auto 20px;
}

p.small {
  max-width: 270px;
}

#contactform {
  text-align: center;
}

#contactform hr {
  height: 3px;
  opacity: 1;
  border: none;
  background-color: var(--pink);
  width: 100%;
  margin: 0 auto 20px auto;
}

.aid {
  width: 90px;
  height: 90px;
  z-index: 99;
}

.progressImg {
  width: 260px;
  margin: 0 auto 20px auto;
}

.form-body h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}

input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-button {
  width: 100%;
  height: 65px;
  border-radius: 20px;
  margin: 10px auto;
  border: 2px solid var(--darkblue);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  position: relative;
  line-height: 1.1;
  color: var(--darkblue);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  text-align: left;
  line-height: 1;
  padding: 0 20px;
}

input[type="radio"]:checked+label.radio-button,
.radio-button:hover {
  background-color: var(--pink);
  color: white;
  border-color: var(--pink);
}

.radio {
  position: relative;
  display: inline-block;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--colorTerciary);
  transition: all 0.2s ease;
}

/*.radio-button input[type="radio"]:checked+.radio {
  border: 5px solid var(--colorPrimary); 
  background-color: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}*/
.btn-form {
  display: block;
  background-color: var(--oragne);
  color: white;
  width: 200px;
  height: 50px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px auto 0;
  transition: all 0.5s ease;
}

.btn:focus {
  box-shadow: none;
}

.btn-form:hover {
  background-color: var(--darkblue);
  transform: scale(1.1);
  color: white;
  box-shadow: 0 5px 10px #0000005b;
}

/* Slider */
.slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 20px 0 30px;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--colorSecondary) 0%, var(--colorPrimary) 10%, #F7F0F7 10%);
  outline: none;
  transition: background 0.3s;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--colorTerciary);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: var(--colorPrimary);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--colorTerciary);
  border-radius: 50%;
  cursor: pointer;
}

#debtValue {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

/* Custom dropdown */
.custom-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-toggle {
  display: flex;
  color: #8C8C8C;
  font-size: 16px;
  font-weight: 400;
  align-items: center;
  border-radius: 10px;
  border: 2px solid var(--colorTerciary);
  justify-content: space-between;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-list {
  display: none;
  position: absolute;
  background-color: white;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid transparent;
  border-radius: 5px;
  z-index: 1000;
}

.dropdown-item {
  padding: 8px;
  background-color: #eaa2cd4d;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: var(--colorPrimary);
  color: white;
}

input[type="text"]::placeholder {
  color: #8c8c8c;
}

/* Radio options / labels */
.radio-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}

.radio-container label {
  max-width: 160px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 16px;
  border: 2px solid var(--colorTerciary);
  text-align: center;
  transition: all 0.4s ease-out;
  cursor: pointer;
}

.radio-container input {
  display: none;
}

.radio-container input[type="radio"]:checked+label,
.radio-container label:hover {
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: #fff;
}

::placeholder {
  color: #A2A2A2;
}

fieldset input[type="text"] {
  width: 100%;
  padding: 0 20px;
  height: 65px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease;
  color: #000;
  border: 2px solid var(--darkblue);
}

fieldset input[type="text"]:focus-visible,
fieldset input[type="text"]:hover {
  border-color: var(--pink);
  outline: none;
}

fieldset .input-box {
  margin-bottom: 15px;
  width: 100%;
}

#telefone {
  background-image: url(/img/icons/spainFlag.svg);
  padding-left: 60px;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: 7% center;
}

.input-box h4 {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

/*Term animation */
.termContainer {
  width: 100%;
  font-size: 10.5px;
  color: #1E1E1E;
  cursor: pointer;
}

.termContainer a {
  color: #1E1E1E;
  font-weight: 700;
}

.termContainer input {
  display: none;
}

.termContainer a:hover {
  color: var(--primaryColor) !important;
}

.termContainer svg {
  overflow: visible;
  max-height: 15px;
  max-width: 15px;
  margin-right: 5px;
  margin-top: 1px;
  vertical-align: baseline;
  translate: 0 2px;
}

.path {
  fill: none;
  stroke: var(--pink);
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.termContainer input:checked~svg .path {
  stroke: var(--colorPrimary);
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}

label.error {
  color: var(--pink);
  font-size: 12px;
}

#termos-error {
  margin-top: 2px;
}

/* Section 2 */
.section2 {
  margin-top: -120px;
  padding: 20px 0 50px 0;
}

.vant {
  max-width: 350px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 30px;
  filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.15));
  border-radius: 15px;
  text-wrap: balance;
}

.vantagem {
  width: 100%;
  height: 250px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.vantSlider .slick-slide {
  display: flex;
  justify-content: center;
}

.slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vant-animation {
  opacity: 0;
  animation: slideIn 0.8s ease-out forwards;
  animation-delay: var(--delay, 0s);
}


.vant-animation:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.vant img {
  margin-bottom: 10px;
  height: 80px;
}

.vant h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pink);
  margin: 10px auto 20px auto;
}

.vant p {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.question-divider {
  height: 20px;
  width: 100%;
}

.message-box {
  margin-top: 30px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.message-box h3 {
  color: var(--pink);
  font-weight: 700;
}

.message-box p {
  margin: 10px 0;
  font-weight: 500;
  font-size: 18px;
}

@media (max-width: 1440px) {
  .section1 h1 {
    font-size: 34px;
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  .section1 h1 {
    font-size: 32px;
  }

  .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .list li {
    line-height: 1.1;
    font-size: 13px;
  }

  .vant {
    width: 300px;
  }

  .vant h3 {
    font-size: 18px;
  }

  .vant p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .section1 {
    padding-top: 30px;
    background-position: 40% 125%, top;
    background-image: url(/img/bg.svg);
    background-size: cover;
  }

  .logo,
  .section1 h5 {
    margin: auto;
  }

  .logo {
    max-width: 200px;
  }

  .section1 h5 {
    margin-block: 40px 20px;
    text-wrap: balance;
  }

  .section1 h1,
  .section1 h5 {
    text-align: center;
  }

  .section1 h1 {
    font-size: 40px;
    max-width: 100%;
    margin: 0 auto 0px auto;
    text-wrap: balance;
  }

  .reveal {
    width: 265px;
    margin: 10px auto;
  }

  .mobileDiv {
    margin-top: 50px;
    align-items: center;
  }

  .list {
    background-color: white;
    padding: 15px 10px;
    border-radius: 15px;
    max-width: 500px;
  }

  .list li {
    color: #000;
    font-size: 26px;
  }

  .review {
    margin-top: 20px;
  }

  .vant {
    max-width: 100%;
    display: flex !important;
  }

  .section2 {
    padding-bottom: 40px;
  }

  .section2 .slick-slider {
    height: 300px;
    margin-bottom: 30px;
  }

  .dotsContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }

  .dotsContainer ul {
    display: flex;
    position: relative;
    margin: auto;
    appearance: none;
    list-style: none;
    padding: 0;
    gap: 10px;
  }

  .dotsContainer li button {
    color: transparent;
    background-color: transparent;
    width: 25px;
    height: 25px;
    border: 2px solid var(--pink);
    transition: all 0.2s ease;
    border-radius: 50%;
  }

  .dotsContainer li.slick-active button {
    border: 5px solid var(--pink);
    background-color: white
  }

  .vant:nth-of-type(1) {
    padding: 55px 30px;
  }

  .forms-wrapper {
    min-height: auto;
  }

  .form-body {
    position: relative;
    transform: none;
    top: auto;
  }
}

@media (max-width: 768px) {
  .section1 {
    padding-bottom: 380px;
    background-position: 55% 115%, top;
    background-size: 400px, cover;
    background-image: url(/img/persona1.png), url(/img/bg.svg);
  }

  .radio-container {
    justify-content: space-around;
  }

  .radio-container label {
    min-width: 130px;
  }

  .section1 h1 {
    font-size: 32px;
  }
}

@media(max-width: 450px) {
  .section1 {
    padding: 30px 0 360px;
    background-position: 50% 120%, top;
  }

  .form-title {
    font-size: 20px;
  }

  .progressImg {
    margin: 20px auto;
    width: 100%;
  }

  .section1 h5 {
    font-size: 18px;
    margin-top: 30px;
  }

  .logo {
    max-width: 130px;
  }

  .section1 h1 {
    font-size: 25px;
  }

  .form-body h6 {
    text-align: center;
    font-size: 18px;
  }

  .radio-button {
    font-size: 16px;
    padding: 0 0 0 15px;
  }

  .list li {
    font-size: 20px;
  }

  .btn-form {
    margin: 30px auto 0;
  }

  .slider-container {
    margin: 5px 0 30px;
  }

  .dropdown-toggle,
  .dropdown-item {
    font-size: 12px;
  }

  .btn-form {
    width: 100%;
  }

  .review {
    width: 90%;
  }

  .review h2 {
    font-size: 20px;
  }

  .review .row {
    justify-content: flex-start !important;
  }

  .counting {
    width: auto;
  }

  .review .middleReview {
    transform: scale(0.9);
    width: auto;
  }

  .googleLogo {
    width: 30px;
  }
}

@media(max-width: 335px) {
  .section1 h1 {
    font-size: 25px;
  }

  .form-title {
    font-size: 18px;
  }

  .radio-button {
    font-size: 14px;
    padding: 0 0 0 10px;
  }
}