@font-face {
  font-family: "Proxima Nova";
  src: url('/fonts/proximanova_regular.woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova";
  src: url('/fonts/proximanova_bold.woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url('/fonts/proximanova_boldit.woff2');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Proxima Nova";
  src: url('/fonts/proximanova_extrabold.woff2');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url('/fonts/proximanova_blackit.woff2');
  font-weight: 900;
  font-style: italic;
}

:root {
  --blue: #005DA9;
  --darkblue: #0F2B54;
  --red: #D93B30;
  --green: #ACE8B1;
  --white: #fff;
  --black: #000;
  --grey: #F1F1F1;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Proxima Nova";
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

a:hover {
  color: #000000;
}
/* header */
.header {
  padding: 50px 0 0 0;
  background: var(--grey);
  position: relative;
}
.header::before {
  content: '';
  width: 100%;
  min-height: 100px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background: url('/img/divide.svg');
  background-position: center bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 20;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-txt-outer {
  position: relative;
  min-height: 630px;
}
.header-txt {
  position: relative;
  z-index: 10;
}
.logo {
  height: 75px;
  margin-bottom: 70px;
}
.header-txt h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--darkblue);
  line-height: 1;
}
.header-txt h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darkblue);
  font-style: italic;
  line-height: 1;
  margin: 10px 0 25px 0;
}
.selo {
  border-radius: 30px;
  background: var(--red);
  box-shadow: 0 0 20px 0 rgba(15, 43, 84, 0.50) inset, 0 0 10px 0 rgba(0, 0, 0, 0.25);
  width: 268px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--grey);
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-wrap: balance;
  animation: pulseScale 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.badge-img {
  margin-top: 30px;
  margin-left: -10px;
  height: 125px;
}
.hand {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 330px;
}
.header-img {
  min-height: 630px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
/* form */
#contactform{
  width: 400px;
  margin: 0 0 0 auto;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 4px 20px 0 rgba(15, 43, 84, 0.25);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 40px 40px 40px;
  position: relative;
  z-index: 99;
}
#contactform h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  color: var(--darkblue);
}
#contactform h6 {
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--darkblue);
  margin: 5px 0 20px 0;
}
.form-step img {
  margin-bottom: 20px;
}
.form-step h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--darkblue);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 15px;
}
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form-step.active {
  display: flex;
}
.radio-opt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.radio-buton {
  width: 100%;
  margin: 8px 0;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--darkblue);
  border: 1px solid var(--darkblue);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 230px;
  max-width: 100%;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}
