@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primaryColor: #0579D1;
  --secondaryColor: #F0F0F7;
}

html, body {
  margin: 0;
  padding: 0 !important;
  font-family: 'Montserrat';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}

a:hover {
  color: #000000;
}

/* Header */
.nav {
  margin: 40px auto;
}
.nav img {
  display: block;
  margin: auto;
  width: 120px;
}
.header {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.header .video-background {
  position: absolute;
  object-fit: contain;
  aspect-ratio: 16/9;
  top: 0;
  left: 50%;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  transform: translate(-50%, 0%);
}
.header .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 80px;
}
.header .container-fluid {
  position: relative;
  z-index: 1;
}
.left_header {
  width: 490px;
  height: 370px;
  background: url(/img/header_left_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.left_header h1 {
  font-size: 28px;
  text-wrap: balance;
  font-weight: 700;
  line-height: 1;
  margin: 30px 0 40px 30px;
}
.left_header h1 br {
  display: none;
}
.left_header h1 span {
  color: var(--primaryColor);
}
.left_header ul {
  margin-left: 15px;
  gap: 5px;
  display: flex;
  flex-direction: column;
}
.left_header li {
  font-size: 14px;
  font-weight: 400;
}
.left_header li::marker {
  font-size: 10px;
}
/* Form */
#contactform {
  max-width: 445px;
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  margin: auto;
  text-align: center;
}
.form-step h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 20px auto 30px auto;
  width: auto;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.radio-btn-wrapper {
  display: flex;
  justify-content: space-evenly;
}
.radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 60px;
  background: #F0F0F7;
  box-shadow: 0 4px 4px 0 rgba(0, 48, 96, 0.30);
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s ease;
}
.radio-button img {
  height: 30px;
  padding-right: 15px;
}
.radio-button:hover {
  transform: scale(1.05);
}
.radio-input:checked+.radio-button {
  transform: scale(1.05);
}
.radio-btn-wrapper.radio-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}
.radio-btn-wrapper.radio-column .radio-button {
  width: 100%;
  justify-content: flex-start;
  padding: 0 1rem;
  height: auto;
  min-height: 50px;
}
.radio-btn-wrapper.radio-column .radio-button span {
  flex: 1;
  text-align: left;
}
label.error {
  display: block;
}
.particular-option {
  font-size: 12px;
  color: #999;
}
.form-step .row {
  width: 100%;
  margin: 0 auto;
}
#form-group {
  padding: 0;
}
#form-group input {
  width: 100%;
  height: 50px;
  border-radius: 100px;
  border: 1px solid #CECECE;
  color: #032239;
  font-size: 18px;
  font-weight: 400;
  padding-left: 15px;
  margin-bottom: 15px;
}
#form-group input.error {
  margin-bottom: 0px;
}
#form-group input::placeholder {
  color: #032239;
}
#form-group input:focus {
  box-shadow: none;
}
.form-check {
  padding: 0;
}
.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 #032239;
  border-radius: 2px;
  padding-right: 5px;
  color: #000000;
}
.form-check input[type=checkbox]:checked+.checkmark:after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 15px;
  margin-left: 1px;
  margin-top: -2px;
}
#politica-link {
  color: #000000;
}
#politica-link:hover {
  color: #01478D;
}
.form-button {
  margin: 20px auto 0 auto;
  width: 300px;
  height: 50px;
  border-radius: 50px;
  background: var(--primaryColor);
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  transition: all 0.4s ease;
}
.form-button:hover {
  transform: scale(1.05);
}
.error, #terms-error {
  color: red;
  font-size: 11px;
  width: 100%;
  margin: 5px auto;
}
.termContainer {
  text-align: center;
  font-size: 12px;
  color: #1E1E1E;
  margin: 0 auto;
  cursor: pointer;
}
.termContainer a {
  color: #1E1E1E;
}
.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(--primaryColor);
  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-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}
