html {
  scroll-behavior: smooth;
}

.video {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  margin: 1rem;
}
.form_pre:target {
  scroll-behavior: smooth;
  scroll-margin-bottom: 0.8em;
}
.video-pre:target {
  scroll-behavior: smooth;
  scroll-margin-bottom: 0.8em;
}
:target {
  scroll-margin-top: 4em;
}
.header {
  padding: 1em 0;
  justify-content: space-between;
  position: fixed;
  z-index: 3;
  width: 100%;
  background: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header__logo {
  align-self: center;
}
.header .button {
  display: none;
}
.header__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 574px) {
  .header .button {
    display: inline;
  }
  .header__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.erroRecaptcha{
  background: rgb(247, 162, 162);
}

.hero {
  text-align: center;
  padding-bottom: 5em;
  background: var(--lightGray);
}
.hero .copy {
  margin-bottom: 2.5em;
}
.hero__image {
  height: 300px;
  padding-right: 150px;
  margin: 0 calc(-1 * var(--wrapperSpace));
  background: url("../images/double-mockupPhone.svg") center bottom no-repeat,
    url("../images/bg-intro-mobile.svg") center no-repeat;
  background-size: 345px, cover;
  margin-bottom: 1.2em;
}
.hero__imageSrc {
  display: block; 
  max-width: 210%; 
  height: auto; 
  padding-top: 10%; 
  margin: 0 auto; 
}
@media screen and (min-width: 574px) {
  .hero {
    text-align: left;
    background: url("../images/bg-intro-desktop.svg") left 650px top -290px no-repeat;
    background-size: cover;
    min-height: 550px;
    box-sizing: border-box;
  }
  .hero__content {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 550px;
    grid-template-areas: "description image";
    grid-template-columns: 370px 1fr;
  }
  .hero__image {
    grid-area: image;
    min-height: inherit;
    position: absolute;
    width: 500px;
    left: 0;
    top: 0;
    height: 768px;
    background: url("../images/double-mockup-test.svg") left bottom no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 1024px) {
  .hero__imageSrc {
      max-width: 180%; 
      padding-top: 100%;
      padding-bottom: 100%;
  }
}

/* Ajustes para telas pequenas  */
@media screen and (max-width: 768px) {
  .hero__imageSrc {
      max-width: 150%; 
      padding-top: 25%;
  }
}

/* Ajustes para telas muito pequenas */
@media screen and (max-width: 480px) {
  .hero__imageSrc {
      max-width: 180%; 
      padding-top: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .hero__imageSrc {
    display: block;
  }
  .hero__image {
    background: none;
    left: 150px;
    right: 0;
    top: 0;
  }
}

.menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu__button {
  width: 40px;
  height: 40px;
  background: url("../images/icon-hamburger.svg") no-repeat center;
}
.menu a {
  text-decoration: none;
  color: var(--grayBlue);
  padding: 0 0.8em;
}
.menu__item {
  display: flex;
  align-items: center;
}
.menu__checkbox {
  display: none;
}
.menu__checkbox:checked ~ .menu__button {
  background: url("../images/icon-close.svg") no-repeat center;
}
.menu__checkbox:checked ~ .menu {
  display: block;
  position: absolute;
  top: 100%;
  padding: 1em;
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(to bottom, var(--darkBlue) 0%, transparent 90%);
}
.menu__checkbox:checked ~ .menu .menu__item:first-of-type a {
  padding-top: 2em;
  border-radius: 0.5em 0.5em 0 0;
}
.menu__checkbox:checked ~ .menu .menu__item:last-of-type a {
  padding-bottom: 2em;
  border-radius: 0 0 0.5em 0.5em;
}
.menu__checkbox:checked ~ .menu a {
  background: white;
  padding: 0.8em 1em;
  color: var(--darkBlue);
  font-size: 1.1em;
  display: block;
  text-align: center;
  flex: 1;
}
@media screen and (min-width: 1024px) {
  .menu {
    display: flex;
  }
  .menu__button {
    display: none;
  }
}

.why {
  text-align: center;
  background: var(--gray);
  padding: 5em 0;
}
.why .copy {
  margin-bottom: 4em;
  font-size: 1em;
}
.why__item .copy {
  margin-bottom: 2em;
}
.why__item img {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .why {
    text-align: left;
  }
  .why__grid {
    display: grid;
    grid-column-gap: 1em;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.latestArticles {
  padding: 5em 0;
  background: var(--lightGray);
}
.latestArticles .title__h1 {
  text-align: center;
  margin-bottom: 1em;
}
.latestArticles__grid {
  display: grid;
  grid-row-gap: 2em;
}
.latestArticles__item {
  border-radius: 0.5em;
  overflow: hidden;
  background: var(--white);
}
.latestArticles__item-content {
  padding: 1.8em;
}
.latestArticles__item .copy {
  color: var(--grayBlue);
}
.latestArticles__item small {
  color: var(--grayBlue);
  margin-bottom: 1em;
  display: block;
}
.latestArticles__item img {
  width: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .latestArticles .title__h1 {
    text-align: left;
  }
  .latestArticles__item-content {
    padding: 1em;
  }
  .latestArticles__grid {
    display: grid;
    grid-column-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .latestArticles__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer {
  background: var(--darkBlue);
  color: var(--white);
  padding: 2em 0;
}
.footer__logo {
  display: block;
  margin: auto;
  margin-bottom: 2em;
}
.footer__link {
  display: block;
  color: var(--gray);
  text-decoration: none;
  margin-top: 1em;
}

.footer__link:hover {
  color: #FFFF;
}

.footer__link-policy {
  display: block;
  color: var(--gray);
  text-decoration: none;
  margin-top: 2em;
}

.footer__link-policy:hover {
  color: #FFFF;
}

.footer__social {
  display: grid;
  grid-template-columns: repeat(5, 25px);
  grid-column-gap: 1em;
  justify-content: center;
  margin: 2.5em 0;
}
.footer__copyright {
  color: var(--grayBlue);
  /* margin-top: 2.5em; */
  padding-left: 100px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: auto;
}
@media screen and (max-width < 574px) {
  /* .footer .wrapper {
      display: flex;
    
     }
    .footer__links {
      grid-area: links;
      display: flex;
      grid-template-columns: repeat(2, 1fr);
      justify-items: start; }
    .footer__logo {
      grid-area: logo;
      margin: initial; }
    .footer__social {
      grid-area: social; }
    .footer__button {
      grid-area: button;
      text-align: right; }
    .footer__copyright {
      grid-area: copyright;
      text-align: right; } 
       */
    /* .footer_central {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-content: center;
      justify-content: center;
    }
    .footer__link {
      color: var(--gray);
      text-decoration: none;
      margin-top: 1em;
    }
    .footer__link-policy {
      color: var(--gray);
      text-decoration: none;
      margin-top: 2em;
    } */
    
}

.footer-padding {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  justify-content: space-between;
}

  .footer-central {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }

:root {
  --darkBlue: hsl(233, 26%, 24%);
  --limeGreen: hsl(136, 65%, 51%);
  --rightCyan: hsl(192, 70%, 51%);
  --grayBlue: hsl(233, 8%, 62%);
  --gray: hsl(220, 16%, 96%);
  --lightGray: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  font-size: 16px;
  --wrapperSpace: 1.5em;
  --vt-c-divider-light-1: rgba(60, 60, 60, .29);
  --vt-c-divider-light-2: rgba(60, 60, 60, .12);
  --vt-c-divider: var(--vt-c-divider-light-1);
  --vt-c-divider-light: var(--vt-c-divider-light-2);
}

:root {
    --header-height: 74px
}

body {
  font-family: "Montserrat";
  margin: 0;
  color: var(--grayBlue);
}

body .header {
  margin: 0 !important;
  font-size: 14px;
}

body.modal-open {
  overflow: hidden;
}

.copy {
  line-height: 1.7;
  font-size: 0.9em;
}

.is-hidden {
  display: none !important;
}

.wrapper {
  padding: 0 var(--wrapperSpace);
  max-width: calc(1215px + 1.5em);
  margin: auto;
  width: 100%;
  box-sizing: border-box;
}

.title__h1 {
  font-size: 2.5em;
  color: var(--darkBlue);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0.5em;
}

.title_launch {
  font-size: 2.5em;
  color: var(--darkBlue);
  font-weight: 300;
  line-height: 1.3;
  display: flex;
  margin: 2rem;
  margin-bottom: 0.5em;
  justify-content: center;
}

.title__h2 {
  font-size: 2.5em;
  color: var(--darkBlue);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-size: 1.5em;
}
.title__h3 {
  font-size: 2.5em;
  color: var(--darkBlue);
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 0.5em;
  font-size: 1em;
}
form {
  border: 4px;
}

.form-input {
  display: grid;
  justify-content: center;
}

.form-input input {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Add some padding and a grey background color to containers */
.container {
  padding: 20px;
  background-color: #f1f1f1;
}

/* Style the input elements and the submit button */
input[type="text"],
input[type="date"],
input[type="number"],
input[type="email"],
input[type="submit"],
textarea {
  width: auto;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.description-input {
  height: 100px;
}

/* Add margins to the checkbox */
input[type="checkbox"] {
  margin-top: 16px;
}

ol,ul {
    list-style: none;
    margin: 0;
    padding: 0
}

a {
  text-decoration: none !important;
}

.button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  width: 180px;
  height: 46px;
  border: none;
  border-radius: 33px;
  text-align: center;
  color: white;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#22334d),
    to(#3783c6)
  );
  background: linear-gradient(to left, #22334d, #3783c6);
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
.button-partner {
  cursor: pointer;
  width: 180px;
  height: 46px;
  border: 2px solid #3783c6;
  border-radius: 33px;
  text-align: center;
  color: #3783c6;
  font-weight: bold;
  margin-right: 10px;
  background-color: white;
  font-family: inherit;
  font-size: inherit;
}
.button-return {
  cursor: pointer;
  width: 166px;
  height: 46px;
  border: none;
  border-radius: 33px;
  text-align: center;
  color: black;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#f6f9ff),
    to(#f7f7f7)
  );
  background: linear-gradient(to left, #c3c1c1,#f6f9ff);
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

.button:hover {
  opacity: 0.5;
}

.button-partner:hover {
  background-color: #3783c6;
  color: white;
  font-weight: normal;
  -webkit-transition: background-color 1000ms linear;
  -ms-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear, color 1000ms linear;
}

.button-email {
  border: none;
  margin: 0 auto;
  display: flex;
  padding: 0.9em 2.2em;
  font-size: 1em;
  border-radius: 1.5em;
  color: var(--white);
  background-image: linear-gradient(to right, #3783c6, var(--rightCyan) 100%);
}

.spacing {
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

.card__spacing {
  padding-top: 100px;
}

.card-spacing-register {
  padding-top: 50px;
  padding-bottom: 50px;
}

.social-spacing {
  padding-left: 100px;
}

.form-spacing {
  display: flex;
  justify-content: center;
}

.icon__facebook {
  width: 25px;
  height: 25px;
  display: inline-flex;
  background-repeat: no-repeat;
  background-image: url("../images/icon-facebook.svg");
}
.icon__youtube {
  width: 25px;
  height: 25px;
  display: inline-flex;
  background-repeat: no-repeat;
  background-image: url("../images/icon-youtube.svg");
}
.icon__twitter {
  width: 25px;
  height: 25px;
  display: inline-flex;
  background-repeat: no-repeat;
  background-image: url("../images/icon-twitter.svg");
}
.icon__pinterest {
  width: 25px;
  height: 25px;
  display: inline-flex;
  background-repeat: no-repeat;
  background-image: url("../images/icon-pinterest.svg");
}
.icon__instagram {
  width: 25px;
  height: 25px;
  display: inline-flex;
  background-repeat: no-repeat;
  background-image: url("../images/icon-instagram.svg");
}

/*# sourceMappingURL=estilos.css.map */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal-mask {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start; /* Align to the top */
  justify-content: center;
  overflow: auto;
}

.modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%; /* Use min-height instead of height */
}

.modal-container {
  width: auto !important;
  margin: 20px auto; /* Add margin to the top */
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
  z-index: 1001;
  /* max-width: 605px; */
}

.modal-header {
  display: flex;
  justify-content: center;
  color: #3783c6;
  font-size: 24px;
}

.modal-body {
  margin: 20px;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 15px;
}

.modal-body h1 {
  font-size: 2em;
}

.modal-body h2 {
  font-size: 1.5em;
}

.modal-footer {
  display: flex;
  justify-content: center;
}

.modal-default-button {
  float: center;
}

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-button {
  color: #ffffff;
  background: #3783c6;
  border: 1px solid #3783c6;
  /* padding: 0.75rem 1.25rem; */
  font-size: 1rem;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s,
    box-shadow 0.2s;
  border-radius: 6px;
}

.p-button:enabled:hover {
  background: #22334d;
  color: #ffffff;
  border-color: #22334d;
}
.p-button:enabled:active {
  background: #22334d;
  color: #ffffff;
  border-color: #22334d;
}

#checkbox-label {
  color: #2f2f2f !important;
}

/* ESTILOS DO GUIA DO USUARIO */



:root {
    --vt-shadow-1: 0 1px 2px rgba(0, 0, 0, .04), 0 1px 2px rgba(0, 0, 0, .06);
    --vt-shadow-2: 0 3px 12px rgba(0, 0, 0, .07), 0 1px 4px rgba(0, 0, 0, .07);
    --vt-shadow-3: 0 12px 32px rgba(0, 0, 0, .1), 0 2px 6px rgba(0, 0, 0, .08);
    --vt-shadow-4: 0 14px 44px rgba(0, 0, 0, .12), 0 3px 9px rgba(0, 0, 0, .12);
    --vt-shadow-5: 0 18px 56px rgba(0, 0, 0, .16), 0 4px 12px rgba(0, 0, 0, .16)
}

:root {
    --vp-z-index-local-nav: 10;
    --vp-z-index-nav: 20;
    --vp-z-index-banner: 30;
    --vp-z-index-backdrop: 40;
    --vp-z-index-sidebar: 50;
    --vp-screen-max-width: 1376px
}

:root {
    --vp-sidebar-width-mobile: 320px;
    --vp-sidebar-width-small: 272px
}

.root {
    position: relative;
    z-index: 1
}

body {
    width: 100%;
    min-width: 320px;
    min-height: 100vh;
    letter-spacing: .2px;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    color: #213547;
    direction: ltr;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    transition: color .5s,background-color .5s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word;
}

.vt-doc {
    font-size: 16px;
    line-height: 1.7
}

h2:target {
    scroll-margin-top: 3em;
}

h3:target {
    scroll-margin-top: 6em;
}

h4:target {
    scroll-margin-top: 6em;
}

.vt-doc h1,.vt-doc h2,.vt-doc h3,.vt-doc h4,.vt-doc h5,.vt-doc h6 {
    position: relative;
    font-weight: 600;
    line-height: 1.5;
    outline: none
}

.vt-doc h1 {
    margin: 0 0 3rem;
    font-size: 38px;
    line-height: 1.4;
    letter-spacing: -.02em;
}

.vt-doc h2 {
    margin: 4rem 0 1.8rem;
    border-top: 1px solid var(--vt-c-divider-light);
    padding-top: 1.8rem;
    font-size: 24px;
    letter-spacing: -.02em
}

.vt-doc h3 {
    font-size: 19px;
    letter-spacing: -.01em;
    margin: 3rem 0 1.25rem
}

.vt-doc h2+h3 {
    margin-top: 0
}

.vt-doc h4 {
    font-size: 17px;
    margin: 1.8rem 0 1rem
}

.vt-doc h1:hover .header-anchor,.vt-doc h1 .header-anchor:focus,.vt-doc h2:hover .header-anchor,.vt-doc h2 .header-anchor:focus,.vt-doc h3:hover .header-anchor,.vt-doc h3 .header-anchor:focus,.vt-doc h4:hover .header-anchor,.vt-doc h4 .header-anchor:focus,.vt-doc h5:hover .header-anchor,.vt-doc h5 .header-anchor:focus,.vt-doc h6:hover .header-anchor,.vt-doc h6 .header-anchor:focus {
    opacity: 1
}

.vt-doc hr {
    border: none;
    border-top: 1px solid var(--vt-c-divider-light);
    margin: 1.8rem 0
}

.vt-doc p,.vt-doc ul,.vt-doc ol,.vt-doc summary {
    margin-bottom: 1.2em
}

.vt-doc a {
    font-weight: 500;
    color: #398ABE;
    transition: color .25s;
    text-decoration-style: dotted
}

.vt-doc strong {
    font-weight: 600
}

.vt-doc li {
    position: relative;
    margin: 6px 0;
    list-style-type: decimal;
}

.vt-doc ol li {
    position: relative;
    margin: 4px 30px;
    list-style-type: lower-alpha;
}

.vt-doc ul {
    padding-left: 1.25rem
}

.custom-list-style ul>li {
    list-style-type: none;
}

.custom-list-style ul>li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--vt-c-text-3);
    transition: background-color .5s;
    left: -1.25rem;
    top: 0.75rem;
    list-style-type: none;
}

.custom-list-style {
    list-style-type: none !important;
}

.custom-list-style:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgb(60 60 60 / 33%);
    transition: background-color .5s;
    left: -1.25rem;
    top: 0.75rem;
}



@media (max-width: 768px) {
    .vt-doc h1 {
        font-size:32px;
        margin-bottom: 1.8rem
    }

    .vt-doc h1+h2 {
        margin-top: 36px
    }
}

.nested {
    padding-left: 1em
}

.outline-link {
    color: rgb(17 17 17 / 70%);
    /* color: var(--vt-c-text-2); */
    transition: color .5s;
    line-height: 28px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.outline-link:hover,.outline-link.active {
    color: #213547;
    /* color: var(--vt-c-text-1); */
    transition: color .25s
}

.link {
    text-decoration: inherit;
    display: block;
    padding: 6px 0;
    max-width: 100%;
}

@media (min-width: 960px) {
    .link {
        padding:4px 0
    }
}   

.link.active .link-text {
    font-weight: 700;
    color: #3A91B6;
    /* color: #398ABE; */
    /* color: #3D9EA5; */
    /* color: #4285B8; */
    transition: color .25s
}

.link-text {
    line-height: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgb(17 17 17 / 70%);
    /* color: rgb(60 60 60 / 70%); */
    /* transition: color .5s; */
    cursor: pointer;
}

.link-text:hover {
    color: rgb(33, 53, 71);
}

.title {
    padding: 6px 0
}

@media (min-width: 960px) {
    .title {
        padding:4px 0
    }
}

.title-text {
    line-height: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--vt-c-text-1);
    transition: color .5s
}

.VPSidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: var(--vp-z-index-sidebar);
    padding: 0 32px 96px;
    width: calc(100vw - 64px);
    max-width: var(--vp-sidebar-width-mobile);
    opacity: 0;
    background-color: #ffffff;
    /* background-color: var(--vt-c-bg); */
    box-shadow: var(--vt-c-shadow-3);
    overflow-x: hidden;
    overflow-y: auto;
    transform: translate(-100%);
    transition: background-color .5s,opacity .5s,transform .3s ease
}

#VPSidebarNav {
    padding-top: 24px;
    outline: 0
}

@media (min-width: 960px) {
    .VPSidebar {
        top:var(--header-height);
        z-index: 1;
        border-right: 1px solid var(--vt-c-divider-light);
        width: var(--vp-sidebar-width-small);
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: translate(0);
        transition: border-color .5s,background-color .5s
    }
}

@media (min-width: 1440px) {
    .VPSidebar {
        padding:0 32px 96px calc((100% - var(--vp-screen-max-width)) / 2);
        width: calc((100% - var(--vp-screen-max-width)) / 2 + var(--vp-sidebar-width-small))
    }
}

.VPSidebar.open {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    transition: background-color .5s,opacity .25s,transform .5s cubic-bezier(.19,1,.22,1)
}

.dark .VPSidebar {
    box-shadow: var(--vt-shadow-1)
}

.group+.group {
    padding-top: 24px
}

@media (min-width: 960px) {
    .group+.group {
        padding-top:16px
    }
}

.VPContentDocOutline {
    font-size: 13px;
    font-weight: 500;
    position: relative
}

.outline-title {
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .4px
}

.outline-marker {
    opacity: 0;
    position: absolute;
    background-color: #22a7df;
    border-radius: 4px;
    width: 4px;
    height: 20px;
    top: 32px;
    left: -12px;
    z-index: 0;
    transition: top .25s cubic-bezier(0,1,.5,1),opacity .25s,background-color .5s
}

/* ABAIXO FOOTER DO CONTENT PRINCIPAL */

.VPContentDocFooter {
    border-top: 1px solid var(--vt-c-divider-light);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between
}

.prev-link a {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    max-width: 48%
}

.next-link a {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    max-width: 48%
}

.desc {
    font-size: 11px;
    color: rgb(60 60 60 / 70%);
    display: block
}

.title-footer {
    color: #22a7df;
    transition: color .25s;
    font-weight: 600;
}

.title-footer:hover {
    color: #3787BC;
}

.next-link {
    margin-left: auto;
    text-align: right
}

.vt-link-icon {
    display: inline-block;
    margin-top: -2px;
    margin-left: 4px;
    width: 11px;
    height: 11px;
    fill: var(--vt-c-text-3);
    transition: fill .25s;
}

.vt-link-icon {
    margin: -2px 0 0;
    vertical-align: middle
}

/* ACIMA FOOTER DO CONTENT PRINCIPAL */

.VPContentDoc {
    padding: 32px 24px 96px
}

.vt-doc {
    margin-bottom: 54px
}

.content {
    margin: 0 auto;
    max-width: 688px;
    position: relative
}

.aside {
    position: relative;
    display: none;
    flex-shrink: 0;
    padding-left: 64px;
    width: 320px
}

.aside-container {
    position: sticky;
    width: 340px;
    top: calc(var(--header-height) + 24px);
    bottom: 0
}

.aside-container::-webkit-scrollbar {
    display: none
}

@media (min-width: 768px) {
    .VPContentDoc {
        padding:48px 32px 96px
    }
}

@media (min-width: 960px) {
    .VPContentDoc {
        padding:64px 64px 96px
    }
}

@media (min-width: 1280px) {
    .VPContentDoc {
        padding:64px 0 96px 64px
    }

    .VPContentDoc:not(.has-sidebar.has-aside) {
        padding-left: calc((100vw - 688px)/2)
    }

    .VPContentDoc.has-aside:not(.has-sidebar) {
        padding-left: calc((100vw - 1008px)/2)
    }

    .container-main {
        display: flex
    }

    .content {
        min-width: 620px;
        margin: 0;
        order: 1
    }

    .VPContentDoc:not(.has-aside) .content {
        min-width: 688px
    }

    .aside {
        display: block;
        order: 2
    }
}

@media (min-width: 1440px) {
    .VPContentDoc {
        padding:64px 0 96px 96px
    }

    .aside {
        padding-left: 96px
    }
}

@media (max-width: 768px) {
    .VPContent {
        overflow-x:hidden
    }
}

@media (min-width: 960px) {
    .VPContent {
        padding-top:var(--header-height)
    }

    .VPContent.has-sidebar {
        padding-left: var(--vp-sidebar-width-small)
    }
}

@media (min-width: 1440px) {
    .VPContent.has-sidebar {
        padding-left:calc((100vw - var(--vp-screen-max-width)) / 2 + var(--vp-sidebar-width-small))
    }
}

.vt-doc .header-anchor {
    float: left;
    margin-left: -0.87em;
    padding-right: 0.23em;
    font-weight: 500;
    opacity: 0;
    transition: color .25s,opacity .25s;
}

.vt-doc .header-anchor:before {
    content: "#"
}

.vt-doc a {
    font-weight: 500;
    color: #398ABE;
    transition: color .25s;
    text-decoration-style: dotted;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 20px;
}


.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:hover {
    background-color: grey;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:hover {
    background-color: #0570c5;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.dropdown {
    min-width: 15em;
    position: relative;
    padding: 10px 0;
    margin-bottom: 15px;
}

.dropdown * {
    box-sizing: border-box;
}

.select {
  background: #fff;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px #3f3f3f solid;
  border-radius: 0.5em;
  padding: 0.7em 1em;
  cursor: pointer;
  transition: background 0.3s;
  min-height: 48px;
  max-width: 750px;
}

.select:hover {
  border-color: #3783c6;
}

.caret {
  width: 0;
  height: 0;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  border-left: 6px solid #000000;
  transition: 0.3s;
}

.caret-rotate {
  transform: rotate(90deg);
}

.menu-dropdown {
  list-style: none;
  padding: 0em 0.5em;
  background: #ffffff;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: #334155;
  position: absolute;
  top: 4.5em;
  left: 0;
  width: 100%;
  max-width: 750px;
  height: 0;
  transition: 300ms cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1;
  overflow-y: scroll;
}

.menu-dropdown::-webkit-scrollbar {
  width: 8px;
}

.menu-dropdown::-webkit-scrollbar-track {
  background: #dfdfdf;
}

.menu-dropdown::-webkit-scrollbar-thumb {
  background: #727272;
}

.menu-dropdown::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}

.menu-dropdown li {
  padding: 0.7em;
  margin: 0.3em 0;
  border-radius: 0.5em;
  cursor: pointer;
}

.menu-dropdown li:hover {
  background: #e9ecef;
}

.active-dropdown {
  background: #eef2ff !important;
  color: #3783c6 !important;
}

.text-fade-in {
  animation: textFade 300ms ease-out;
}

.menu-open {
  border: 1px #383838 solid;
  height: auto;
}

@keyframes textFade {
  0% {
      transform: translateX(-1em);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

.price-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.price-card {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 20px 50px;
    border-radius: 6px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.price-card h3 {
    color: #2b9cff;
    font-weight: 700;
    margin-top: 10px;
}

.price-card h2 {
    color: #2b9cff;
    font-weight: 700;
}

.price-card h5 {
    color: rgb(101, 101, 101);
    margin: 0.8rem 0;
    font-weight: 500;
}

.fa-solid.fa-check.icon {
    color: #398ABE;
    font-size: 18px;
}

.fa-solid.fa-times.icon {
    color: #d61e1e;
    font-size: 18px;
}

.price-value-container {
    display: flex;
    justify-content: center;
}

.price-value {
    color: #2b9cff;
    font-weight: 700;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 4px;
    margin-right: 3px;
}

.price-value-type {
    align-self: flex-end;
    font-weight: 400;
}

/* ESTILOS DO FORM PLANOS */
/* pc */
.form-input-plan { 
  width: 100%;
}

.form-input-plan input, .form-input-plan .dropdown {
  width: 750px; 
  font-size: 16px;
  margin: 0 0 23px 0;
}

.label-inputs {
  display: block;
  font-weight: 600;
  font-size: 16px;
  float: none;
  line-height: 1.3;
  margin: 0 0 4px 0;
  padding: 0;
  word-break: break-word;
  word-wrap: break-word;
}

.label-inputs-required {
  color: #ff0000;
  font-weight: 400;
}

.checked-input-partner {
  width: auto !important;
  margin: 0 10px 0 3px !important;
}

.checkbox-label-span {
  color: #2d2d2d;
  display: inline;
  vertical-align: baseline;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  word-break: break-word;
}

.card-spacing-register-plan {
  margin: 0 300px; 
}

a {
  color: #337ab7;
  text-decoration: none;
}

.button-input-plano {
  font-size: 1rem;
  margin: 0 0 80px;
}

.tooltip-custom {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip-custom .label-inputs,
.tooltip-custom .checkbox-label-span,
.tooltip-custom .checked-input-partner {
  cursor: help;
}

.tooltip-custom .tooltiptext {
  visibility: hidden;
  width: 40%;
  background-color: #4D90CA;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 1rem;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 10%;
  margin-left: -60px;
}

.tooltip-custom:hover .tooltiptext {
  visibility: visible;
}

.file-input-container {
  margin-top: 10px;
}

.file-input-container label {
  display: block;
  margin-bottom: 5px;
}

.file-input-container input[type="file"] {
  padding: 5px;
}

/* responsividade no mobile */
@media screen and (max-width: 768px) {

  .form-input-plan input, .form-input-plan .dropdown {
      width: 100%; 
      margin: 0 0 15px 0;
  }

  .card-spacing-register-plan {
      margin: 0 10px;
  }

  .button-input-plano {
      width: 100%;
      padding: 10px;
  }

  .tooltip-custom .tooltiptext {
      width: 90%; 
      left: 5%;
      margin-left: 0;
  }

  .label-inputs,
  .checkbox-label-span {
      font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .form-input-plan input, .form-input-plan .dropdown {
      font-size: 14px;
  }

  .button-input-plano {
      font-size: 0.9rem;
  }
}