.radio-opt-normal .radio-buton label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--red);
  border: 1px solid var(--red);
}
.radio-buton label:hover {
  transform: scale(1.05);
}
.form-input {
  margin: 5px 0;
}
.form-input label {
  text-align: left;
  margin: 0 0 5px 0;
  padding-left: 17px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  width: 280px;
  max-width: 100%;
}
.form-input input {
  width: 280px;
  max-width: 100%;
  height: 45px;
  border-radius: 50px;
  border: 2px solid var(--darkblue);
  font-size: 16px;
  color: var(--darkblue) !important;
  font-weight: 400 !important;
  padding: 0 15px;
  -webkit-appearance: none;
  text-align: left !important;
  line-height: 1;
  margin: 0 auto;
}
.form-input input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
input[name="telefone"] {
  background-image: url('/img/portugal.svg');
  background-position: 15px center;
  background-size: 20px;
  background-repeat: no-repeat;
  padding: 0 0 0 45px;
}
.form-input input.error {
  border: 2px solid var(--red);
  background-image: url('/img/error.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto 0 auto;
}
.form-input input.valid {
  border: 2px solid var(--green);
  background-image: url('/img/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto;
}
input[name="telefone"].error {
  background: url('/img/portugal.svg'), url('/img/error.svg');
  background-position: 15px center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto 0 auto;
}
input[name="telefone"].valid {
  background: url('/img/portugal.svg'), url('/img/check.svg');
  background-position: 15px center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto;
}
.form-check {
  text-align: center;
  padding: 0;
  margin-top: 5px;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  font-weight: 400;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--blue);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--blue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--black);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--red);
  text-decoration: underline;
}
label.error, #terms-error {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.form-button {
  width: 230px;
  max-width: 100%;
  height: 50px;
  border-radius: 50px;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  border: none;
  color: var(--white);
  background: var(--darkblue);
  transition: all 0.4s ease;
  margin-top: 10px;
}
.form-button:hover {
  transform: scale(1.05);
  background: var(--red);
  color: var(--white);
}
/* section1 */
.section1 {
  padding: 20px 0 0 0;
  text-align: center;
}
.vant-slider .slick-track {
  padding: 30px 0;
}
.vant-slider .slick-list {
  overflow: unset !important;
}
.vant {
  width: 200px;
  aspect-ratio: 1;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 4px 20px 0 rgba(15, 43, 84, 0.25);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  text-wrap: balance;
  padding: 30px 20px 20px 20px;
  transition: all 0.6s ease;
  cursor: pointer;
}
.vant:hover {
  transform: scale(1.1);
}
.vant img {
  height: 65px;
}
.vant h6 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: var(--darkblue);
  margin-top: 20px;
}
/* messages */
.message-box {
  width: 400px;
  margin: 0 0 0 auto;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 4px 20px 0 rgba(15, 43, 84, 0.25);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 30px;
  position: relative;
  z-index: 99;
}
.message-box h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--darkblue);
  line-height: 1;
  text-wrap: balance;
}
.message-box p {
  font-size: 20px;
  font-weight: 400;
  color: var(--darkblue);
  line-height: 1.1;
  text-wrap: balance;
  margin-top: 15px;
}
.message-box p b {
  font-weight: 800;
}
/* Adstrategy */
#section-ads {
  display: none;
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1440px) {
  .header-img img {
    height: 520px;
    margin-right: -100px;
  }
  .hand {
    right: 5%;
    width: 290px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 34px;
  }
  .header-img img {
    height: 450px;
    margin-right: -100px;
  }
  .hand {
    right: -5%;
    width: 190px;
  }
  .header-txt h3 {
    font-size: 18px;
  }
  .vant {
    width: 90%;
    height: auto;
    aspect-ratio: 1;
    padding: 25px 20px 10px 20px;
  }
  .vant img {
    height: 55px;
  }
  .vant h6 {
    font-size: 17px;
  }
  #contactform, .message-box {
    width: 375px;
  }
}
@media only screen and (max-width: 1080px) {
  #contactform, .message-box {
    margin-left: -50px;
  }
  .logo {
    height: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .header-img {
    display: none;
  }
  #contactform, .message-box {
    margin-left: 0px;
  }
  .vant-slider .slick-list {
    overflow: hidden !important;
  }
  .vant-wrapper {
    position: relative;
    overflow: hidden;
  }
  .vant-wrapper::before,  .vant-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 4;
  }
  .vant-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  }
  .vant-wrapper::after {
      right: 0;
      background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  }
  .vant {
    box-shadow: 0 4px 10px 0 rgba(15, 43, 84, 0.25)
  }
  .hand {
    width: 250px;
  }
  .vant {
    width: 200px;
    aspect-ratio: 1;
    padding: 50px 20px 20px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    padding: 30px 0 0 0;
  }
  .header-txt h1 {
    text-wrap: balance;
  }
  .header-txt-outer {
    min-height: auto;
    padding: 0 0 40px 0;
    text-align: center;
  }
  .selo {
    margin: 20px auto 0 auto;
  }
  .logo {
    margin-bottom: 30px;
  }
  #contactform, .message-box {
    margin: 0 auto;
  }
  .mobile-header-img img {
    max-width: 90%;
    margin: 50px auto 0 auto;
  }
  .section1 {
    padding: 10px 0 30px 0;
  }
}
@media only screen and (max-width: 500px) {
  .vant {
    width: 90%;
  }
}
@media only screen and (max-width: 414px) {
  .vant {
    width: 80%;
    aspect-ratio: unset;
    height: 200px;
  }
  #contactform, .message-box {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .header-txt h3 {
    text-wrap: balance;
  }
  #contactform h2 {
    font-size: 28px;
  }
  .header-txt h1 {
    font-size: 30px;
  }
  #contactform {
    padding: 30px 20px 40px 20px;
  }
  .form-input input {
    width: 95%;
  }
}
@media only screen and (max-width: 325px) {
  .header-txt h1 {
    font-size: 29px;
  }
  #contactform h2 {
    font-size: 26px;
  }
  .form-input input {
    width: 90%;
  }
}