@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');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css');

body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  background-color: #f3f3f3;
}
a:hover {
  color: #000000;
}
#section-ads {
  padding: 30px 0;
}
#section-ads img {
  width: 120px;
}

/* Root */
:root{
  --primaryColorBlue: #29a6fc;
  --primaryColorGreen: #5ced85;
  --secondaryColorVioletLight: #33324b;
  --secondaryColorVioletDark: #22163c;
}
/* Nav */
.nav{
  background-color: #fff;
}
.nav img{
  max-width: 220px;
  padding: 20px;
}
/* Section 0*/
#section-0{
  padding: 20px 0;
  min-height: 90vh;
}
.tyPage {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/* Form */
fieldset h1{
  font-size: 30px;
  font-weight: 700;
  color: var(--secondaryColorVioletLight);
}
fieldset h2{
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  font-size: 26px;
  text-wrap: balance;
  color: var(--secondaryColorVioletLight);
  margin-bottom: 15px;
}
fieldset img.assistant{
  max-width: 100px;
  margin: 35px auto 15px auto;
  display: block;
}
fieldset{
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: none;
  text-align: center;
}
fieldset.active{
  display: flex;
}
fieldset.tyPage{
  display: flex;
  margin-top: -50px;
}
.partner-logo {
  height: 55px;
  margin: 15px 0;
}
fieldset .radio-options{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.radio-options{
  margin-top: 40px;
}
.radio-options label.col-12{
  background-color: #fff;
  padding: 20px;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.5s ease;
  position: relative;
}
.radio-options label .path{
  stroke: #b8b8b8;
  transition: all 0.3s;
}
.radio-options label:hover .path{
  stroke: #000;
}
.radio-options label.col-12:hover{
  border: 2px solid var(--secondaryColorVioletLight) !important;
} 
.radio-options img{ 
  max-height: 100px;
  display: block;
  margin: 15px auto 20px 0;
  object-fit: contain;
} 
.radio-group{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.nombreVal{
    text-transform: capitalize;
}
.radio-group input:checked + label, .radio-group label:hover {
  background-color: var(--secondaryColorVioletLight);
  color: white;
}
.radio-group label{
    padding: 15px 10px;
    color: var(--secondaryColorVioletLight);
    transition: all 0.2s ease;
    border-radius: 15px;
    background-color: #fff;
    border: 2px solid var(--secondaryColorVioletLight);
}
.img-label .label-mob{
  justify-content: center;
}
.img-label .col-md-5.col-lg-3 img{
  width: 100%;
  margin: 0;
} 
.img-label{
  row-gap: 20px !important;
}
.radio-options label.col-12 img {
  width: 80px;
  transition: filter 0.5s ease-in-out;
}

.radio-options label.col-12:has(input:checked) img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(20%) saturate(1385%) hue-rotate(221deg) brightness(93%) contrast(95%);
}
.radio-options h3, .radio-options p{
  text-align: left;
  color: var(--secondaryColorVioletDark);
}
.radio-options h3{
  font-size: 24px;
  font-weight: 600;
}
.radio-options h5{
  text-align: left; 
  color: var(--secondaryColorVioletDark);
  font-weight: 700;
}
.radio-options p{
  font-size: 12px;
  line-height: 1.2;
}
.many-options .check {
  margin-bottom: 15px;
}
.many-options .label-mob{
  display: flex;
  align-items: center;
}
.many-options .label-mob img{
  /*margin: 15px 10px 20px 0;*/
  margin: 0;
  width: 85% !important;
}
/* Custom checkboxes */
label.check {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.radio-options label.check {
  cursor: pointer;
  width: 100%;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: right;
}

label.check input {
  display: none;
}

label.check svg {
  overflow: visible;
}

.path {
  fill: none;
  stroke: #000;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease;
  stroke-dasharray: 0 0 240 9999999;
  stroke-dashoffset: 1;
  scale: -1 1;
  transform-origin: center;
  animation: hi 0.5s;
}

label.check input:checked~svg .path {
  stroke-dasharray: 0 262 70 9999999;
  transition-delay: 0s;
  scale: 1 1;
  stroke: var(--secondaryColorVioletDark);
  animation: none;
}
@keyframes hi {
  0% {
    stroke-dashoffset: 20;
  }

  to {
    stroke-dashoffset: 1;
  }
}
label.error{
  color: red;
  margin-top: 10px;
  font-size: 11px;
}
.btn-row{
  margin-top: 40px;
  gap: 15px;
  align-items: center;
}
fieldset .btn-form{
  background: linear-gradient(0deg,rgba(252, 185, 130, 1) 0%, rgba(253, 145, 113, 1) 100%);
  background-size: 100%;
  background-position: left;
  background-repeat: no-repeat;
  color: #fff !important;
  width: 150px;
  height: 50px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.2s ease;
  border-radius: 15px;
}

fieldset .btn-form:hover{
    transform: scale(1.1);
    color: #fff;
}
.fi-rr-arrow-left:before{
  top: 3px;
  position: relative;
}
 .btn-prev{
  background-color: #fff;
  border-radius: 10px;
  height: 50px;
  width: 50px; 
  border: 1px solid transparent;
 }
 .btn-prev:hover{
  border: 1px solid var(--secondaryColorVioletDark);
 }

 /* Input custom */
 ::placeholder{
  color: #b8b8b8;
 }
 .input { 
   height: 60px;
   max-width: 450px;
   font-size: 15px;
   padding: 12px;
   border-radius: 12px;
   border: 1.5px solid #b8b8b8;
   outline: none;
   transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
   box-shadow: 0px 0px 20px -18px;
 }
 #email{
  max-width: 100%;
 }
 .input:hover {
   border: 2px solid lightgrey;
   box-shadow: 0px 0px 20px -17px;
 }

 .input:active {
   transform: scale(0.95);
 }

 .input:focus {
   border: 2px solid var(--secondaryColorVioletLight);
 }

 select{
  height: 50px;
  max-width: 450px;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #b8b8b8;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
  -webkit-appearance: none;
  background-image: url(/img/icons/arrow_down.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 95% center;
 }

 select:hover{
  border: 2px solid lightgrey;
  box-shadow: 0px 0px 20px -17px;
 }

 /* Disclaimer */
 .disclaimer{
  background-color: var(--secondaryColorVioletLight);
  border-radius: 15px;
  margin-top: 25px;
  align-items: center;
 }
 .disclaimer img{
  max-width: 90px;
  max-height: 60px;
  object-fit: contain;
 }
 .disclaimer h4{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
 }
 .disclaimer p{
  color: #fff;
  font-weight: 300;
 }
 .disclaimer .path, .disclaimer label.check input:checked~svg .path{
  stroke: #fff;
 }
 .disclaimer svg{
  margin-right: 15px;
 }
.terms-box p{
  margin: 0;
}


/* TY page */
.animationTransition{
  position: relative;
}
.animationTransition::after {
  content: '';
  border-bottom: 4px dotted var(--primaryColorBlue);
  height: 1px;
  position: absolute;
  bottom: 50%;
  width: 0; 
  left: 50%;
  z-index: -1;
  opacity: 0;
  transition: width 1s ease-in-out, opacity 0.5s ease-in-out;
} 
.animationTransition.show-connector::after {
  width: 80%; 
  left: 10%;
  opacity: 1; 
}
.spinner-container{
  display: none;
  background-color: #fff;
  padding: 15px;
  border-radius: 100px;
}
.spinner {
  width: 60px;
  height: 60px;
  position: relative; 
}

.spinner .dot {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
}

.spinner .dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgb(12, 180, 231);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner .dot {
  animation: spin 2s infinite;
}

.spinner .dot:nth-child(2) {
  animation-delay: 100ms;
}

.spinner .dot:nth-child(3) {
  animation-delay: 200ms;
}

.spinner .dot:nth-child(4) {
  animation-delay: 300ms;
}

.spinner .dot:nth-child(5) {
  animation-delay: 400ms;
} 

/*.modal .btn.btn-block{ 
  background-color: var(--primaryColorGreen);
  width: 200px;   
  color: var(--secondaryColorVioletLight);  
  margin: auto;
}
.modal .btn.btn-block:hover{
  background-color: var(--primaryColorBlue);
}*/
.extrah2 a{
    text-decoration: none;
    color: #fff;
    background-color: var(--secondaryColorVioletLight);
    padding: 10px;
    margin: 15px auto 0;
    display: block;
    width: 180px;
    transition: all 0.3s ease;
}
.extrah2 a:hover{
    background-color: var(--primaryColorBlue);
    transform: scale(1.2);
}
fieldset.tyPage img.assistant{
    margin: 0px auto 15px auto;
}
fieldset.tyPage{
    background: rgba(255,255,255, 1);
    border-radius: 30px;
    padding: 50px 40px;
  position: relative;
  z-index: 10;
}
fieldset.tyPage h1{
    font-size: 24px;
    text-wrap: balance;
}
fieldset.tyPage h2{
    font-size: 20px;
}
section.tyPage{
  background: url('/img/back-agradecimento.png'), #fff; 
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}
.overlay {
  position: relative;
  overflow: hidden;
}

.overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* darkness overlay */
  pointer-events: none;
  z-index: 1;
}

.overlay .nav {
  filter: blur(5px);
  filter: blur(5px) brightness(0.9);
  position: relative;
  z-index: 0;
  height: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay #section-0 {
  height: 92vh;
}

/* modal-style content should sit above overlay */
fieldset.tyPage h3{
    background-color: #fd9171;
    font-size: 22px;
    padding: 20px;
    color: #fff;
    text-wrap: balance;
    border-radius: 25px;
}
@media (max-width: 1540px){
  section.tyPage{
    background-size: cover;
  }
}
/* Menor do que LG */
 @media (max-width: 1024px){
  .radio-options p{
    margin: 0;
  }
 }
/* Menor do que MD */
  @media (max-width: 768px){
    .label-mob{
      display: flex;
      align-items: center;
    }
    .radio-options label.col-12 img{
      margin-right: 15px;
    }
    .many-options label{
      max-width: 200px; 
    }
    .many-options h3{
      font-size: 20px;
    }
    .radio-options h3, .many-options .check{
      margin-bottom: 0 !important;
    }
    .many-options .check{
      margin-bottom: 5px !important;
    }
    .many-options label.col-12 img{
      margin: 0 0 10px 0;
    }
    .disclaimer{
      justify-content: center;
      gap: 10px;
    }
    fieldset h2{
      font-size: 20px;
    }
    fieldset h1{
      font-size: 24px;
    }
  }
 /* Menor do que SM */
 @media (max-width: 575px){
  fieldset h1{ 
    font-size: 26px;
  }
  fieldset h2{ 
    font-size: 22px;
  }
  .radio-options img{
    max-height: 70px;
    margin: 0 auto 0 auto;  
  }
  .terms-box img{
    display: none;
  } 
  .radio-options h3, .radio-options p{
    text-align: left;
  }
  .radio-options label.col-12{
    max-width: 300px;
    margin: 0 auto;
  }
  .many-options .label-mob img {
    width: 100% !important;
    margin: 0;
  }
  .input, fieldset h2, fieldset h1, select{
    max-width: 90%;
  }
  .many-options .check{
    margin: 0 !important;
    display: inline;
    width: 20px;
  }
  /*.radio-options.many-options label.col-12{
    display: flex;
    gap: 15px;
  }*/
  .many-options h3{
    margin: 0;
  }
  .disclaimer{
    max-width: 300px;
    justify-content: center;
  }
  .disclaimer p{
    margin: 0;
  }
  .disclaimer h4{
    font-size: 18px;
  }
  .terms-box label.check{
    flex-wrap: wrap; 
  }
  .terms-box img{
    margin: auto;
  }
  fieldset .terms-box{
    justify-content: center;
    padding: 15px 0 !important;
  }
  #email, .terms-box {
    max-width: 90%;
  }

 }

 @media (max-width: 450px){
  fieldset img.assistant{
    margin-top: 0;
  }
  fieldset h2{
    font-size: 20px;
  }
  #lastH2{
    font-size: 14px;
    margin-top: 20px !important;
  } 
  .radio-options label.col-12{
    max-width: 350px;
    padding-top: 10px;
  }
  label.check{
    position: relative;
    bottom: -20px;
  } 
  .radio-options.many-options label.col-12{
    padding-top: 15px;
    padding-bottom: 15px;
    align-items: center;
  }
  .radio-options.many-options label.col-12 img{
    width: 50px;
  }
  .radio-options.many-options label.col-12{
    margin: auto;
  }
  .img-label .label-mob{
    margin: auto;
  }
  .radio-options.img-label label.col-12 img{
    width: 100px;
  }
  .many-options .label-mob{
    gap: 15px;
  } 
  fieldset .terms-box{
    justify-content: center;
    padding: 20px 0 !important;
  }
  .many-options label.check, .terms-box label.check{
    bottom: 0;
  }
  .radio-options h5{
    max-width: 90%;
    text-align: left;
    font-size: 18px;
  }
  .many-options .label-mob {
    gap: 5px;
  }

  .radio-options.many-options label.col-12.col-md-3 {
    max-width: 300px;
    gap: 10px;
  }
 }

@media (max-width: 380px){
  .radio-options label.col-12 img{
    width: 50px;
    margin-right: 15px;
  }
  fieldset h1, .radio-options h3{
    font-size: 20px;
  }
} 