/* Section 1 */
.section1 {
  padding: 90px 0 120px;
}
.section1 h1,
.section2 h1,
.section3 h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0;
}
.section1 h2 {
  margin: 30px 0 70px 0;
  font-style: italic;
  font-size: 25px;
  font-weight: 400;
}
.advantage_slider .slick-track {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.adv_outer {
  width: 22% !important;
  margin-right: 70px;
}
.adv_outer:last-of-type {
  margin-right: 0;
}
.advantage {
  display: flex;
  border-radius: 50px;
  height: 195px;
  background-color: var(--secondaryColor);
  width: 95%;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  padding: 30px 25px 30px 25px;
}
.advantage img {
  margin-right: auto;
}
.advantage h5 {
  margin-top: 15px;
  font-size: 18px;
  text-wrap: pretty;
  font-weight: 700;
  margin-right: auto;
  margin-bottom: 0;
}
/* Section 2 */
.section2 {
  padding: 0 0 100px;
}
.cards {
  margin-top: 50px;
}
.cartao {
  max-width: 400px;
  height: 440px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-direction: column;
}
.cartao-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.cartao:hover .cartao-inner {
  transform: rotateY(180deg);
}
.cartao-front,
.cartao-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; 
  display: flex;
  border-radius: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--secondaryColor); 
  padding: 25px;
}
.cartao-front img {
  max-width: 100%;
  height: auto;
}
.cartao-back {
  transform: rotateY(180deg);
}
.cartao-back p {
  font-size: 14px;
  line-height: 1.2;
}
.cartao-back li {
  font-size: 12px;
  text-wrap: balance;
}
.cartao h2 {
  font-size: 22px;
  text-wrap: balance;
  text-align: center;
  margin: auto;
  font-weight: 700;
}
.cartao img {
  margin-bottom: auto;
}
/* Section 3 */
.section3 {
  padding: 0 0 100px;
}
.accordion {
  max-width: 920px;
  padding: 0;
  margin: 50px auto 0;
}
.accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--primaryColor);
}
.accordion-button {
  font-size: 20px;
  color: #000;
  border-radius: 0;
  font-weight: 700;
}
.accordion * {
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.accordion-button::after {
  background-image: url(/img/icons/plus.svg);
}
.accordion-button:not(.collapsed)::after {
  background-image: url(/img/icons/plus.svg);
  filter: brightness(0) invert(1);
  rotate: 45deg;
}
.accordion-button:not(.collapsed) {
  background-color: var(--primaryColor);
  color: #fff;
}
/* Section 4 */
.section4 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: auto;
}
.bgrounded {
  background: url(/img/section4_bg.svg);
  min-height: 450px;
  background-size: cover;
  border-radius: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bgrounded .title {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  max-width: 500px;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto 40px auto;
}
.numbers {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 170px;
  padding: 15px 35px;
  text-align: center;
  color: #fff;
}
.numbers h3 {
  margin: 15px 0;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
.numbers p {
  font-size: 15px;
  font-weight: 400;
  max-width: 210px;
  margin: 0;
}
.numbers:not(:last-child) {
  border-right: 1.7px solid #eee;
}
/* Footer Section */
.sectionFooter{
  aspect-ratio: 1440/255;
  background-image: url(/img/footer_bg.png);
  background-size: cover;
  display: flex;
  margin-top: 90px;
  align-items: center;
}
.sectionFooter .row {
  margin-top: 40px;
}
.sectionFooter h5, .sectionFooter h6 {
  font-size: 25px;
  font-weight: 700;
  max-width: 440px;
  margin: 0 0 0 auto;
}
.sectionFooter button {
  color: #fff;
  background-color: var(--primaryColor);
  width: 300px;
  height: 75px;
  text-wrap: balance;
  line-height: 1.2;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s ease;
}
.sectionFooter button:hover {
  transform: scale(1.1);
  color: #fff;
}
/* message */
.message-box {
  text-wrap: balance;
  line-height: 1.2;
}
.message-box h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primaryColor);
}
.message-box img {
  max-width: 80%;
  margin: 30px auto;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1420px) {
  .cartao {
    max-width: 30%;
  }
  .adv_outer {
    width: 24% !important;
    margin-right: 50px;
  }
  .advantage h5 {
    font-size: 16px;
  }
  .advantage img {
    height: 70px;
  }
  .advantage {
    width: 100%;
    justify-content: center;
  }
  .cartao h2 {
    font-size: 20px;
  }
  .bgrounded {
    min-height: 400px;
  }
  .numbers {
    padding: 20px;
  }
  .numbers p {
    max-width: 185px;
    font-size: 16px;
  }
  .section1 h1, .section2 h1, .section3 h1 {
    font-size: 24px;
    margin: 0;
  }
}
@media only screen and (max-width: 1220px) {
  .cartao-back p {
    font-size: 12px;
  }
  .cartao-back li {
    font-size: 10px;
  }
  .cartao {
    height: 360px;
  }
  .numbers {
    margin: 15px 0;
    width: 32%;
  }
  .numbers:nth-child(3) {
    border: none;
  }
  .bgrounded {
    padding: 50px 0;
  }
  .sectionFooter {
    aspect-ratio: unset;
    min-height: 230px;
    background-position: right center;
  }
  .sectionFooter h5, .sectionFooter h6 {
    font-size: 21px;
    max-width: 100%;
  }
  .cartao h2 {
    font-size: 18px;
  }
  .cartao-front, .cartao-back {
    padding: 25px 20px;
  }
  .section1 h2 {
    font-size: 20px;
  }
  .cartao-back p {
    font-size: 11px;
  }
  .advantage h5 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .adv_outer {
    width: 25% !important;
    margin-right: 25px;
  }
  .section1 h2 {
    font-size: 16px;
  }
  .cartao {
    max-width: 60%;
    height: auto;
    min-height: 380px;
    margin: 20px auto;
  }
  .cartao h2 {
    font-size: 24px;
  }
  .cartao-front, .cartao-back {
    padding: 40px;
  }
  .cartao-back {
    align-items: flex-start;
  }
  .cartao img {
    max-width: 80%;
    margin-top: 20px;
  }
  .cartao-back p {
    font-size: 12px;
  }
  .cartao-back ul li {
    font-size: 11px;
  }
  .accordion-button {
    font-size: 18px;
  }
  .numbers {
    width: 33%;
    padding: 15px;
  }
  .form-step h3 {
    font-size: 18px;
    text-wrap: balance;
  }
  .radio-button {
    font-size: 15px;
  }
  .advantage h5 {
    font-size: 14px;
  }
  .header-content {
    justify-content: center;
  }
  #contactform {
    max-width: 90%;
    margin-top: 80px;
  }
  .header {
    height: auto;
    padding: 0 0 60px 0;
  }
  .left_header {
    text-align: center;
    background: #f0f0f7;
    border-radius: 0 0 50px 50px;
    width: 450px;
    height: auto;
    padding: 30px;
  }
  .left_header h1 {
    margin: 0 auto 30px auto;
    font-size: 28px;
    text-wrap: balance;
  }
  .left_header h1 br {
    display: none;
  }
  .left_header ul {
    text-align: left;
  }
}
@media only screen and (max-width: 855px) {
  .left_header h1 {
    margin: 0 auto 30px auto;
    font-size: 28px;
    text-wrap: balance;
  }
  .left_header h1 br {
    display: none;
  }
  .left_header ul {
    text-align: left;
  }
  .cards {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #contactform {
    max-width: 450px;
  }
  img[src="/img/icons/blue_dot.svg"] {
    display: none;
  }
  .section1 h1, .section2 h1, .section3 h1, .section1 h2 {
    text-align: center;
  }
  .bgrounded {
    background-position: center;
  }
  .numbers {
    width: 45%;
  }
  .numbers:nth-child(3) {
    border-right: 1.7px solid #eee;
  }
  .numbers:nth-child(2), .numbers:nth-child(4) {
    border: none;
  }
  .sectionFooter {
    min-height: 300px;
    background-position: 85% center;
    text-align: center;
  }
  .sectionFooter h5, .sectionFooter h6 {
    text-wrap: balance;
    font-size: 24px;
  }
  .sectionFooter .row {
    margin: 0;
  }
  .sectionFooter button {
    margin-top: 30px;
    width: 100%;
  }
  .form-step h3 {
    font-size: 22px;
  }
  .cartao-back p {
    font-size: 11px;
  }
  .cartao {
    max-width: 80%;
  }
}
@media only screen and (max-width: 650px) {
  .left_header {
    width: 370px;
  }
  .left_header h1 {
    font-size: 24px;
  }
  .left_header ul {
    margin: 0;
    padding: 0 20px;
  }
  .left_header ul li {
    font-size: 12px;
  }
}
@media only screen and (max-width: 580px) {
  .header .video-background {
    padding: 0 20px;
  }
  .header .video-background video {
    border-radius: 50px;
  }
  .accordion {
    max-width: 90%;
  }
  .bgrounded {
    padding: 40px;
  }
  .numbers {
    border: none !important;
    width: 80%;
    height: auto;
  }
  .left_header {
    width: 70%;
    padding: 30px 20px;
  }
  #contactform {
    max-width: 90%;
  }
  .adv_outer {
    width: 90% !important;
    margin-right: unset;
  }
  .advantage {
    width: 300px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .advantage img {
    margin: 0 auto;
  }
  .numbers h3 {
    font-size: 50px;
  }
  .numbers p {
    font-size: 18px;
  }
  .advantage h5 {
    margin: 20px auto 0 auto;
  }
  .bgrounded .title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 500px) {
  .sectionFooter h5, .sectionFooter h6 {
    font-size: 20px;
  }
  .sectionFooter button {
    font-size: 17px;
    text-wrap: balance;
  }
  .section1 h2 {
    text-wrap: balance;
  }
  #form-group input {
    font-size: 16px;
  }
}
@media only screen and (max-width: 435px) {
  .left_header h1 {
    font-size: 20px;
    margin: 0 auto 20px auto;
  }
  .radio-btn-wrapper.radio-column .radio-button span {
    line-height: 1.1;
  }
  .adv_outer {
    width: 100% !important;
  }
  .advantage {
    width: 85%;
  }
  .cartao h2 {
    font-size: 20px;
  }
  .cartao-back ul {
    padding: 0;
  }
  .numbers {
    width: 100%;
  }
  .numbers p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 390px) {
  .radio-button img {
    height: 25px;
    padding-right: 10px;
  }
  .accordion-body {
    font-size: 13px;
  }
  .accordion-button {
    font-size: 15px;
  }
  .bgrounded .title {
    font-size: 22px;
  }
  .sectionFooter h5, .sectionFooter h6 {
    font-size: 18px;
  }
  .cartao-back h2 {
    display: none;
  }
  .cartao img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 365px) {
  .header .video-background video {
    border-radius: 25px;
  }
  .section1 h1, .section2 h1, .section3 h1 {
    font-size: 20px;
  }
  .form-step h3 {
    font-size: 20px;
  }
  #contactform {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 335px) {
  .left_header {
    width: 80%;
  }
  .cartao-back p {
    font-size: 10px;
  }
  .cartao-back ul li {
    font-size: 9px;
  }
  .cartao h2 {
    font-size: 22px;
  }
}