@font-face {
  font-family: Montserrat GF;
  src: url('../fonts/montserrat-black.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat GF;
  src: url('../fonts/montserrat-bold.woff2') format("woff2"), url('../fonts/montserrat-extrabold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat GF;
  src: url('../fonts/montserrat-extralight.woff2') format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat GF;
  src: url('../fonts/montserrat-light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat GF;
  src: url('../fonts/montserrat-medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat GF;
  src: url('../fonts/montserrat-regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat GF;
  src: url('../fonts/montserrat-thin.woff2') format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat GF;
  src: url('../fonts/montserrat-semibold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --tomato: #e76353;
  --midnight-blue-2: #212f6c;
  --midnight-blue: #0f1a45;
  --dark-slate-blue-2: #4b5373;
  --dark-slate-blue: #2d4a8c;
  --indian-red: #c25246;
  --white: white;
  --lavender: #e1e4f0;
  --ghost-white-2: #f7f9ff;
  --ghost-white: #f0f2fa;
  --accessible-components-dark-grey: #9b9b9b;
  --accessible-components-dodger-blue: #1378d1;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

img {
  max-width: 100%;
  display: inline-block;
}

._60 {
  grid-row-gap: 24px;
  flex-direction: column;
  max-width: 40%;
  display: flex;
}

.hide {
  display: none;
}

.skl-logo-default {
  width: 120px;
  height: 100%;
}

.skl-logo-default._120 {
  width: 120px;
}

.skl-logo-default.pb {
  padding-bottom: 24px;
}

.container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  display: flex;
}

.container.lp {
  background-image: linear-gradient(225deg, var(--tomato) 6%, var(--midnight-blue-2) 47%, var(--midnight-blue));
  border-radius: 12px;
}

.skl-nav-menu {
  grid-column-gap: 16px;
  flex: none;
  order: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.brand {
  order: -1;
  padding-left: 0;
}

.navbar {
  z-index: 999;
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
  background-color: #ffffffd9;
  justify-content: space-around;
  align-items: stretch;
  height: 80px;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar.lp {
  background-color: #ffffff59;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar.v2 {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.navbar.z-index {
  z-index: 11;
}

.skl-nav-link {
  color: var(--dark-slate-blue-2);
  padding-left: 8px;
  padding-right: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.skl-nav-link.w--current {
  color: var(--dark-slate-blue);
  font-weight: 600;
}

.skl-button-primary {
  background-color: var(--tomato);
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s, transform .2s;
  display: inline-block;
}

.skl-button-primary:hover {
  background-color: var(--indian-red);
  transform: scale(.98);
}

.skl-button-primary.hide-desktop {
  display: none;
}

.skl-button-primary.bigger {
  padding-left: 32px;
  padding-right: 32px;
}

.skl-button-primary.lp {
  background-color: var(--white);
  color: var(--midnight-blue);
  align-self: center;
}

.skl-button-primary.skl-button-con-mentor {
  background-color: var(--white);
  color: var(--midnight-blue);
  text-align: center;
  letter-spacing: .5px;
  border-radius: 8px;
  flex: 1;
  align-self: center;
  min-height: 35px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  font-weight: 700;
}

.skl-button-primary.center.is-trackable.big {
  margin-top: 10px;
  padding-top: 17px;
  padding-bottom: 17px;
  font-size: 18px;
}

.skl-button-int-header-login {
  border: 1px solid var(--lavender);
  background-color: var(--white);
  color: var(--dark-slate-blue-2);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 8px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-int-header-login:hover {
  background-color: var(--ghost-white-2);
}

.skl-section-default {
  overflow: hidden;
}

.skl-section-default.skl-margin-normal.skl-bg-grey.skl-lines {
  border-bottom: 1px solid var(--lavender);
  background-image: url('../images/frame-1101.svg');
  background-position: 100% 100%;
  background-size: cover;
}

.skl-section-default.skl-margin-normal.skl-bg-grey.skl-lines.nav {
  min-height: 50vh;
  padding-top: 160px;
}

.skl-section-default.skl-margin-normal.skl-bg-grey.skl-lines.nav.min {
  min-height: 100vh;
}

.skl-section-default.skl-margin-normal.skl-bg-grey.nav {
  padding-top: 160px;
}

.skl-section-default.skl-margin-normal.nav {
  padding-top: 120px;
}

.skl-section-default.skl-margin-normal.skl-bg-grey.skl-lines {
  background-image: url('../images/frame-1101.svg');
  background-position: 100% 100%;
  background-size: cover;
  border-bottom: 1px solid #e1e4f0;
}

.skl-section-default.skl-margin-normal.skl-bg-grey.skl-lines.nav {
  padding-top: 160px;
}

.skl-section-default.skl-margin-bigtop-normalbottom {
  padding-top: 200px;
  padding-bottom: 80px;
}

.skl-section-default.skl-margin-bigtop-normalbottom.test-on-section {
  display: none;
}

.skl-section-default.skl-margin-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

.skl-section-default.skl-margin-small.skl-bg-grey {
  background-color: var(--ghost-white);
  min-height: 50vh;
}

.skl-section-default.skl-margin-small.skl-bg-grey.pma-skl-awards {
  min-height: auto;
}

.skl-section-default.skl-margin-smalltop-normalbottom-copy {
  padding-top: 40px;
  padding-bottom: 80px;
}

.skl-section-default.padding {
  padding-top: 48px;
  padding-bottom: 48px;
}

.skl-section-default.center {
  background-color: var(--ghost-white);
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
}

.skl-section-default.skl-margin-normal {
  z-index: 9999;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Montserrat, sans-serif;
}

.skl-section-default.skl-margin-normal.skl-bg-grey {
  background-color: #f0f2fa;
}

.skl-section-default.skl-margin-normal {
  z-index: 9999;
  padding-top: 80px;
  padding-bottom: 80px;
}

.skl-section-default.skl-margin-normal.skl-bg {
  background-color: #f0f2fa;
}

.skl-section-default.skl-margin-normal.skl-bg.skl-lines {
  background-image: url('../images/frame-1101.svg');
  background-position: 100% 100%;
  background-size: cover;
  border: 1px solid #fff;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  padding-top: 60px;
  padding-bottom: 140px;
  box-shadow: 0 -5px 20px #a1adf01f;
}

.skl-buttons-duo {
  grid-column-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-2 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding-top: 80px;
  display: flex;
}

.container-2.mas-w {
  max-width: 1000px;
}

.div-block-3324 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-3325 {
  text-align: center;
  width: 80%;
}

.div-block-3325.lp-b {
  width: 90%;
}

.div-block-3325.pma-skl {
  width: 64%;
}

.skl-card {
  grid-row-gap: 16px;
  background-color: var(--white);
  text-align: center;
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  transition: all .3s ease-in-out;
  display: flex;
  box-shadow: 0 24px 36px -15px #0f1a453d;
}

.skl-card:hover {
  transform: translate(0, -4px);
}

.skl-card.netflix {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: var(--midnight-blue);
  color: var(--white);
  flex-direction: row;
  height: 400px;
  margin-top: 80px;
  padding: 0;
  overflow: hidden;
}

.skl-card.lp-b {
  text-align: left;
  align-items: flex-start;
  padding: 24px 20px;
}

.skl-card.alumni {
  padding-left: 18px;
  padding-right: 18px;
}

.skl-card.pma-card {
  justify-content: flex-start;
  align-items: flex-start;
}

.div-block-3326 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-3326.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-3326.pma-skl-home {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-3327 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-3327.max-w {
  max-width: 500px;
  margin-top: 20px;
  position: relative;
}

.div-block-3328 {
  border: 1px solid var(--lavender);
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  display: flex;
}

.div-block-3328.margin {
  margin-top: 60px;
}

.skl-div-logos-empresas {
  grid-column-gap: 24px;
  justify-content: space-around;
  display: flex;
}

.skl-div-logos {
  flex: 1;
  justify-content: center;
  display: flex;
}

.skl-description {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.skl-description.skl-center {
  text-align: center;
}

.skl-description.skl-center.skl-text-blue {
  color: var(--dark-slate-blue-2);
}

.skl-description.small {
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 500;
}

.skl-description.small.text-blue.center {
  text-align: center;
  width: auto;
}

.skl-description.small.text-blue.size {
  width: auto;
}

.skl-description.small.white {
  color: var(--white);
}

.skl-description.small.text-blue {
  color: #4b5373;
  width: 100%;
}

.skl-description.small.text-blue.center {
  text-align: center;
}

.skl-description.small.text-blue {
  color: #4b5373;
}

.skl-description.white {
  color: var(--white);
}

.skl-description.white.adpt {
  opacity: .5;
  mix-blend-mode: overlay;
  font-size: 12px;
  line-height: 1.2em;
}

.div-block-3329 {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  margin-top: -75px;
  margin-bottom: 16px;
  padding: 8px 24px;
  display: flex;
}

.div-block-3329.no-white {
  background-color: #0000;
}

.skl-section-hero {
  background-image: radial-gradient(circle closest-corner at 50% 50%, var(--white) 30%, transparent), url('../images/modo_de_isolamento.svg'), linear-gradient(180deg, var(--white), var(--ghost-white));
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, no-repeat, repeat;
  background-size: auto, cover, auto;
  flex-direction: column;
  height: 100dvh;
  display: flex;
}

.skl-section-hero.v3 {
  height: auto;
  padding-top: 80px;
}

.skl-section-hero.nm {
  margin-bottom: 0;
}

.skl-section-hero.nm.padding {
  height: auto;
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 100px;
}

.skl-section-hero.saiba-mais {
  height: 90vh;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 40px;
}

.container-4 {
  margin-bottom: -11dvh;
}

.skl-div-logos-img {
  width: 100%;
  height: 100%;
}

.skl-div-logos-img.multiply {
  mix-blend-mode: multiply;
}

.container-5 {
  flex-direction: column;
  display: flex;
}

.div-block-3330 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-3331 {
  flex: 1;
}

.skl-card-grey {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  border: 1px solid var(--lavender);
  background-color: var(--ghost-white);
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  display: flex;
  box-shadow: 0 24px 36px -15px #0f1a453d;
}

.skl-card-grey.size {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  width: 50%;
  padding: 20px;
  display: flex;
}

.skl-svg-70 {
  width: 70px;
  height: 70px;
}

.skl-svg-70.lp-b {
  align-self: flex-start;
  width: 60px;
  height: 60px;
}

.skl-svg-70.small {
  width: 50px;
  height: 50px;
}

.div-block-3332 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-width: 130px;
  display: flex;
}

.skl-svg-60 {
  width: 60px;
  height: 60px;
}

.div-block-3333 {
  grid-column-gap: 16px;
  display: flex;
}

.div-block-3333.gap {
  grid-column-gap: 5px;
}

.skl-line-vertical {
  background-color: var(--lavender);
  width: 2px;
  margin-left: 8px;
  margin-right: 8px;
}

.div-block-3334 {
  width: 70%;
}

.skl-heading-6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}

.skl-heading-6.bold {
  font-weight: 700;
}

.skl-heading-6.bold.mid-blue {
  color: var(--midnight-blue-2);
}

.skl-heading-6.bold.mid-blue.pma-skl {
  text-align: left;
  width: 100%;
}

.skl-heading-6.text-blue.alumni {
  color: var(--midnight-blue-2);
  font-size: 14px;
}

.skl-heading-6.mid-blue {
  color: var(--midnight-blue-2);
}

.skl-heading-6.text-blue {
  color: #4b5373;
}

.skl-heading-5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
}

.skl-heading-5.center {
  text-align: center;
}

.skl-heading-5.center.mid-age._45ch {
  width: 45ch;
}

.skl-heading-5.center.mid-age {
  color: #212f6c;
}

.skl-heading-5.mid-blue {
  color: var(--midnight-blue-2);
}

.skl-heading-5.mid-blue.color {
  color: var(--midnight-blue);
  margin-bottom: 10px;
}

.skl-heading-5.medium {
  font-weight: 500;
}

.skl-heading-5.pma-skills {
  color: #212f6c;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}

.skl-heading-5.pma-skills.pma-kl {
  text-align: center;
  font-family: Montserrat, sans-serif;
}

.skl-heading-4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
}

.skl-heading-4.bold {
  font-weight: 700;
}

.skl-heading-4.bold.center {
  text-align: center;
}

.skl-heading-4.bold.center.mid-blue {
  color: var(--midnight-blue-2);
}

.skl-heading-4.bold.mid-blue {
  position: relative;
}

.skl-heading-4.bold.mid-blue.center {
  font-size: 40px;
}

.skl-heading-4.bold.mid-blue._20ch {
  width: 20ch;
}

.skl-heading-4.bold.white {
  color: var(--white);
}

.skl-heading-4.bold.white.adp {
  font-size: 24px;
}

.skl-heading-4.mid-blue.ajuste {
  font-size: 30px;
}

.skl-heading-4.center {
  text-align: center;
}

.skl-heading-4.mid-blue {
  color: #212f6c;
}

.skl-heading-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

.skl-heading-3.center {
  text-align: center;
}

.skl-heading-3.center.bold {
  font-weight: 700;
}

.skl-heading-3.center.bold.text-blue {
  color: var(--midnight-blue-2);
}

.skl-heading-3.bold {
  font-weight: 700;
}

.skl-heading-3.bold.mid-blue {
  color: var(--midnight-blue-2);
  font-family: Montserrat, sans-serif;
}

.skl-heading-3.bold.mid-blue.mobile.center-text {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.skl-heading-3.bold.mid-blue.hide-mobile {
  display: none;
}

.skl-heading-3.bold.mid-blue.width.big {
  width: 400px;
  font-size: 46px;
}

.skl-heading-3.bold.mid-blue.big {
  font-family: Montserrat, sans-serif;
  font-size: 45px;
}

.skl-heading-3.bold.mid-blue {
  color: #212f6c;
}

.skl-heading-3.bold.mid-blue.mobile {
  width: 100%;
}

.skl-heading-3.mid-blue {
  color: var(--midnight-blue-2);
}

.skl-heading-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
}

.skl-heading-2.mid-blue {
  color: var(--midnight-blue-2);
}

.skl-heading-1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 120%;
}

.skl-heading-1.skl-gradient {
  background-image: linear-gradient(315deg, var(--midnight-blue-2) 38%, var(--tomato) 75%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.skl-paragraph-small {
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}

.skl-paragraph-small.text-blue {
  color: var(--dark-slate-blue-2);
}

.skl-paragraph-big {
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.skl-paragraph-big.medium {
  font-weight: 500;
}

.skl-paragraph-big.medium.text-blue {
  color: var(--dark-slate-blue-2);
}

.skl-paragraph-big.white {
  color: var(--white);
}

.skl-paragraph-big.white.adpt {
  font-size: 14px;
}

.skl-paragraph-big.ntm {
  margin-top: 0;
}

.skl-paragraph-big.text-blue {
  color: var(--midnight-blue);
}

.skl-paragraph-big.text-blue.margin {
  color: var(--midnight-blue);
  margin-bottom: 5px;
}

.skl-paragraph-big.text-blue.margin.pma-skl {
  color: #fff;
  margin-bottom: 0;
  line-height: 100%;
}

.skl-paragraph-big.text-blue.pma-skl {
  color: #fff;
  line-height: 100%;
}

.skl-paragraph-big.pma-text-skl {
  color: #000;
  font-weight: 600;
}

.skl-paragraph-biggest {
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 20px;
  line-height: 150%;
}

.skl-paragraph-biggest.semibold {
  font-weight: 600;
}

.skl-paragraph-biggest.semibold.dark-blue {
  color: #0f1a45;
}

.skl-paragraph-biggest.semibold.dark-blue.center {
  text-align: center;
}

.skl-paragraph-biggest.semibold.white {
  color: #fff;
}

.skl-paragraph-biggest.text-16 {
  font-family: Montserrat, sans-serif;
}

.skl-paragraph-biggest.text-16.center {
  text-align: center;
  max-width: 53ch;
}

.skl-paragraph-biggest.text-16.pma-skl {
  line-height: 150%;
}

.skl-paragraph-biggest.white {
  color: var(--white);
}

.skl-paragraph-biggest.medium {
  font-weight: 500;
}

.skl-paragraph-biggest.medium.text-blue {
  color: #4b5373;
}

.skl-paragraph-bigger {
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.skl-paragraph-bigger.text-blue {
  color: var(--dark-slate-blue-2);
}

.skl-paragraph-bigger.medium {
  font-weight: 500;
}

.skl-paragraph-bigger.medium.text-blue {
  color: var(--dark-slate-blue-2);
}

.skl-paragraph-bigger.medium.text-blue.size {
  font-size: 14px;
}

.skl-paragraph-normal {
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-weight: 400;
  line-height: 150%;
}

.skl-paragraph-normal.semibold {
  font-weight: 600;
}

.skl-paragraph-normal.semibold.text-blue {
  color: var(--dark-slate-blue-2);
}

.skl-paragraph-normal.semibold.text-blue.is-trackable.pma-skl {
  color: var(--midnight-blue);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.skl-paragraph-normal.medium {
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
}

.skl-paragraph-normal.expand {
  flex: 1;
}

.skl-paragraph-normal.text-blue {
  color: var(--dark-slate-blue-2);
}

.skl-paragraph-normal.white {
  color: var(--white);
}

.skl-paragraph-normal.pma-skl {
  text-align: left;
}

.div-block-3335 {
  grid-column-gap: 24px;
  display: flex;
}

.tabs {
  background-image: linear-gradient(45deg, var(--lavender) 16%, var(--tomato) 50%, var(--midnight-blue-2));
  border-radius: 24px;
  width: 940px;
  margin-left: -16px;
  margin-right: -16px;
  padding-top: 55px;
  position: relative;
  box-shadow: 0 24px 36px -15px #0f1a453d;
}

.skl-tabs-menu-trilha {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  padding: 16px 16px 24px 18px;
  display: flex;
}

.skl-button-eng-exemplostrilhas {
  color: var(--white);
  background-color: #0000;
  border: 2px solid #ffffff80;
  border-radius: 50px;
  margin-left: 0;
  margin-right: 0;
  padding: 6px 16px;
  font-family: Montserrat GF, sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: all .3s ease-in-out;
}

.skl-button-eng-exemplostrilhas:hover {
  background-color: #ffffff52;
}

.skl-button-eng-exemplostrilhas.w--current {
  background-color: var(--white);
  color: var(--midnight-blue);
  font-weight: 500;
}

.tab-pane-tab-1 {
  width: 100%;
  height: 100%;
  padding: 0 16px 16px;
}

.skl-card-blue {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  border: 1px solid var(--midnight-blue);
  background-color: var(--midnight-blue-2);
  color: var(--white);
  border-radius: 24px;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  transition: all .4s ease-in-out;
  display: flex;
  box-shadow: 0 24px 36px -15px #0f1a453d;
}

.skl-card-blue.skl-ui-depoimments {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.skl-button-int-diagnostico {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 100px;
  align-items: center;
  height: 40px;
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-int-diagnostico:hover {
  background-color: var(--white);
  color: var(--midnight-blue-2);
}

.div-block-3336 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  width: 45%;
  padding: 16px 16px 16px 8px;
  display: flex;
  position: relative;
}

.image-227 {
  width: 414px;
  height: 100%;
  padding-bottom: 8px;
}

.coral {
  color: var(--tomato);
}

.html-embed {
  margin-bottom: -5px;
}

.skl-card-white {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  border: 1px solid var(--lavender);
  background-color: var(--white);
  color: var(--dark-slate-blue-2);
  border-radius: 24px;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding: 40px 32px;
  display: flex;
  box-shadow: 0 24px 36px -16px #0f1a453d;
}

.skl-card-white.skl-ui-search {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.skl-card-white.skl-ui-search.bigger {
  margin: -8px;
}

.skl-card-white.skl-ui-features {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-color: var(--lavender);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  box-shadow: 0 16px 36px -16px #0f1a453d;
}

.skl-card-white.skl-ui-features.pma-skl {
  border-color: var(--lavender);
  padding-bottom: 16px;
}

.skl-card-white.skl-ui-dash {
  padding: 24px;
}

.skl-card-white.small.login {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  width: 100%;
  padding: 49px;
}

.skl-card-white.small.center {
  border-style: none;
  justify-content: center;
  width: auto;
}

.skl-card-white.small.center.auto {
  margin-top: auto;
  margin-bottom: auto;
}

.skl-card-white.small.center.pma-sk {
  justify-content: center;
  align-items: center;
}

.skl-button-icon-primary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--ghost-white);
  background-color: var(--white);
  box-shadow: none;
  color: var(--midnight-blue);
  border-radius: 100px;
  align-items: center;
  height: 40px;
  padding: 8px 16px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-icon-primary:hover {
  border-color: var(--lavender);
  background-color: var(--ghost-white);
  color: var(--midnight-blue-2);
}

.skl-button-icon-primary.w--current {
  border-color: var(--tomato);
  background-color: var(--white);
  color: var(--tomato);
}

.tabs-2 {
  align-items: flex-end;
  margin-top: -24px;
  display: flex;
}

.skl-tabs-menu-dash {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 16px;
  display: flex;
}

.div-block-3337 {
  grid-row-gap: 16px;
  flex-direction: column;
  width: 35%;
  height: 0;
  padding-top: 8px;
  padding-left: 8px;
  display: flex;
  position: relative;
}

.skl-tab-panel-dash {
  border: 1px solid var(--lavender);
  background-color: var(--ghost-white-2);
  border-radius: 16px;
  max-width: 500px;
  min-height: 350px;
  padding: 16px 16px 24px;
}

.div-block-3338 {
  width: 60%;
}

.skl-card-mid-blue {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  border: 1px solid var(--midnight-blue);
  background-color: var(--midnight-blue);
  color: var(--white);
  border-radius: 24px;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  display: flex;
  box-shadow: 0 24px 36px -15px #0f1a453d;
}

.div-block-3339 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  padding: 16px 8px 8px;
  display: flex;
}

.wrapper {
  border-radius: 16px;
  width: 500px;
  height: 350px;
  overflow: hidden;
}

.div-block-3341 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.skl-bar-progress-bg {
  border: 1px solid var(--lavender);
  background-color: var(--ghost-white);
  border-radius: 50px;
  flex-direction: column;
  width: 100%;
  height: 21px;
  display: flex;
}

.skl-bar-progress {
  background-image: linear-gradient(270deg, var(--tomato), var(--midnight-blue-2) 79%);
  border-radius: 50px;
  width: 100%;
  height: 20px;
  box-shadow: 0 8px 16px -4px #0f1a453d;
}

.skl-bar-progress._92pct {
  width: 92%;
}

.skl-bar-progress._94pct {
  width: 94%;
}

.skl-bar-progress._75pct {
  width: 75%;
}

.skl-bar-progress.mid-blue {
  background-color: var(--midnight-blue-2);
  background-image: none;
}

.div-block-3342 {
  width: 70%;
}

.container-7 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-3343 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.slide-25 {
  background-color: var(--white);
  height: 100%;
  margin-right: 16px;
}

.slider-11 {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.slide-nav-12 {
  display: none;
}

.skl-bg-explode {
  border: 1px solid var(--ghost-white);
  background-color: var(--ghost-white-2);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 120px;
  max-height: 120px;
  margin: 0 0 8px;
  padding: 8px;
  display: flex;
}

.div-block-3344 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.div-block-3344.pma-skl {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: center;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
}

.div-block-3345 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.skl-coral {
  color: var(--tomato);
}

.div-block-3346 {
  width: 45%;
  margin-bottom: 24px;
}

.div-block-3347 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.div-block-3348 {
  border: 2px solid var(--white);
  background-image: url('../images/g-rodrigues.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 100px;
  width: 64px;
  height: 64px;
}

.div-block-3348.silvia {
  background-image: url('../images/silvia.webp');
  background-position: 50%;
  background-size: cover;
  width: 48px;
  height: 48px;
}

.div-block-3348.rafella {
  background-image: url('../images/rafaella-kunii.webp');
  background-position: 50%;
  background-size: cover;
  width: 48px;
  height: 48px;
}

.div-block-3348.diogo {
  background-image: url('../images/imagem-do-whatsapp-de-2023-03-21-as-15.05.33.webp'), url('../images/g-rodrigues.webp');
  background-position: 50%, 50%;
  background-size: cover, cover;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
}

.div-block-3349 {
  text-align: left;
}

.container-8 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-3350 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-3342-copy-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  width: 55%;
  display: flex;
}

.skl-footer {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.skl-footer-columm {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  border: 0px solid var(--lavender);
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  align-self: stretch;
  align-items: center;
  padding: 24px 0;
  display: flex;
}

.skl-footer-columm.center {
  align-items: center;
}

.skl-footer-columm.pma-skl {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding-bottom: 0;
}

.skl-footer-list-item {
  border: 1px solid #0000;
  border-radius: 20px;
  padding: 8px 12px;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.skl-footer-list-item:hover {
  border: 1px solid var(--lavender);
  background-color: var(--ghost-white);
}

.skl-footer-list-item.pma-skl {
  border-color: var(--lavender);
}

.div-block-3352 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.div-block-3354 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.icon {
  color: var(--midnight-blue-2);
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.div-block-3355 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--dark-slate-blue-2);
  align-items: center;
  text-decoration: none;
  display: flex;
}

.skl-footer-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  margin-bottom: 0;
  display: flex;
}

.skl-footer-list.pma-skl.pma-mobile {
  display: none;
}

.container-9 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.container-9.pma-skl {
  display: block;
}

.skl-line-horizontal {
  background-color: var(--lavender);
  width: 100%;
  height: 2px;
}

.div-block-3356 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  display: flex;
}

.div-block-3358 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.div-block-3336-copy {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.div-block-3359 {
  text-align: center;
  width: 90%;
}

.div-block-3359.lp-b {
  width: 100%;
  margin-bottom: 30px;
}

.skl-gradient {
  background-image: linear-gradient(315deg, var(--midnight-blue-2) 22%, var(--tomato) 58%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.div-block-3367 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  margin-bottom: 24px;
  display: flex;
}

.skl-film-container {
  width: 100%;
  height: 100%;
}

.skl-film-container.black-bg {
  background-color: #080e26;
}

.skl-film-content {
  background-image: url('../images/skl-film-content.png');
  background-position: 50%;
  background-size: auto;
  flex-direction: row;
  width: 1189px;
  height: 350px;
  display: flex;
}

.div-block-3369 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.tabs-content {
  width: 500px;
  min-width: 500px;
}

.div-block-3370 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.right-arrow-6 {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-right: 16px;
  display: flex;
}

.mask-11 {
  overflow: visible;
}

.html-embed-3 {
  background-color: var(--white);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  box-shadow: 0 16px 24px #0f1a4552;
}

.left-arrow-7 {
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  display: flex;
}

.html-embed-copy {
  width: 12px;
  margin-bottom: -5px;
}

.mask-12 {
  width: 32%;
  overflow: visible;
}

.slider-12 {
  background-color: #0000;
  display: none;
}

.slide-26 {
  margin-right: 16px;
}

.slide-nav-13 {
  display: none;
}

.div-block-3341-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.skl-cta-screen {
  z-index: 10;
  background-color: #f0f2fa;
  background-image: linear-gradient(90deg, var(--ghost-white), var(--ghost-white) 63%, transparent 63%), linear-gradient(315deg, var(--midnight-blue-2) 13%, var(--tomato) 44%);
  justify-content: center;
  align-items: center;
  padding: 80px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.div-block-3374 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  padding-top: 16px;
  padding-bottom: 24px;
  display: flex;
}

.div-block-3374.left {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}

.div-block-3374.left.auto {
  margin-top: auto;
  margin-bottom: auto;
}

.div-block-3374.center {
  align-items: center;
}

.div-block-3374.center.auto-margin {
  margin-left: auto;
  margin-right: auto;
}

.div-block-3375 {
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.div-block-3375.alt {
  align-self: center;
  width: 100px;
  min-width: 50%;
}

.div-block-3375.v2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
}

.div-block-3375.width {
  background-color: var(--ghost-white);
  border-radius: 10px;
  flex: 0 auto;
  align-items: flex-start;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 7px;
  display: block;
}

.skl-cta-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.skl-cta-list._60 {
  max-width: 80%;
  margin-bottom: 16px;
}

.skl-cta-list.align {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}

.skl-cta-list.align.pma-skl {
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.skl-cta-list.pma-skl {
  padding-top: 0;
  padding-bottom: 0;
}

.skl-cta-exit {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto auto;
}

.skl-icon-check {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
}

.div-block-3376 {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.div-block-3376.v2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.div-block-3376.v2.center {
  text-align: center;
  align-items: center;
}

.image-231 {
  width: 468px;
  height: 100%;
}

.div-block-3384 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-3385 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  justify-content: space-between;
  display: flex;
}

.skl-faq {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--lavender);
  background-color: var(--white);
  color: var(--dark-slate-blue-2);
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  padding: 16px 24px 16px 32px;
  display: flex;
  box-shadow: 0 24px 36px -16px #0f1a453d;
}

.skl-faq-t-tulo {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.skl-close {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 8px;
  display: flex;
}

.skl-faq-response {
  justify-content: center;
  margin-bottom: 16px;
  display: flex;
}

.div-block-3392 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.div-block-3394 {
  margin-bottom: 20px;
}

.skl-logo-dep {
  width: 150px;
  height: 60px;
}

.skl-logo-dep.exclusion {
  mix-blend-mode: exclusion;
}

.background-video-2 {
  z-index: 2;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  padding-top: 71%;
  position: relative;
  box-shadow: 0 4px 8px #0f1a453d;
}

.div-block-3396 {
  z-index: 5;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  display: flex;
  position: relative;
  bottom: -55px;
}

.div-block-3397 {
  perspective: none;
  width: 100%;
}

.text-style-gradient {
  background-image: linear-gradient(135deg, var(--tomato) 21%, var(--midnight-blue-2) 57%);
  letter-spacing: -.5px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15em;
}

.text-style-gradient.size {
  width: 100%;
  font-size: 52px;
}

.text-style-gradient.pma-text {
  text-align: center;
}

.text-style-gradient.pma-text.pma-skl {
  font-family: Montserrat, sans-serif;
  font-size: 61px;
  line-height: 120%;
}

.div-block-3346-copy {
  width: 45%;
  margin-bottom: 0;
}

.div-block-3402 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-left: 8px;
  display: flex;
}

.no-wrap {
  white-space: nowrap;
}

.html-embed-5._10 {
  margin-bottom: 0;
}

.skl-button-con-hero {
  background-color: var(--tomato);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 8px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-con-hero:hover {
  background-color: var(--indian-red);
  transform: translate(0, -2px);
}

.skl-button-con-header {
  color: var(--indian-red);
  background-color: #ff49331f;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 8px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-con-header:hover {
  background-color: var(--tomato);
  color: var(--white);
  transform: translate(0, -2px);
}

.skl-button-con-header.is-trackable {
  cursor: pointer;
}

.skl-button-con-trilhaspersonalizadas {
  background-color: var(--tomato);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 8px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-con-trilhaspersonalizadas:hover {
  background-color: var(--indian-red);
  transform: translate(0, -2px);
}

.skl-button-con-trilhaspersonalizadas.hide-mobile.is-trackable.d-none, .skl-button-con-trilhaspersonalizadas.hide-desktop {
  display: none;
}

.skl-button-con-conteudos {
  background-color: var(--tomato);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 8px 32px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-con-conteudos:hover {
  background-color: var(--indian-red);
  transform: translate(0, -2px);
}

.skl-button-con-conteudos.hide-mobile.is-trackable.d-none {
  display: none;
}

.skl-button-con-numeros {
  background-color: var(--tomato);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 8px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-con-numeros:hover {
  background-color: var(--indian-red);
  transform: translate(0, -2px);
}

.skl-button-con-numeros.is-trackable {
  cursor: pointer;
}

.div-block-3404 {
  background-color: var(--white);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  min-height: 40px;
  padding: 16px;
  transition: background-color .3s;
  display: flex;
}

.div-block-3404:hover {
  background-color: #ffffffb3;
}

.html-embed-6 {
  width: 16px;
  height: 16px;
}

.skl-container-logos-cta {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  display: flex;
}

.skl-div-social-cta {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.skl-div-social-cta.hide-mobile {
  margin-top: 20px;
}

.skl-div-social-cta.hide-desktop {
  display: none;
}

.skl-div-logos-cta {
  justify-content: center;
  display: flex;
}

.skl-div-logos-cta-img {
  width: auto;
  height: 24px;
}

.skl-section-hero-lp {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: linear-gradient(to bottom, var(--white), var(--ghost-white));
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 90px;
  padding-top: 64px;
  padding-bottom: 72px;
  display: flex;
}

.div-block-3383-copy {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  display: flex;
}

.div-block-3387-copy {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-image: linear-gradient(45deg, var(--white), var(--tomato) 51%, var(--midnight-blue-2));
  border-radius: 32px;
  flex-flow: wrap;
  flex: 1;
  align-items: flex-start;
  padding: 8px;
  display: flex;
}

.skl-card-investir {
  grid-row-gap: 16px;
  background-color: var(--white);
  text-align: center;
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  min-width: 49%;
  padding: 24px;
  transition: all .3s ease-in-out;
  display: flex;
  box-shadow: 0 24px 36px -15px #0f1a453d;
}

.div-block-3386-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.skl-card-lp {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: var(--white);
  color: var(--white);
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 47%;
  min-width: 47%;
  padding: 40px 24px 24px;
  display: flex;
  box-shadow: 0 16px 24px -8px #0f1a4529;
}

.skl-card-lp.mid-blue {
  background-color: var(--midnight-blue-2);
}

.skl-card-lp.coral {
  background-color: var(--tomato);
}

.skl-card-lp.dark-blue {
  background-color: var(--midnight-blue);
}

.display-skl-card-lp {
  grid-column-gap: 32px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  align-items: center;
  display: flex;
}

.skl-card-lp-container {
  background-color: #0000000f;
  border: 1px solid #00000014;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 350px;
  display: flex;
  overflow: hidden;
}

.skl-card-lp-container.other-color {
  background-color: var(--ghost-white-2);
}

.skl-card-lp-img {
  width: 100%;
}

.div-block-3405 {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
  display: flex;
}

.container-7-copy {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-3406 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 60%;
  display: flex;
}

.div-block-3407 {
  grid-row-gap: 32px;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.skl-card-price {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--ghost-white-2);
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 40px 24px;
  display: flex;
  box-shadow: 0 16px 32px -8px #0f1a4529;
}

.skl-card-lp-price {
  border: 1px solid var(--lavender);
  background-color: var(--white);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 24px;
  display: flex;
  overflow: hidden;
}

.text-span-26 {
  background-image: linear-gradient(315deg, var(--midnight-blue-2) 26%, var(--tomato) 83%);
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-block-122 {
  color: var(--midnight-blue-2);
  font-family: Montserrat, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 64px;
}

.div-block-3408 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.div-block-3409 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.list-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.skl-card-price-list-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.div-block-3386-copy-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.div-block-3385-copy {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.skl-card-depoimento {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid var(--lavender);
  background-color: var(--white);
  text-align: left;
  border-radius: 16px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  min-width: 31%;
  padding: 24px 24px 32px;
  display: flex;
}

.div-block-3410 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-wrap: wrap;
  display: flex;
}

.div-block-3347-copy {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  flex: 1;
  order: 1;
  align-self: stretch;
  align-items: flex-end;
  display: flex;
}

.skl-glass {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: linear-gradient(45deg, #fffc, #fffc);
  border-radius: 40px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  box-shadow: 0 8px 32px -8px #0f1a4514;
}

.lottie-animation {
  width: 472px;
  height: 382px;
}

.lottie-animation.pma-skl {
  width: auto;
  height: auto;
}

.div-block-3411 {
  border-radius: 8px;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.container-11 {
  margin-top: 80px;
}

.div-block-3328-copy {
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.skl-cta-section {
  z-index: 10;
  background-color: #f0f2fa;
  background-image: linear-gradient(to right, var(--ghost-white), var(--ghost-white) 63%, transparent 63%), linear-gradient(315deg, var(--midnight-blue-2) 13%, var(--tomato) 44%);
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  display: flex;
}

.skl-cta-container {
  justify-content: space-between;
  max-width: 80vw;
  display: flex;
}

.skl-cta-div {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-direction: row;
  display: flex;
  position: relative;
}

.skl-cta-list-copy {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.skl-cta-list-copy.v2 {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
}

.skl-cta-list-copy.v2.gap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 0;
}

.skl-cta-list-copy.v2.pma-skl {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  padding-left: 0;
}

.text-block-123 {
  background-color: var(--white);
  color: var(--dark-slate-blue);
  text-align: center;
  border-radius: 8px;
  margin-top: 0;
  padding: 4px 8px;
  font-family: Montserrat GF, sans-serif;
  font-weight: 600;
}

.skl-heading-3-5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 130%;
}

.skl-heading-3-5.mid-blue {
  color: var(--midnight-blue-2);
}

.new-collection {
  display: flex;
}

.new-collection-list {
  border-radius: 24px;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.new-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  max-width: 100%;
  max-height: 100%;
  padding: 16px 16px 24px;
  transition: all .7s;
  display: flex;
  position: relative;
}

.new-nome {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 25dvh;
  display: flex;
}

.mask-14 {
  flex: 1;
  align-self: stretch;
  max-width: 100%;
  overflow: visible;
}

.slide-nav-15 {
  display: none;
}

.new---right-arrow {
  justify-content: center;
  align-items: center;
  width: 50px;
  margin-right: -20px;
  display: none;
  overflow: visible;
}

.new---left-arrow {
  justify-content: center;
  align-items: center;
  width: 50px;
  margin-left: -20px;
  display: none;
  overflow: visible;
}

.new-info {
  background-image: linear-gradient(to bottom, var(--midnight-blue-2), var(--midnight-blue-2));
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
  max-height: 100%;
  padding: 32px 24px 24px;
  display: none;
  position: absolute;
  inset: 0%;
}

.new-course-img {
  z-index: 10;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
}

.div-block-3414 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  opacity: .8;
  display: flex;
}

.skl-button-mentor {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--white);
  background-color: #ffffff0a;
  border: 2px solid #ffffff0a;
  border-radius: 12px;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: 35px;
  height: 35px;
  padding-left: 16px;
  padding-right: 16px;
  font-family: Montserrat GF, sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: none;
}

.skl-button-mentor:hover {
  background-color: var(--white);
  color: var(--midnight-blue-2);
}

.slide-28 {
  width: 18.65%;
  margin-right: 16px;
}

.div-block-3416 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
  width: 35px;
  height: 35px;
}

.collection-item-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
}

.collection-list-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  display: flex;
}

.div-block-3417 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-end;
  margin-top: 8px;
  display: flex;
}

.div-block-3418 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  order: 1;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
}

.skl-divider {
  background-color: #fff6;
  width: 100%;
  height: 1px;
  margin-bottom: 8px;
}

.container-12 {
  flex-direction: column;
  display: flex;
}

.div-block-3420 {
  flex: 1;
  align-self: stretch;
}

.div-block-3421 {
  background-color: #fcfeff;
  border-radius: 24px;
  justify-content: center;
  height: 100%;
  padding: 24px;
  display: flex;
  box-shadow: 0 8px 24px -8px #0f1a4552;
}

.skl-section {
  background-image: url('../images/noisy_1noisy.webp'), linear-gradient(45deg, #212f6c 50%, #ff6559 94%);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: 150px, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  display: flex;
  overflow: hidden;
}

.div-block-3422 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.div-block-3423 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.paragraph-62 {
  color: #fcfeff;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  line-height: 1.5em;
}

.heading-102 {
  color: #fcfeff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  line-height: 1.2em;
}

.heading-102.small {
  font-size: 2.5rem;
}

.brand-2 {
  width: 150px;
  height: 30px;
}

.html-embed-9 {
  margin-bottom: 0;
}

.div-block-3424 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  height: 45px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.image-307 {
  width: 80px;
}

.body {
  overflow: hidden;
}

.div-block-3425 {
  flex: 1;
  align-self: center;
}

.div-block-3425.align {
  margin-right: auto;
}

.div-block-3426 {
  background-color: #fcfeff;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  padding: 40px 24px 32px;
  display: flex;
  box-shadow: 0 8px 24px -8px #0f1a4552;
}

.skl-section-2 {
  background-image: url('../images/noisy_1noisy.webp'), linear-gradient(45deg, #212f6c 50%, #ff6559 94%);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: 150px, auto;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  display: flex;
  overflow: hidden;
}

.div-block-3427 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.div-block-3427.vertical {
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.div-block-3428 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.body-2 {
  overflow: hidden;
}

.lottie-animation-2 {
  width: 100%;
  height: 100%;
}

.lottie-animation-3 {
  width: 50px;
}

.image-308 {
  margin-bottom: 32px;
}

.div-block-3375-copy {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.html-embed-11 {
  flex: 1;
  align-self: stretch;
  margin-bottom: 0;
}

.html-embed-11.size {
  width: 600px;
  margin-right: 0;
}

.div-block-3429 {
  text-align: left;
  flex: 1;
  min-width: 70%;
  padding: 24px 40px;
}

.div-block-3430 {
  background-image: url('../images/hbr_logo_black-1.svg'), linear-gradient(45deg, var(--midnight-blue) 13%, #00000003 77%, #0000 93%), url('../images/artigo-grade.png');
  background-position: 50%, 0 0, 50%;
  background-repeat: no-repeat, repeat, repeat;
  background-size: auto, auto, cover;
  flex: 1;
  align-self: stretch;
}

.container-47 {
  z-index: 9;
  margin-bottom: -96px;
}

.skl-cta-div-copy {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.skl-cta-div-copy.v2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.skl-cta-div-copy.center {
  justify-content: center;
  align-items: center;
}

.skl-cta-div-copy.relative {
  z-index: 3;
  position: relative;
}

.skl-cta-div-copy.relative.size {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.skl-cta-div-copy.evento {
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  position: relative;
}

.skl-button-secondary {
  color: var(--indian-red);
  background-color: #fcf2f2;
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s, transform .2s;
  display: inline-block;
}

.skl-button-secondary:hover {
  background-color: #f7e9e9;
  transform: scale(.98);
}

.skl-button-primary-mobile {
  background-color: var(--tomato);
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s, transform .2s;
  display: inline-block;
}

.skl-button-primary-mobile:hover {
  background-color: var(--indian-red);
  transform: scale(.98);
}

.skl-button-secondary-mobile {
  color: var(--indian-red);
  background-color: #fcf2f2;
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s, transform .2s;
  display: inline-block;
}

.skl-button-secondary-mobile:hover {
  background-color: #f7e9e9;
  transform: scale(.98);
}

.skl-button-buy-now {
  color: var(--indian-red);
  background-color: #fcf2f2;
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s, transform .2s;
  display: inline-block;
}

.skl-button-buy-now:hover {
  background-color: #f7e9e9;
  transform: scale(.98);
}

.semibold {
  font-weight: 600;
}

.div-block-3431 {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  display: flex;
}

.skl-section-hero-copy {
  background-image: radial-gradient(circle closest-corner at 50% 50%, var(--white) 30%, transparent), url('../images/modo_de_isolamento.svg'), linear-gradient(to bottom, var(--white), var(--ghost-white));
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, no-repeat, repeat;
  background-size: auto, cover, auto;
  flex-direction: column;
  padding-top: 110px;
  padding-bottom: 40px;
  display: flex;
}

.html-embed-12 {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 24px 40px -12px #0f1a4580;
}

.html-embed-12.saiba-mais {
  height: auto;
}

.redd {
  background-color: var(--dark-slate-blue);
  border: 1px solid #fff;
  flex: none;
  width: 50%;
  height: 80px;
}

.container-48 {
  flex-wrap: wrap;
  display: flex;
}

.container-9-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.div-block-3352-copy {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  display: flex;
}

.video-embed {
  border-radius: 20px;
  width: 80%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 0 24px 40px -12px #0f1a4580;
}

.video-embed.skl-cross-content-john-1, .video-embed.skl-cross-content-john-2, .video-embed.skl-cross-content-mari-1, .video-embed.skl-cross-content-mari-2 {
  display: none;
}

.video-embed.margin {
  margin-bottom: 40px;
}

.skl-card-white-2 {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  color: #4b5373;
  background-color: #fff;
  border: 1px solid #e1e4f0;
  border-radius: 24px;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding: 40px 32px;
  display: flex;
  box-shadow: 0 24px 36px -16px #0f1a453d;
}

.skl-card-white-2.small.center.full {
  min-width: 75vw;
  min-height: 65vh;
  padding: 24px;
}

.div-block-3435 {
  text-align: center;
  width: 80%;
}

.div-block-3435.lp-b {
  width: 90%;
}

.div-block-3437 {
  text-align: center;
  width: 90%;
}

.div-block-3437.lp-b {
  width: 100%;
}

.div-block-3438 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-3440 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-left: 8px;
  display: flex;
}

.skl-section-hero-2 {
  background-image: radial-gradient(circle closest-corner, #fff 30%, #0000), url('../images/modo_de_isolamento.svg'), linear-gradient(#fff, #f0f2fa);
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, no-repeat, repeat;
  background-size: auto, cover, auto;
  flex-direction: column;
  height: 100dvh;
  margin-bottom: 15dvh;
  display: flex;
}

.skl-section-hero-2.v3 {
  height: auto;
  padding-top: 80px;
}

.container-49 {
  z-index: 9;
  margin-bottom: -96px;
}

.container-49.v2.margin-top {
  margin-top: 80px;
}

.skl-card-2 {
  grid-row-gap: 16px;
  text-align: center;
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  transition: all .3s ease-in-out;
  display: flex;
  box-shadow: 0 24px 36px -15px #0f1a453d;
}

.skl-card-2:hover {
  transform: translate(0, -4px);
}

.skl-card-2.lp-b {
  text-align: left;
  align-items: flex-start;
  padding: 24px 20px;
}

.text-style-gradient-2 {
  letter-spacing: -.5px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #e76353 21%, #212f6c 57%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat GF, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15em;
}

.container-50 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding-top: 80px;
  display: flex;
}

.div-block-3441 {
  grid-column-gap: 16px;
  display: flex;
}

.div-block-3441.external-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

.div-block-3442 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  padding: 16px 8px 8px;
  display: flex;
}

.div-block-3442.center {
  justify-content: center;
}

.skl-card-mid-blue-2 {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  color: #fff;
  background-color: #0f1a45;
  border: 1px solid #0f1a45;
  border-radius: 24px;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  display: flex;
  box-shadow: 0 24px 36px -15px #0f1a453d;
}

.div-block-3443 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.heading-103 {
  font-family: Montserrat GF, sans-serif;
  font-weight: 400;
  line-height: 26px;
}

.image-309 {
  border: 2px solid var(--ghost-white-2);
  border-radius: 60px;
}

.html-embed-33 {
  min-width: 500px;
}

.fs_modal-2_close-4 {
  background-color: var(--lavender);
  cursor: pointer;
  border-radius: 0 0 0 16px;
  padding: 1.5rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.fs_modal-2_close-4:focus-visible, .fs_modal-2_close-4[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_modal-2_popup-5 {
  z-index: 999;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #0000002b;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs_modal-2_wrapper-6 {
  z-index: 999;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--ghost-white-2);
  color: #000;
  border: 1px solid #0000003d;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  width: 100%;
  max-width: 42rem;
  display: flex;
  position: relative;
  overflow: auto;
}

.fs_modal-2_close-icon-3 {
  width: 1rem;
  height: 1rem;
}

.fs_modal-2_component-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: start;
  justify-items: start;
  display: grid;
}

.fs_modal-2_component-3.center {
  justify-items: center;
  padding-top: 24px;
}

.fs_modal-2_embed {
  margin-bottom: 0;
}

.fs_modal-2_content-2 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-direction: column;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: center start;
  place-items: center start;
  max-height: 90vh;
  padding: 1rem;
  display: flex;
  overflow: auto;
}

.fs_modal-2_cover {
  position: absolute;
  inset: 0%;
}

.text-block-2108 {
  color: var(--ghost-white-2);
  padding-left: 24px;
  padding-right: 24px;
}

.exp-support-container {
  z-index: 1000;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 2vw 4vw auto;
  overflow: hidden;
}

.exp-support-container.is-trackable {
  left: auto;
  right: 2vw;
}

.exp-support-container.is-trackable.button-wpp {
  bottom: 7vw;
  right: 1.5vw;
}

.exp-support-button {
  z-index: 1000;
  background-color: #11d697;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 7vw;
  min-width: 60px;
  max-width: 60px;
  height: 7vw;
  min-height: 60px;
  max-height: 60px;
  display: flex;
  position: relative;
}

.exp-support-icon {
  filter: invert();
  width: 50%;
}

.div-block-3603 {
  text-align: center;
  width: 90%;
}

.container-62 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding-top: 80px;
  display: flex;
}

.text-style-gradient-3 {
  letter-spacing: -.5px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #e76353 21%, #212f6c 57%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15em;
}

.skl-button-primary-2 {
  background-color: #e76353;
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s, transform .2s;
  display: inline-block;
}

.skl-button-primary-2:hover {
  background-color: #c25246;
  transform: scale(.98);
}

.skl-section-hero-3 {
  background-image: radial-gradient(circle closest-corner, #fff 30%, #0000), url('../images/modo_de_isolamento.svg'), linear-gradient(#fff, #f0f2fa);
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, no-repeat, repeat;
  background-size: auto, cover, auto;
  flex-direction: column;
  height: 100dvh;
  margin-bottom: 15dvh;
  display: flex;
}

.skl-section-hero-3.form {
  max-width: 1920px;
  height: auto;
  min-height: 1920px;
  max-height: 1080px;
  overflow: hidden;
}

.skl-section-hero-3.form.typ {
  max-width: none;
  min-height: 100vh;
  max-height: none;
}

.skl-section-hero-3.assessment {
  grid-row-gap: 80px;
  height: auto;
}

.div-block-3604 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.body-3 {
  font-family: Montserrat, sans-serif;
}

.section {
  z-index: 2;
  border-bottom-right-radius: 70px;
  border-bottom-left-radius: 70px;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  position: relative;
  box-shadow: 0 7px 30px 5px #202d6c1f;
}

.div-block-3605 {
  background-image: linear-gradient(120deg, var(--midnight-blue) 19%, var(--tomato) 76%, #ff5448);
  border-bottom-right-radius: 70px;
  width: 30%;
  height: 100%;
  min-height: auto;
  margin-left: auto;
  position: absolute;
  right: 0;
}

.text-span-27 {
  font-weight: 500;
}

.barra-carregamento {
  border: 1px solid var(--lavender);
  background-color: #f7f9fe;
  border-radius: 100px;
  width: 100%;
  height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.barra-carregamento.size {
  width: 70%;
}

.div-block-3606 {
  background-image: url('../images/lines-charge.svg'), linear-gradient(108deg, var(--midnight-blue), #ff5448);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  border-radius: 100px;
  width: 80%;
  height: 100%;
}

.logo.small {
  width: 120px;
  margin-bottom: 40px;
}

.logo.footer {
  width: 120px;
}

.section-3 {
  min-height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.container-63 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer-skills {
  background-color: var(--ghost-white);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 80px;
  display: flex;
}

.container-hero-form {
  z-index: 2;
  max-width: 990px;
  position: relative;
}

.lines-bkg {
  z-index: 1;
  width: 70%;
  margin-top: -52px;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.html-embed-34 {
  width: 600px;
}

.section-4 {
  border-bottom: 1px solid #e1e4f0;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding-left: 16px;
  padding-right: 24px;
  display: flex;
}

.image-314 {
  width: 110px;
}

.div-block-3607 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.container-64 {
  color: #fff;
  background-image: linear-gradient(315deg, #0f1a45, #212f6c 60%, #2d4a8c);
  border-radius: 16px;
  display: flex;
}

.section-5 {
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-5.mm {
  padding-top: 30px;
  padding-bottom: 30px;
}

.body-4 {
  font-family: Montserrat, sans-serif;
}

.headline-small {
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 125%;
}

.body-extra-large {
  opacity: .7;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
}

.button {
  background-color: #e76353;
  border-radius: 8px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.button.mt {
  margin-top: 64px;
}

.button.big {
  padding: 12px 24px;
  font-size: 16px;
}

.div-block-3608 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.div-block-3609 {
  flex: 1;
}

.image-315 {
  width: 220px;
}

.image-316 {
  margin-top: -24px;
}

.status {
  background-color: var(--tomato);
  border-radius: 100px;
  width: 10px;
  height: 10px;
}

.status-label {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.div-block-3610 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container-65 {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.body-medium {
  opacity: .7;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  line-height: 155%;
}

.div-block-3611 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  display: flex;
}

.slider-13 {
  background-color: #fff;
  border: 1px solid #f0f2fa;
  border-radius: 16px;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  box-shadow: 0 41px 50px 7px #2d4a8c1a;
}

.title-large {
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

.image-317 {
  object-fit: cover;
  border-radius: 100px;
  width: 50px;
  height: 50px;
}

.title-small {
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 145%;
}

.div-block-3612 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: stretch;
  padding: 28px;
  display: flex;
  overflow: hidden;
}

.image-318 {
  box-shadow: 0 9px 20px 2px var(--lavender);
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
  position: static;
}

.slide-nav {
  color: #0009;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  inset: auto 0% -15%;
}

.div-block-3608-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
  padding-left: 48px;
  display: flex;
}

.div-block-3613 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  opacity: 1;
  display: flex;
}

.image-319 {
  border-bottom-right-radius: 16px;
  margin-top: 32px;
}

.title-medium {
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

.container-65-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-64-copy {
  color: #3a4059;
  border: 1px solid #e1e4f0;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.div-block-3608-copy-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  display: flex;
}

.collection-list-wrapper {
  margin-top: 32px;
}

.right-arrow-8 {
  color: #999;
  inset: 0% -4.5% 0% auto;
}

.icon-32 {
  color: #fff;
  text-align: center;
  background-color: #e76353;
  border: 1px solid #f1f1f180;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  box-shadow: 0 7px 20px 1px #e7635369, 0 4px 10px -2px #00000047;
}

.left-arrow-9 {
  inset: 0% auto 0% -4.5%;
}

.div-block-3614 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  height: 50px;
  display: flex;
  overflow: hidden;
}

.collection-list-5 {
  display: flex;
}

.collection-item-4 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-3611-copy {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  width: 50%;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
}

.body-big {
  opacity: .7;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  line-height: 155%;
}

.body-big.expand {
  flex: 1;
}

.body-small {
  opacity: .7;
  letter-spacing: .2px;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 10px;
  line-height: 135%;
}

.mask-15 {
  border-radius: 16px;
}

.italic-text {
  color: var(--tomato);
}

.div-block-3621 {
  z-index: 10;
  filter: none;
  color: var(--white);
  cursor: pointer;
  background-image: url('../images/marcela-zaidem.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 12px;
  flex: 1;
  align-items: flex-end;
  height: 365px;
  text-decoration: none;
  transition: box-shadow .12s ease-in-out;
  display: flex;
  position: relative;
  box-shadow: 0 41px 50px 7px #2d4a8c1a;
}

.div-block-3621:hover {
  filter: brightness(130%);
  outline-color: var(--tomato);
  outline-offset: 0px;
  outline-width: 2px;
  outline-style: solid;
  box-shadow: 0 15px 50px 12px #0f1a454d;
}

.div-block-3621:visited {
  outline-width: 2px;
  outline-color: #e76353;
}

.div-block-3621._01 {
  background-image: url('../images/tallis.webp');
}

.div-block-3621._02 {
  background-image: url('../images/alfredo-soares.webp');
}

.div-block-3621._03 {
  background-image: url('../images/bruno-nardon.webp');
}

.div-block-3621._05 {
  background-image: url('../images/mariana-mello.webp');
}

.div-block-3621._06 {
  background-image: url('../images/marcelo-toledo.webp');
}

.div-block-3621._08 {
  background-image: url('../images/julian-tonioli-1..webp');
}

.div-block-3621._07 {
  background-image: url('../images/joao.webp');
}

.div-block-3622 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  display: flex;
}

.div-block-3617-copy {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: center;
  flex-direction: column;
  flex: 1;
  align-items: center;
  height: 30%;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: static;
  inset: auto 0% 0%;
}

.div-block-3623 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-image: none;
  border: 1px solid #e5e7f1;
  border-radius: 16px;
  flex-wrap: wrap;
  width: 100%;
  padding: 24px;
  display: none;
  position: relative;
}

.div-block-3624 {
  border-radius: 12px;
  flex: 1;
  min-width: 48%;
  display: flex;
  overflow: hidden;
}

.image-326 {
  flex: 1;
}

.div-block-3625 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 0;
  display: flex;
}

.close-course-grid {
  cursor: pointer;
  mix-blend-mode: luminosity;
  position: absolute;
  inset: 24px 16px auto auto;
}

.divider {
  border: 1px solid #e1e4f0;
  margin-top: 24px;
  margin-bottom: 12px;
}

.fs_modal-1_close {
  cursor: pointer;
  background-color: #f5f5f5;
  padding: 1.5rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.fs_modal-1_close:focus-visible, .fs_modal-1_close[data-wf-focus-visible] {
  outline-color: var(--accessible-components-dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_modal-1_cover {
  display: flex;
  position: absolute;
  inset: 0%;
}

.fs_modal-1_button {
  background-color: var(--accessible-components-dodger-blue);
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.fs_modal-1_button:focus-visible, .fs_modal-1_button[data-wf-focus-visible] {
  outline-color: var(--accessible-components-dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_modal-1_button-2 {
  background-color: var(--accessible-components-dodger-blue);
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.fs_modal-1_button-2:focus-visible, .fs_modal-1_button-2[data-wf-focus-visible] {
  outline-color: var(--accessible-components-dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_accordion-1_paragraph {
  opacity: .7;
  color: #3a4059;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
}

.fs_accordion-1_body {
  background-color: #fff;
  padding: 1rem 1.5rem;
}

.fs_accordion-1_content {
  overflow: hidden;
}

.fs_accordion-1_icon {
  margin-right: 0;
  font-size: 1.125rem;
  position: relative;
}

.fs_accordion-1_label {
  font-size: 18px;
  font-weight: 500;
}

.fs_accordion-1_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

.fs_accordion-1_header:focus-visible, .fs_accordion-1_header[data-wf-focus-visible] {
  outline-color: var(--accessible-components-dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_accordion-1_item {
  width: 100%;
}

.fs_accordion-1_embed {
  margin-bottom: 0;
}

.fs_accordion-1_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.container-67 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.div-block-3627 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-5-copy {
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
}

.container-64-copy-copy {
  color: #3a4059;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.button-copy {
  color: #e76353;
  background-color: #e763531a;
  border-radius: 8px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.div-block-3628 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-5-copy {
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-5-copy-copy {
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.div-block-3629 {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-3558 {
  text-align: center;
  width: 90%;
  min-width: 123px;
  min-height: 12px;
}

.div-block-3560 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.skl-paragraph-biggest-2 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 150%;
}

.container-54 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  min-height: 50vh;
  padding-top: 80px;
  display: flex;
}

.skl-heading-5-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
}

.skl-heading-5-2.mid-blue {
  color: #212f6c;
  overflow: visible;
}

.div-block-3562 {
  grid-column-gap: 16px;
  display: flex;
}

.div-block-3557 {
  text-align: center;
  width: 80%;
}

.skl-button-con-hero-3 {
  background-color: #e76353;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-con-hero-3:hover {
  background-color: #c25246;
  transform: translate(0, -2px);
}

.div-block-3559 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.html-embed-38 {
  flex: 1;
  min-height: 100%;
}

.container-53 {
  margin-bottom: -11dvh;
}

.image-328 {
  width: 414px;
  height: 100%;
  padding-bottom: 8px;
}

.div-block-3630 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  display: flex;
}

.skl-card-blue-2 {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  color: #fff;
  background-color: #212f6c;
  border: 1px solid #0f1a45;
  border-radius: 24px;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  transition: all .4s ease-in-out;
  display: flex;
  box-shadow: 0 24px 36px -15px #0f1a453d;
}

.div-block-3631 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  width: 45%;
  padding: 16px 16px 16px 8px;
  display: flex;
  position: relative;
}

.skl-heading-3-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

.skl-heading-3-2.center {
  text-align: center;
}

.skl-heading-3-2.center.bold {
  font-weight: 700;
}

.skl-heading-3-2.center.bold.text-blue {
  color: #212f6c;
}

.text-block-2109 {
  color: #2d4a8c;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 0;
  padding: 4px 8px;
  font-weight: 600;
}

.coral-2 {
  color: #e76353;
}

.skl-button-int-diagnostico-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 100px;
  align-items: center;
  height: 40px;
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-int-diagnostico-2:hover {
  color: #212f6c;
  background-color: #fff;
}

.skl-paragraph-biggest-3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 150%;
}

.skl-paragraph-biggest-3.text-16.center {
  text-align: center;
}

.div-block-3632 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.skl-paragraph-normal-2 {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 150%;
}

.skl-paragraph-normal-2.expand {
  flex: 1;
}

.skl-heading-3-5-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 130%;
}

.skl-heading-3-5-2.size {
  color: var(--midnight-blue);
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.skl-paragraph-big-2 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.skl-paragraph-big-2.medium {
  font-weight: 500;
}

.div-block-3634 {
  width: 60%;
}

.div-block-3634.grow {
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  width: 80%;
  display: flex;
}

.body-5 {
  background-color: #f3f5fb;
}

.div-block-3635 {
  border: 1px solid #00000014;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  min-width: 1050px;
  min-height: 715px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 40px -9px #0003;
}

.html-embed-39 {
  min-width: 100%;
}

.container-68 {
  justify-content: center;
  display: flex;
}

.button-2 {
  background-color: var(--tomato);
  color: #fff;
  text-align: center;
  border-top: 1px solid #ffffff2b;
  margin-top: -5px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
  box-shadow: 0 -10px 40px #0003;
}

.button-2:hover {
  background-color: #db5e4f;
}

.text-block-361 {
  z-index: 2;
  text-align: center;
  letter-spacing: 0;
  width: 940px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
}

.text-block-361.joruney {
  color: #fff;
  width: 850px;
}

.heading {
  color: #2e3b7b;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(129deg, #0f1a45 20%, #2e3b7b 55%, #0f1a45);
  -webkit-background-clip: text;
  background-clip: text;
  width: 790px;
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
}

.heading.journey {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  width: 650px;
}

.hero-journey {
  min-height: 90vh;
  display: flex;
  position: relative;
}

.hero-journey.fake-login {
  background-image: url('../images/bg-listras.svg');
  background-position: 50% 0;
  background-size: cover;
  min-height: 100vh;
}

.text-span-704 {
  font-weight: 600;
}

.container-309 {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 940px;
  display: flex;
  position: relative;
}

.image-826 {
  margin-bottom: 20px;
}

.html-embed-71 {
  width: 100%;
}

.html-embed-71.journey {
  width: 80%;
  margin-top: 20px;
}

.body-6 {
  font-family: Montserrat, sans-serif;
}

.bold-text {
  color: #fff;
}

.text-span-705 {
  color: var(--tomato);
}

.empresas-fixo {
  z-index: 10;
  background-color: #fff;
  border-bottom: 1px solid #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110px;
  padding-top: 20px;
  padding-bottom: 10px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.text-block-2115 {
  color: #0f1a4580;
  letter-spacing: 3px;
  font-weight: 600;
}

.logos-empresas {
  z-index: 2;
  flex-direction: row;
  justify-content: flex-start;
  width: 3500px;
  margin-top: 15px;
  display: flex;
  position: relative;
}

.image-335 {
  mix-blend-mode: multiply;
  width: 90px;
  margin-left: 25px;
  margin-right: 25px;
}

.div-block-3636 {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.div-block-3636.v2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.ancoragem-btn {
  position: absolute;
  inset: 0% 0% auto;
}

.container-310 {
  max-width: 940px;
}

.container-310.flex-horizontal {
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  display: flex;
}

.title-form {
  color: #0f1a45;
  text-align: center;
  border-bottom: 1px solid #a1b1ef33;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-weight: 600;
}

.hero-content-left {
  width: 50%;
  margin-right: auto;
}

.hero-content-left.center {
  flex-flow: column;
  width: 70%;
  margin-left: auto;
  display: flex;
}

.skl-paragraph-big-3 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.skl-paragraph-big-3.dark-blue {
  color: #0f1a45;
  line-height: 26px;
}

.hero-form {
  background-image: url('../images/skills-bkg.png'), radial-gradient(circle closest-corner, #fff, #f1f3fb);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  border-bottom: 2px solid #fff;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  min-height: auto;
  padding-top: 69px;
  padding-bottom: 65px;
  box-shadow: 0 12px 60px #a1b1ef26;
}

.hero-form.margin-top {
  margin-top: 110px;
}

.small {
  width: 120px;
}

.h1-grad {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(220deg, #0f1a45 38%, #e76353 63%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 800;
  line-height: 62px;
}

.h1-grad.size {
  text-align: center;
  font-size: 42px;
  line-height: 52px;
}

.text-span-142 {
  font-style: italic;
  font-weight: 400;
}

.html-embed-40._10 {
  margin-bottom: 0;
}

.form-div {
  background-image: linear-gradient(#fff, #ffffff8c);
  border: 2px solid #fff;
  border-radius: 20px;
  width: 45%;
  padding: 20px 33px;
  box-shadow: 3px 4px 30px #a1b1ef33;
}

.form-div.pop-up {
  background-color: #fff;
  background-image: none;
  width: 100%;
  padding-top: 29px;
  padding-bottom: 29px;
  position: relative;
  overflow: scroll;
}

.text-span-141 {
  color: #e76353;
}

.body-7 {
  font-family: Montserrat, sans-serif;
}

.v-deo-seciton {
  background-image: linear-gradient(157deg, #0f1a45 43%, #e76353);
  min-height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-313 {
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  display: flex;
}

.heading-105 {
  color: #e76353;
  text-align: center;
  line-height: 42px;
}

.heading-105.white {
  color: #fff;
  width: 650px;
  font-weight: 500;
}

.div-block-3638 {
  background-image: linear-gradient(#ffffff80, #fff3);
  border-radius: 20px;
  width: 80%;
  margin-top: 20px;
  padding: 10px;
}

.wrapper-video {
  border-radius: 20px;
  overflow: hidden;
}

.wrapper-video.mobile {
  display: none;
}

.image-341 {
  border-radius: 20px;
  height: 220px;
}

.div-block-3639 {
  width: auto;
  margin-left: auto;
}

.text-block-2119 {
  color: #fff;
  line-height: 24px;
}

.skl-paragraph-normal-3 {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 24px;
}

.skl-paragraph-normal-3.medium {
  font-weight: 500;
}

.skl-paragraph-normal-3.color {
  color: #0f1a45;
  line-height: 24px;
}

.div-block-3640 {
  grid-row-gap: 16px;
  flex-direction: column;
  width: 35%;
  height: 0;
  padding-top: 8px;
  padding-left: 0;
  display: flex;
  position: relative;
}

.skl-tabs-menu-dash-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 16px;
  display: flex;
}

.html-embed-42 {
  margin-bottom: -5px;
}

.heading-106 {
  color: #e76353;
  text-align: center;
  line-height: 42px;
}

.heading-106.size {
  width: 700px;
  font-weight: 500;
}

.skl-tab-panel-dash-2 {
  background-color: #f7f9ff;
  border: 1px solid #e1e4f0;
  border-radius: 16px;
  max-width: 500px;
  min-height: 350px;
  padding: 16px 16px 24px;
}

.cards-features-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-span-148 {
  color: #e76353;
}

.div-block-3641 {
  background-color: #0f1a45;
  border: 1px solid #fff;
  border-radius: 30px;
  align-items: center;
  width: auto;
  padding-left: 35px;
  padding-right: 35px;
  display: flex;
  box-shadow: 0 4px 20px #212f6c33;
}

.div-block-3641.padding {
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}

.tabs-6 {
  align-items: flex-end;
  margin-top: -24px;
  display: flex;
}

.text-span-144 {
  color: #e76353;
}

.skl-button-icon-primary-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  box-shadow: none;
  color: #0f1a45;
  background-color: #fff;
  border: 1px solid #f0f2fa;
  border-radius: 100px;
  align-items: center;
  height: 40px;
  padding: 8px 16px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.skl-button-icon-primary-2:hover {
  color: #212f6c;
  background-color: #f0f2fa;
  border-color: #e1e4f0;
}

.skl-button-icon-primary-2.w--current {
  color: #e76353;
  background-color: #fff;
  border-color: #e76353;
}

.text-block-2118 {
  color: #fff;
  width: 90%;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.div-block-3336-copy-2 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.div-block-3642 {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  margin-top: 20px;
  display: flex;
}

.container-314 {
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  display: flex;
}

.div-block-3643 {
  width: 50%;
  margin-top: 20px;
  margin-right: 20px;
}

.div-block-3643.no-margin {
  margin-top: 0;
}

.image-337 {
  height: 320px;
}

.image-339 {
  width: 468px;
  height: 100%;
}

.skl-card-white-3 {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  color: #4b5373;
  background-color: #fff;
  border: 1px solid #e1e4f0;
  border-radius: 24px;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding: 40px 32px;
  display: flex;
  box-shadow: 0 24px 36px -16px #0f1a453d;
}

.skl-card-white-3.new {
  background-color: #fff0;
  background-image: linear-gradient(346deg, #f1f3fb, #fff);
  border-color: #fff;
  padding: 24px;
}

.skl-card-white-3.new.align {
  align-items: flex-start;
  padding: 20px 35px;
}

.skl-heading-1-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 120%;
}

.skl-heading-1-2.skl-gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(315deg, #212f6c 38%, #e76353 75%);
  -webkit-background-clip: text;
  background-clip: text;
}

.skl-paragraph-bigger-2 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.skl-paragraph-bigger-2.medium {
  font-weight: 500;
}

.skl-paragraph-bigger-2.medium.text-blue {
  color: #4b5373;
}

.div-block-3644 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container-315 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-3342-copy-copy-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.btn-fixo {
  z-index: 10;
  background-image: linear-gradient(#0f1a4500, #0f1a45a6 65%, #0f1a45);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110px;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.text-block-2122 {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}

.image-827 {
  width: 450px;
}

.text-block-2123 {
  color: #fff;
  background-color: #e7635300;
  font-weight: 700;
}

.btn-fixo-popup {
  background-color: var(--tomato);
  text-transform: uppercase;
  cursor: pointer;
  mix-blend-mode: normal;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 18px 15px;
  font-size: 18px;
}

.modal-form {
  z-index: 20;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #3d3d3de8;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.div-block-3646 {
  z-index: 22;
  width: 700px;
  position: relative;
}

.div-block-3647 {
  z-index: 21;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  position: relative;
  overflow: scroll;
}

.image-828 {
  cursor: pointer;
  margin-top: 10px;
  margin-right: 10px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.section-6 {
  background-image: radial-gradient(circle at 0 0, #31509c, #111e4f 53%);
  justify-content: center;
  align-items: center;
  min-width: 100vw;
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.image-829 {
  z-index: 1;
  max-width: none;
  max-height: 20%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.container-316 {
  z-index: 2;
  flex-flow: column;
  align-items: center;
  display: flex;
  position: relative;
}

.container-316.skl-conference {
  align-items: stretch;
  width: 90%;
  max-width: 90%;
}

.image-830 {
  width: 120px;
}

.text-block-2124 {
  color: #fff;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
}

.text-block-2124.skl-conference {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
}

.text-block-2124.margin {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 120%;
}

.text-block-2124.sub {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 38px;
  font-style: italic;
  font-weight: 500;
}

.text-block-2124.size {
  text-align: center;
  max-width: 750px;
  margin-bottom: 20px;
  font-size: 38px;
}

.body-8 {
  font-family: Montserrat, sans-serif;
}

.text-block-2125 {
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 28px;
}

.text-block-2125.left {
  text-align: left;
}

.text-block-2125.left.small-test {
  font-size: 18px;
  line-height: 26px;
}

.text-block-2125.last {
  margin-bottom: 20px;
}

.text-block-2125.size {
  max-width: 700px;
}

.div-block-3648 {
  background-color: #ffffff0d;
  border: 1px solid #2d4b94;
  border-radius: 15px;
  width: 90%;
  margin-top: 40px;
  padding: 20px 20px 11px;
}

.div-block-3648.size {
  width: 50%;
  margin-top: auto;
  margin-bottom: auto;
  padding: 10px 0 0;
}

.div-block-3648.size.stroke {
  border-style: none;
  width: 90%;
  margin-top: 25px;
}

.div-block-3648.center {
  margin-left: auto;
  margin-right: auto;
}

.div-block-3648.center.stroke {
  background-color: #1c2958e6;
  border-style: none;
  width: 80%;
}

.text-block-2126 {
  color: var(--midnight-blue);
  font-size: 16px;
  font-weight: 600;
}

.body-9 {
  font-family: Montserrat, sans-serif;
}

.btn-video-modal {
  border: 1px solid var(--lavender);
  background-color: var(--white);
  cursor: pointer;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 8px 24px;
  display: flex;
}

.btn-video-modal:hover {
  background-color: var(--ghost-white-2);
}

.btn-video-modal.is-trackable {
  background-color: #fff;
  min-height: 48px;
}

.btn-video-modal.is-trackable.pma-skl {
  background-color: #fff0;
}

.modal-video {
  z-index: 1001;
  background-color: #1b1b1be6;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.video-skl {
  z-index: 1003;
  border-radius: 12px;
  width: 700px;
  position: relative;
  overflow: hidden;
}

.close-modal {
  z-index: 1002;
  cursor: auto;
  width: 100%;
  height: 100%;
  position: absolute;
}

.image-831 {
  z-index: 1003;
  opacity: .9;
  cursor: pointer;
  width: 20px;
  height: 20px;
  position: absolute;
  inset: 20px 20px auto auto;
}

.btn-skl {
  text-align: center;
  background-color: #e76353;
  border-radius: 10px;
  margin-bottom: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.btn-skl.form-dinamico {
  margin-top: 20px;
}

.btn-skl.form-dinamico.is-trackable, .btn-skl.form-dinamico.is-trackable.utm_track {
  display: inline-block;
}

.btn-skl.form-dinamico.is-trackable.utm_track.center {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.skl-paragraph-big-4 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.skl-paragraph-big-4.text-blue {
  color: #4b5373;
}

.skl-paragraph-big-4.text-blue.size {
  text-align: center;
  width: 100%;
}

.d-none {
  display: none;
}

.body-11 {
  font-family: Montserrat, sans-serif;
}

.div-block-4438 {
  border-bottom: 1px solid #fff3;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
  display: flex;
}

.div-block-4439 {
  width: 90%;
}

.text-span-709 {
  color: var(--tomato);
  letter-spacing: 3px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.div-block-4493 {
  border-bottom: 1px solid #fff3;
  justify-content: flex-start;
  align-items: center;
  margin-left: 22px;
  margin-right: 22px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-4493.last {
  border-bottom-style: none;
}

.image-1071 {
  width: 25px;
  height: 25px;
}

.text-block-2283 {
  color: var(--white);
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
}

.image-1072, .image-1073 {
  width: 25px;
  height: 25px;
}

.bold-text-2 {
  font-weight: 700;
  line-height: 22px;
}

.text-block-2285 {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
}

.div-block-4495 {
  background-color: var(--tomato);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-1074 {
  width: 30px;
  height: 30px;
}

.html-embed-72 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.text-span-710 {
  font-size: 18px;
  line-height: 28px;
}

.image-1075 {
  mix-blend-mode: normal;
  height: 60%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.image-1075.d-none {
  display: block;
}

.body-12 {
  font-family: Montserrat, sans-serif;
}

.container-330 {
  max-width: 940px;
}

.container-330.flex-horizontal {
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  display: flex;
}

.section-9 {
  background-image: linear-gradient(169deg, #0f1a45 18%, #e76353 99%);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.heading-119 {
  color: #1f2e6c;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.heading-119.center.size.type {
  color: #ffffffc2;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.carrosel-container {
  width: auto;
  min-width: 100%;
  max-width: none;
  margin-bottom: auto;
  padding-top: 10px;
  position: relative;
  overflow: hidden;
}

.div-block-4616 {
  background-color: #fff;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 95%;
  min-height: 85vh;
  margin-bottom: auto;
  padding: 20px 0;
  display: flex;
  position: relative;
}

.text-span-712 {
  font-weight: 700;
}

.bold-text-3 {
  font-weight: 900;
}

.logo-container {
  border: 1.5px solid #fff3;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  height: 55px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.logo-container.coral {
  opacity: .8;
  background-color: #010b2100;
  border-style: none;
  border-radius: 0;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: auto;
  min-width: 100%;
  height: auto;
  margin-top: 10px;
  padding: 10px;
  position: relative;
  overflow: visible;
}

.image-1147 {
  opacity: .32;
  width: 100%;
  position: absolute;
  inset: auto 0% 0%;
  transform: rotate(180deg);
}

.image-1148 {
  width: 120px;
  margin-bottom: 10px;
}

.logo-image {
  height: 20px;
}

.logo-image.size-2 {
  height: 15px;
}

.logo-image.size-3 {
  height: 25px;
}

.div-block-4619 {
  flex-flow: row;
  display: flex;
  position: static;
  overflow: hidden;
}

.body-13 {
  background-color: #0f0f0f;
}

.section-10 {
  background-image: url('../images/asset-hero-skills.svg'), linear-gradient(63deg, #0f1a45 35%, #212f6c 60%, #e76353);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-10.oferta {
  background-color: var(--midnight-blue);
  background-image: url('../images/oferta-asset.png'), linear-gradient(236deg, #0f1a45 32%, #212f6c 79%, #e7635369);
  background-position: 100%, 0 0;
  background-size: cover, auto;
}

.section-10.oferta.video {
  display: flex;
}

.section-10.typ {
  border-radius: 15px;
  width: 95%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 0;
}

.section-10.typ.alumni {
  background-image: linear-gradient(314deg, #0f1a45 35%, #212f6c 60%, #e76353);
  padding-bottom: 20px;
  overflow: hidden;
}

.section-10.typ.alumni.horizontal {
  flex-flow: row;
  justify-content: center;
}

.section-10.typ.alumni.horizontal.oferta {
  background-image: linear-gradient(34deg, #0f1a45 35%, #212f6c 60%, #e76353), linear-gradient(#0000, #0000);
  border-radius: 20px;
}

.section-10.typ.alumni.horizontal.oferta.pma-skl {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  padding: 40px 64px;
}

.section-10.typ.alumni.second {
  background-image: url('../images/criatvo-2-azul.png'), linear-gradient(328deg, var(--midnight-blue) 27%, #0f1a45 64%, #212f6c 91%, var(--dark-slate-blue));
  background-position: 50% 0, 0 0;
  background-size: cover, auto;
  border-radius: 0;
  width: 100%;
  padding-bottom: 0;
}

.section-10.typ.alumni.second._100 {
  background-image: linear-gradient(328deg, var(--midnight-blue) 27%, #0f1a45 64%, #212f6c 91%, var(--dark-slate-blue));
  min-height: 100vh;
  padding-top: 0%;
}

.section-10.none {
  display: none;
}

.noise-image {
  z-index: 2;
  opacity: .2;
  mix-blend-mode: color-burn;
  width: 100%;
  min-height: 200vh;
  position: absolute;
  inset: 0%;
}

.image-1149 {
  width: 100px;
  margin-bottom: 40px;
}

.image-1149.margin {
  width: 140px;
  margin-bottom: 0;
}

.container-331 {
  z-index: 10;
  position: relative;
}

.container-331.horizontal {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 940px;
  display: flex;
}

.container-331.horizontal.pma-skl {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1268px;
}

.container-331.typ {
  margin-top: auto;
  margin-bottom: auto;
}

.div-block-4620 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-4620.left {
  align-items: flex-start;
  margin-right: auto;
}

.div-block-4620.left.pma-skl {
  flex: 1;
}

.heading-120 {
  color: #fff;
  text-align: center;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.heading-120.size {
  max-width: 650px;
}

.heading-120.size.max {
  max-width: 700px;
  margin-top: 40px;
}

.heading-120.typ {
  max-width: 750px;
  line-height: 36px;
}

.body-14 {
  background-color: #f0f2fa;
  font-family: Montserrat, sans-serif;
}

.div-block-4621 {
  background-image: linear-gradient(#ffffff1a, #fff0);
  border-radius: 15px;
  width: auto;
  min-width: 300px;
  max-width: none;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 12px;
}

.div-block-4622 {
  border-radius: 15px;
  width: 100%;
  overflow: hidden;
}

.button-3 {
  background-color: var(--tomato);
  border-radius: 100px;
  padding: 17px 30px;
  font-size: 20px;
  font-weight: 700;
  transition: all .2s;
}

.button-3:hover {
  transform: translate(0, -4px);
  box-shadow: 0 14px 35px #03030342;
}

.button-3.center {
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.button-3.center:hover {
  box-shadow: 0 14px 35px #596cad45;
}

.button-3.center.oferta {
  color: #fff;
  text-align: center;
  background-color: #e76353;
  width: 100%;
  margin-top: 30px;
  font-size: 16px;
}

.button-3.center.oferta.popup {
  text-align: center;
  cursor: pointer;
  justify-content: center;
  display: none;
}

.button-3.center.oferta.popup.compra.is-trackable {
  display: flex;
}

.button-3.margin-top {
  margin-top: 20px;
}

.button-3.video {
  display: none;
}

.div-block-4623 {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

.div-block-4624 {
  width: 50%;
  position: sticky;
  top: 40px;
  bottom: 0;
}

.div-block-4625 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  width: 45%;
  display: flex;
  position: relative;
}

.section-11 {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.section-11.abertura {
  display: flex;
}

.section-11.abertura.video {
  display: none;
}

.heading-121 {
  color: #0f1a45;
  font-size: 24px;
  line-height: 32px;
}

.text-span-713 {
  color: var(--tomato);
}

.topics-icons {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.div-block-4627 {
  background-color: #f0f2fa80;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  box-shadow: 0 5px 11px #08123f33;
}

.image-1151 {
  width: 70%;
}

.text-block-2286 {
  color: var(--midnight-blue);
  font-size: 16px;
  line-height: 22px;
}

.line-topics {
  background-color: #2d4a8c45;
  width: 2px;
  height: 90%;
  position: absolute;
  inset: 5% auto 0% 6%;
}

.div-block-4628 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  display: flex;
  position: relative;
}

.paragraph-65 {
  color: var(--midnight-blue);
  width: auto;
  max-width: 380px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.text-span-714 {
  background-image: linear-gradient(108deg, var(--tomato) 29%, var(--midnight-blue));
  color: var(--white);
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
}

.image-1152 {
  opacity: .7;
  width: 80%;
  position: absolute;
  inset: auto 0% 0%;
}

.container-332 {
  z-index: 1;
  position: relative;
}

.container-332.center {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.section-12 {
  background-color: #fff;
  background-image: radial-gradient(circle at 30% 100%, #f0f2fa, #fbfcff 49%);
  min-height: 60vh;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-12.padding100 {
  padding-bottom: 100px;
}

.section-12.padding100.video {
  display: flex;
}

.section-12.video {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.section-12.video.bkg {
  background-image: none;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.text-block-2287 {
  color: var(--tomato);
  text-align: center;
  letter-spacing: 8px;
  font-size: 16px;
  font-weight: 300;
}

.text-block-2288 {
  color: var(--midnight-blue);
  text-align: center;
  max-width: 500px;
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
}

.text-block-2288.max-w {
  max-width: none;
}

.text-block-2288.max-w-2 {
  max-width: 600px;
}

.text-block-2288.max-w-2.left {
  text-align: left;
}

.div-block-4629 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-4629.left {
  align-items: flex-start;
  width: 55%;
  margin-right: auto;
  position: relative;
}

.div-block-4629._100 {
  width: 100%;
}

.div-block-4629.m-b {
  z-index: 10;
  margin-bottom: 40px;
  position: relative;
}

.slide-nav-45 {
  background-color: #f0f2fa;
  border-radius: 100px;
  width: 100px;
  padding-top: 12px;
  position: absolute;
  top: auto;
  bottom: -20%;
}

.slide-nav-45.white-bkg {
  background-color: #fff0;
  padding-top: 0;
  bottom: -15%;
}

.image-1153 {
  width: 30px;
}

.right-arrow-9 {
  justify-content: flex-end;
  align-items: center;
  width: 30px;
  height: 100%;
  margin-top: 0%;
  margin-bottom: 0;
  margin-right: -4%;
  display: flex;
  position: absolute;
  inset: auto 0% 0 auto;
}

.right-arrow-9._2 {
  margin-top: 0%;
  top: 0%;
}

.right-arrow-9.d-none {
  display: none;
}

.left-arrow {
  justify-content: flex-start;
  align-items: center;
  width: 30px;
  height: 100%;
  margin: 0% 0% 0 -4%;
  display: flex;
  position: absolute;
}

.left-arrow._2 {
  margin-top: 0%;
  top: 0%;
}

.left-arrow.d-none {
  display: none;
}

.slider-35 {
  background-color: #ddd0;
  height: 400px;
}

.slider-35.height {
  width: 100%;
  height: auto;
}

.slider-35.height.video {
  width: 100%;
}

.slider-35.height._33 {
  width: 33%;
}

.div-block-4630 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: var(--midnight-blue);
  background-color: #f6f7ff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 300px;
  padding: 20px;
  font-weight: 400;
  display: flex;
}

.div-block-4630.vertical {
  flex-flow: column;
  align-items: center;
  min-height: 450px;
}

.div-block-4631 {
  border-radius: 15px;
  width: 50%;
  overflow: hidden;
}

.div-block-4631._100 {
  width: 100%;
  margin-bottom: auto;
}

.div-block-4632 {
  width: 50%;
}

.div-block-4632._100 {
  width: 100%;
  margin-bottom: auto;
}

.text-block-2289 {
  background-color: #f0f2fa00;
  font-size: 20px;
  font-weight: 700;
}

.text-block-2290 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}

.paragraph-66 {
  font-size: 16px;
  line-height: 24px;
}

.div-block-4633 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-4633.flex-horizontal {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.section-13 {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.section-13.center.abertura.video, .section-13.abertura, .section-13.video {
  display: flex;
}

.container-333 {
  flex-flow: column;
  display: flex;
}

.container-333.button-margin {
  margin-top: 120px;
}

.container-333.size {
  width: 940px;
}

.image-1155 {
  height: 320px;
}

.image-1155.pma-skl {
  height: auto;
  margin-top: -48px;
  margin-bottom: -48px;
  padding-left: 80px;
}

.image-1156 {
  width: 468px;
  height: 100%;
}

.div-block-4635 {
  width: 50%;
  margin-top: 20px;
  margin-right: 20px;
}

.div-block-4635.no-margin {
  margin-top: 0;
}

.div-block-4635.no-margin.pma-skl {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
}

.div-block-4635.pma-skl {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  display: flex;
}

.skl-tabs-menu-dash-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 16px;
  display: flex;
}

.skl-paragraph-normal-4 {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 24px;
}

.skl-paragraph-normal-4.medium {
  font-weight: 500;
}

.skl-paragraph-normal-4.color {
  color: #0f1a45;
  line-height: 24px;
}

.div-block-4636 {
  background-color: #0f1a45;
  border: 1px solid #fff;
  border-radius: 30px;
  align-items: center;
  width: auto;
  padding-left: 35px;
  padding-right: 35px;
  display: flex;
  box-shadow: 0 4px 20px #212f6c33;
}

.div-block-4636.padding {
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-4636.padding.pma-skills {
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 32px 64px;
  overflow: hidden;
}

.div-block-4637 {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.div-block-4637.m-b {
  margin-bottom: 0;
}

.div-block-4638 {
  width: auto;
  margin-left: auto;
}

.html-embed-73 {
  margin-bottom: -5px;
}

.text-block-2291 {
  color: #fff;
  width: 90%;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.text-block-2291.pma-skl {
  text-align: left;
  width: auto;
  font-family: Montserrat GF, sans-serif;
  font-size: 40px;
  line-height: 120%;
}

.div-block-4639 {
  grid-row-gap: 16px;
  flex-direction: column;
  width: 35%;
  height: 0;
  padding-top: 8px;
  padding-left: 0;
  display: flex;
  position: relative;
}

.text-block-2292 {
  color: #fff;
  line-height: 24px;
}

.text-block-2292.pma-skl {
  text-align: left;
  width: auto;
  font-family: Montserrat GF, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.image-1157 {
  border-radius: 0;
  width: 110%;
  height: 220px;
}

.image-1157.size {
  border: 1px solid #c2c2c2;
  border-radius: 10px;
  width: auto;
  height: 220px;
}

.skl-tab-panel-dash-3 {
  background-color: #f7f9ff;
  border: 1px solid #e1e4f0;
  border-radius: 16px;
  max-width: 500px;
  min-height: 350px;
  padding: 16px 16px 24px;
}

.skl-card-white-4 {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  color: #4b5373;
  background-color: #fff;
  border: 1px solid #e1e4f0;
  border-radius: 24px;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding: 40px 32px;
  display: flex;
  box-shadow: 0 24px 36px -16px #0f1a453d;
}

.skl-card-white-4.new {
  background-color: #fff0;
  background-image: linear-gradient(346deg, #f1f3fb, #fff);
  border-color: #fff;
  padding: 24px;
}

.skl-card-white-4.new.align {
  align-items: flex-start;
  padding: 20px 35px;
}

.div-block-4640 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.div-block-4642 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  min-height: 500px;
  padding: 23px;
  display: flex;
  position: relative;
}

.div-block-4642.blue {
  background-color: var(--midnight-blue);
  border-radius: 20px;
  justify-content: center;
}

.image-1158 {
  flex: none;
  width: 22px;
  height: auto;
}

.div-block-4643 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-block-2293 {
  color: var(--midnight-blue);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.text-block-2293.white {
  z-index: 2;
  color: var(--white);
  position: relative;
}

.text-block-2294 {
  color: var(--midnight-blue);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.text-block-2294.white {
  color: var(--white);
}

.text-block-2294._16 {
  font-size: 16px;
}

.div-block-4644 {
  z-index: 2;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
  position: relative;
}

.image-1159 {
  position: absolute;
  inset: 0%;
}

.slide-33 {
  background-image: radial-gradient(circle at 100% 100%, #d7dfff, #f0f2fa 72%);
  border-radius: 20px;
  width: 49%;
  margin-left: .5%;
  margin-right: .5%;
  padding: 25px;
}

.image-1160 {
  width: 70px;
}

.image-1160.size-2 {
  width: 90px;
}

.paragraph-67 {
  color: var(--midnight-blue);
  line-height: 22px;
}

.image-1161 {
  border-radius: 100px;
  width: 50px;
  height: 50px;
}

.div-block-4645 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.text-block-2295 {
  color: var(--midnight-blue);
}

.div-block-4646 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.faixa-oferta {
  background-color: var(--tomato);
}

.faixa-oferta.video {
  justify-content: center;
  display: flex;
}

.text-block-2298 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 30px;
}

.container-334 {
  z-index: 3;
  min-width: 940px;
  position: relative;
}

.div-block-4647 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-4648 {
  width: 52%;
}

.div-block-4649 {
  background-image: linear-gradient(#ffffff0d, #ffffff14);
  border-radius: 20px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding: 20px 12px 12px;
  display: flex;
}

.image-1162 {
  width: 120px;
}

.heading-122 {
  color: #fff;
  max-width: none;
  margin-top: 60px;
  font-size: 30px;
  line-height: 42px;
}

.text-span-715 {
  background-image: linear-gradient(84deg, #e76353 10%, var(--midnight-blue) 87%);
  color: var(--ghost-white);
  letter-spacing: 0;
  border-radius: 100px;
  padding-left: 10px;
  padding-right: 10px;
}

.text-block-2299 {
  color: #fff;
  max-width: 300px;
  font-size: 16px;
  line-height: 24px;
}

.text-block-2300 {
  color: #fff;
  text-align: center;
  width: auto;
  max-width: 90%;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.div-block-4650 {
  background-color: #fff;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  padding: 20px 25px;
  display: flex;
}

.dropdown {
  background-color: #f0f2fa00;
  border: 1px solid #405bd2;
  border-radius: 100px;
  width: 100%;
  position: relative;
}

.dropdown:hover {
  box-shadow: 0 3px 14px #2440cf2e;
}

.dropdown:active {
  box-shadow: 0 2px 5px #0003;
}

.dropdown:focus {
  border-width: 1px;
}

.dropdown-toggle {
  cursor: pointer;
  background-color: #f0f2fa;
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 9px 15px 9px 25px;
  display: flex;
}

.dropdown-toggle.w--open {
  border-radius: 100px;
  box-shadow: 0 2px 9px #2d4cd633;
}

.licencas-selected {
  color: var(--midnight-blue);
  font-size: 18px;
  font-weight: 700;
}

.icon-34 {
  color: #405bd2;
  margin-left: auto;
  margin-right: 0;
  position: static;
}

.div-block-4651 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  margin-top: 30px;
  padding-left: 10px;
  display: flex;
}

.number {
  color: var(--midnight-blue);
}

.div-block-4652 {
  z-index: 1;
  background-image: radial-gradient(circle farthest-side at 100%, #212f6ccc 52%, #212f6c00);
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.dropdown-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #f0f2fa;
  border-radius: 20px;
  flex-flow: column;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  display: none;
  position: absolute;
}

.dropdown-list.w--open {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #f0f2fa;
  border: 1px solid #fff;
  border-radius: 15px;
  flex-flow: column;
  align-items: center;
  margin-top: 10px;
  padding: 13px 0;
  transition: all .2s;
  display: flex;
  box-shadow: 0 6px 11px #1a276212;
}

.licencas-select {
  color: var(--midnight-blue-2);
  cursor: pointer;
  background-color: #fff0;
  border: 1px #000;
  border-radius: 10px;
  width: 100%;
  padding-left: 15px;
  padding-right: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
}

.licencas-select:hover {
  background-color: #fdfdfd;
  font-weight: 700;
}

.text-block-2301 {
  color: #6e6e6e;
  text-align: center;
  width: 90%;
  max-width: 300px;
  margin-top: 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.div-block-4653 {
  flex-flow: column;
  align-items: center;
  width: 50%;
  display: flex;
}

.text-block-2203 {
  color: #fff;
  text-align: center;
  width: 90%;
  max-width: 500px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.text-block-2203.small {
  width: 50%;
}

.text-block-2203._10 {
  display: none;
}

.div-block-4345 {
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: auto;
  height: 100%;
  padding: 20px 10px 10px;
  display: flex;
  box-shadow: 5px 5px 18px 6px #0b227940;
}

.form-completo {
  width: 90%;
  overflow: scroll;
}

.modal-popup {
  z-index: 100;
  background-color: #fff0;
  background-image: linear-gradient(142deg, #19254752, #fff);
  align-items: center;
  min-width: 100vw;
  height: auto;
  min-height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-popup._10-licencas {
  background-color: #010b21d6;
  background-image: none;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.text-span-905 {
  width: 90%;
  font-weight: 700;
}

.div-block-4347 {
  z-index: 99;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-4346 {
  z-index: 100;
  background-color: #fff0;
  background-image: linear-gradient(58deg, #fafcff, #fffffff0);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 700px;
  height: auto;
  margin: auto;
  padding: 11px;
  display: flex;
  position: relative;
}

.div-block-4346.gemp {
  z-index: 101;
  background-image: linear-gradient(#ffffff1a, #ffffff26);
  border: 1px solid #ffffff3d;
  padding-top: 30px;
}

.image-1163 {
  opacity: .87;
  cursor: pointer;
  width: 25px;
  position: absolute;
  inset: 20px 20px auto auto;
}

.line {
  background-color: #ececec;
  background-image: none;
  border-radius: 5px;
  width: 4px;
  height: auto;
  margin-left: 20px;
  margin-right: 10px;
}

.div-block-4412 {
  width: 35%;
  position: relative;
}

.image-1041 {
  width: 65%;
}

.div-block-4413 {
  background-color: #fd807826;
  border-radius: 0;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 45px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.div-block-4413.first {
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  height: 50px;
}

.div-block-4413.first.blue {
  background-color: #152d8724;
}

.div-block-4413.blue {
  background-color: #152d8724;
  height: 45px;
}

.div-block-4413.big {
  display: none;
}

.div-block-4413.last {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  height: 50px;
}

.div-block-4416 {
  align-items: center;
  margin-left: 0;
  display: flex;
}

.text-block-2248 {
  color: #0f1a45;
  margin-right: auto;
  font-size: 14px;
  font-weight: 600;
}

.div-block-4418 {
  width: 50%;
}

.div-block-4410 {
  justify-content: center;
  margin-top: 0;
  padding-bottom: 40px;
  display: flex;
}

.div-block-4409 {
  background-image: linear-gradient(#f7f6f7, #fff);
  border: 2px solid #fff;
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  box-shadow: 0 -12px 30px -3px #3333331a;
}

.div-block-4417 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: center;
  height: auto;
  margin-left: 10px;
  display: flex;
}

.div-block-4415 {
  flex-direction: column;
  margin-left: 0;
  display: flex;
}

.div-block-4415.blue {
  margin-top: 50px;
  margin-bottom: 50px;
}

.text-block-2247 {
  color: #ff5448;
  text-align: right;
  font-size: 30px;
  font-weight: 800;
  line-height: 42px;
  position: sticky;
  top: 25px;
}

.text-block-2247.blue {
  color: #0f1a45;
  margin-top: 0;
  font-size: 24px;
  line-height: 32px;
  top: 120px;
}

.text-block-2247.blue.mobile {
  display: none;
}

.text-block-2247.sieze {
  color: var(--tomato);
  font-size: 25px;
  position: sticky;
  top: 120px;
  bottom: 0;
}

.text-block-2247.sieze.mobile {
  display: none;
}

.div-block-4419 {
  height: 23%;
  position: relative;
}

.div-block-4419.vn {
  height: 25%;
  position: relative;
}

.div-block-4419.cl {
  height: 5%;
  margin-top: 100px;
}

.div-block-4419._2 {
  height: 17%;
  margin-top: 30px;
}

.div-block-4419._2.mg {
  height: 22%;
  margin-top: 60px;
}

.div-block-4419._2.ge {
  height: 27%;
  margin-top: 60px;
}

.div-block-4419._2.i {
  height: 11%;
  margin-top: 60px;
}

.div-block-4414 {
  background-color: #ff5448;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  display: flex;
  box-shadow: 0 2px 8px #ff5448c9;
}

.div-block-4414.blue {
  background-color: #152d87;
  box-shadow: 0 2px 8px #163dce78;
}

.text-span-906 {
  color: var(--tomato);
}

.text-block-2328 {
  color: #10193f;
  text-align: left;
  max-width: 600px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.text-block-2328.white {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
}

.section-15 {
  background-color: var(--midnight-blue);
  background-image: url('../images/desktop.webp');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.section-15.video {
  display: flex;
}

.text-block-2329 {
  color: #fff;
  text-align: left;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  position: relative;
}

.image-1164 {
  width: 150px;
  position: absolute;
  inset: -11% auto auto -11%;
}

.image-1165 {
  width: 100px;
}

.container-335 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-16 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-16.video {
  display: none;
}

.code-embed {
  border-radius: 20px;
  width: 100%;
}

.container-336 {
  position: relative;
}

.container-338 {
  max-width: 940px;
}

.slide-34 {
  min-height: 300px;
}

.slide-34._33 {
  width: 32%;
  min-height: 450px;
  margin-left: .5%;
  margin-right: .5%;
}

.desk, .open-cursos-div {
  display: none;
}

.section-header {
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.pagination {
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-339 {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
  padding-left: 60px;
  padding-right: 60px;
}

.slider-list {
  display: flex;
}

.slider-navigation {
  cursor: pointer;
  transition: opacity .2s;
}

.slider-navigation:hover {
  opacity: .7;
}

.slider-navigation.next-slide {
  width: 30px;
  margin-left: 0;
  margin-right: auto;
}

.slider-navigation.prev-slide {
  width: 30px;
  margin-left: auto;
  margin-right: 0;
}

.slider-item {
  border: 1px #727272;
  border-radius: 25px;
  flex: none;
  width: 25vw;
  height: auto;
  margin-right: 32px;
  overflow: hidden;
}

.slide-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.slide-link-block {
  color: #fff;
  cursor: auto;
  align-items: flex-end;
  width: 100%;
  height: 37vw;
  padding: 24px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.div-block-4655 {
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-block-2330 {
  background-color: var(--tomato);
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  border: 1px solid #ffffff3d;
  border-radius: 100px;
  margin-bottom: 15px;
  padding: 3px 9px;
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
}

.headline-pitch {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.headline-pitch.pitch {
  display: none;
}

.headline-pitch.pitch-copy {
  display: flex;
}

.headline-abertura {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.headline-abertura.video {
  display: none;
}

.headline-abertura.typ {
  margin-bottom: 40px;
}

.headline-abertura.typ.alumni {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.headline-abertura.typ.alumni.pma-skl {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
}

.body-15 {
  font-family: Montserrat, sans-serif;
}

.image-1174 {
  width: 100px;
}

.container-340 {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.section-18 {
  padding-top: 60px;
  padding-bottom: 20px;
}

.section-18.alumni {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section-18.alumni._2 {
  padding-top: 0;
  padding-bottom: 0;
}

.heading-123 {
  color: var(--midnight-blue-2);
  text-align: center;
  max-width: 610px;
  margin-top: 40px;
  font-size: 26px;
}

.text-block-2331 {
  color: var(--midnight-blue);
  text-align: center;
  max-width: 800px;
  font-size: 16px;
  line-height: 22px;
}

.bold-text-5 {
  line-height: 24px;
}

.div-block-4657 {
  background-image: linear-gradient(90deg, var(--midnight-blue), var(--dark-slate-blue));
  border-radius: 10px;
  width: 95%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-bottom: 14px;
}

.div-block-4657.margin {
  margin-top: 0;
}

.div-block-4657.margin.alumni {
  background-image: linear-gradient(248deg, var(--midnight-blue) 67%, var(--tomato));
}

.div-block-4657.margin.alumni._100 {
  background-image: linear-gradient(248deg, var(--midnight-blue) 44%, var(--tomato));
  border-radius: 0;
  width: 100%;
  margin-bottom: 60px;
}

.div-block-4657.margin.alumni.second {
  background-color: #e76353;
  background-image: none;
  border-radius: 0;
  width: 100%;
}

.text-block-2332 {
  color: #fff;
  text-align: center;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
}

.text-block-2332.caps {
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.text-block-2333 {
  color: #fff;
  text-align: center;
  max-width: 650px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.text-block-2333.blue {
  color: var(--midnight-blue);
  max-width: none;
}

.text-block-2333.blue.max {
  max-width: 500px;
}

.text-block-2333.blue.m-t {
  margin-top: 40px;
}

.text-block-2333.blue.big {
  font-size: 18px;
  line-height: 28px;
}

.div-block-4658 {
  width: 50%;
  margin-top: 60px;
}

.video {
  display: none;
}

.div-block-4659 {
  cursor: pointer;
  background-color: #fff;
  margin-bottom: 10px;
  padding: 8px;
}

.div-block-4660 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.div-block-4663 {
  background-color: #fff;
}

.text-span-908 {
  font-size: 24px;
  line-height: 32px;
}

.text-size-medium-sf1-3 {
  color: #667085;
  text-align: left;
  flex: 0 auto;
  font-family: Lato, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.text-size-medium-sf1-3.text-color-black {
  color: #101828;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.bold-text-551 {
  color: #0f1a45;
}

.container-421 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1280px;
  padding: 40px 24px;
  display: block;
}

.container-421.mobile {
  padding-bottom: 0;
  padding-left: 80px;
  padding-right: 80px;
}

.container-421.mobile.center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.faq1-5_answer-2 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.accordion-icon {
  color: #0385ce;
  justify-content: center;
  align-items: center;
  height: 1rem;
  margin-left: 1rem;
  display: flex;
}

.faq-online-item-3 {
  border: 1px solid #0f1a4521;
  border-radius: 15px;
}

.faq-online-item-3.pma-skills-faq-none {
  display: none;
}

.margin-bottom-2 {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-2.margin-small {
  margin-bottom: 40px;
}

.text-block-2516 {
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  padding-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.text-block-2516.blue {
  color: #142453;
  margin-bottom: 24px;
  line-height: 32px;
}

.text-block-2516.blue.pma-skl {
  font-size: 40px;
  line-height: 120%;
}

.section-241 {
  background-color: #f0f2fa;
  margin-top: 0;
}

.faq-online-5 {
  flex-direction: column;
  width: 80%;
  display: flex;
}

.faq-online-5.pma-skl {
  width: 80%;
}

.text-size-regular-sf1-11 {
  color: #0f1a45;
  text-align: left;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.faq1-5_question-11 {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.text-span-909 {
  color: var(--tomato);
  font-size: 18px;
  font-weight: 700;
}

.bold-text-554 {
  color: var(--tomato);
}

.text-span-910 {
  font-style: italic;
  font-weight: 500;
}

.section-242 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.background-video-3 {
  background-color: #00000036;
  background-image: linear-gradient(37deg, #0f1a45e6, #0f1a45cc 50%, #e76353cc);
  width: 100%;
  min-height: 90vh;
  position: absolute;
  inset: 0%;
}

.image-1175 {
  opacity: .58;
  width: 100vw;
  height: 90vh;
}

.image-1176 {
  width: 120px;
}

.body-16 {
  background-color: #f4f6fb;
  font-family: Montserrat, sans-serif;
}

.heading-124 {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 80px;
  font-weight: 800;
  line-height: 80px;
}

.heading-125 {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 80px;
  font-weight: 400;
  line-height: 80px;
}

.container-422 {
  z-index: 3;
  flex-flow: column;
  align-items: center;
  width: 90%;
  max-width: 1100px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: relative;
}

.div-block-4664 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.text-block-2517 {
  background-color: var(--tomato);
  color: #fff;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 20px;
  font-weight: 700;
}

.div-block-4665 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.text-block-2518 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.div-block-4666 {
  z-index: 3;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #0b153b57;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 9px;
  display: flex;
  position: relative;
}

.text-block-2519 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.div-block-4667 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-1177 {
  width: 25px;
}

.text-block-2520 {
  color: var(--midnight-blue);
  text-align: center;
  letter-spacing: 3px;
  font-weight: 500;
}

.section-243 {
  z-index: 3;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.section-243.bkg {
  background-color: #fff;
}

.text-block-2521 {
  background-image: linear-gradient(90deg, var(--tomato), var(--midnight-blue));
  text-align: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.text-block-2521.color {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 0;
}

.container-423 {
  z-index: 3;
  flex-flow: column;
  align-items: center;
  width: 90%;
  max-width: 1100px;
  display: flex;
  position: relative;
}

.div-block-4668 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.div-block-4669 {
  border-radius: 15px;
  width: 65%;
  overflow: hidden;
}

.div-block-4670 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.div-block-4671 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff6;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 10px 14px 14px;
  display: flex;
}

.image-1178 {
  width: 40px;
}

.text-block-2522 {
  color: #212f6c;
  font-size: 18px;
  font-weight: 700;
}

.image-1179 {
  width: auto;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-1179._100 {
  width: 100%;
  height: auto;
  inset: 0%;
  overflow: hidden;
}

.section-244 {
  background-color: #08173e;
  padding-top: 80px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

.section-244.no-padding {
  padding-top: 0;
}

.image-1180 {
  width: 100%;
  position: absolute;
  inset: 0%;
}

.container-424 {
  z-index: 3;
  flex-flow: row;
  max-width: 1100px;
  margin-right: auto;
  display: flex;
  position: relative;
}

.container-424.size {
  max-width: 100%;
}

.div-block-4672 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  align-items: flex-end;
  width: 45%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: 20px;
  padding-right: 0;
  display: flex;
}

.div-block-4673 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-1181 {
  width: 45px;
}

.text-block-2523 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.text-block-2524 {
  color: #fff;
  line-height: 22px;
}

.div-block-4674 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.div-block-4675 {
  z-index: 3;
  border-radius: 25px;
  width: 90%;
  max-width: 1100px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.video-2 {
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.div-block-4676 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 20px;
  display: flex;
}

.image-1182 {
  max-width: 300px;
}

.div-block-4677 {
  background-image: linear-gradient(12deg, var(--midnight-blue), var(--tomato) 80%);
  border-radius: 10px;
  width: 600px;
  max-width: none;
  margin-top: 100px;
  padding: 12px 0;
}

.div-block-4677.margin {
  background-image: linear-gradient(90deg, var(--midnight-blue), var(--tomato) 80%);
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.div-block-4678 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 0 19px;
  display: flex;
}

.div-block-4678.bkf {
  background-color: #f4f6fc;
}

.image-1183 {
  width: 40px;
}

.div-block-4679 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-bottom: 1px solid #8f8f8f38;
  border-radius: 0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 11px;
  padding-bottom: 11px;
  display: flex;
}

.text-block-2525 {
  color: var(--midnight-blue-2);
  font-size: 16px;
}

.section-245 {
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 80px;
  display: flex;
}

.image-1184 {
  width: 100px;
}

.div-block-4680 {
  width: 60%;
  position: static;
}

.image-1185 {
  z-index: 2;
  width: 100%;
  position: relative;
}

.div-block-4681 {
  opacity: .6;
  filter: blur(50px);
  background-image: radial-gradient(circle farthest-side at 0 100%, #07153d, #e763539c);
  width: 50%;
  height: 200px;
  margin-top: -200px;
}

.text-span-1073 {
  color: #f3554a;
}

.image-1134 {
  width: 40px;
  height: 40px;
  transition: transform .2s;
}

.image-1134:hover {
  width: 40px;
  height: 40px;
  transform: scale(1.1);
}

.text-block-2335 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.div-block-4587 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.nav-agenda {
  width: 90%;
  max-width: 90%;
}

.nav-agenda.fix-nav {
  width: 100%;
  max-width: 100%;
}

.nav-agenda.fix-nav.new {
  z-index: 10;
  background-color: #010b21;
  flex-flow: row;
  justify-content: space-around;
  align-items: stretch;
  height: 50px;
  padding: 0 65px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 2px 50px -1px #ffffff26;
}

.nav-agenda.fix-nav.new.bottom {
  z-index: 10000;
  opacity: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #010b21c2;
  background-image: linear-gradient(160deg, #0f1a45ad 51%, #e76353cc);
  height: auto;
  padding-top: 25px;
  padding-bottom: 20px;
  inset: auto 0% 0%;
  box-shadow: 0 -2px 30px 10px #9aa2fd1c;
}

.nav-agenda.fix-nav.new.bottom.d-none {
  display: none;
}

.div-block-4586 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px #fffc;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.text-span-1074 {
  font-size: 18px;
}

.bold-text-555 {
  font-size: 31px;
  line-height: 120%;
}

.bold-text-555.pma-skill-typograph {
  font-size: 18px;
}

.text-span-1075 {
  font-size: 14px;
  font-style: italic;
}

.body-17 {
  padding-bottom: 40px;
  font-family: Montserrat, sans-serif;
}

.image-1186 {
  width: 120px;
  margin-bottom: 20px;
}

.text-block-2526 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  max-width: 800px;
  font-size: 40px;
  font-weight: 900;
  line-height: 55px;
}

.text-block-2526.blue {
  color: var(--midnight-blue);
  letter-spacing: 0;
  font-size: 30px;
  line-height: 45px;
}

.text-block-2526.blue.big {
  font-size: 35px;
}

.text-block-2526.left {
  text-align: left;
  text-transform: none;
}

.text-block-2526.left.pma-skl {
  max-width: none;
  font-family: Montserrat, sans-serif;
  font-size: 39px;
  font-weight: 700;
  line-height: 120%;
}

.text-span-1076 {
  color: var(--tomato);
}

.div-block-4682 {
  flex-flow: column;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.div-block-4682.m-t {
  max-width: 700px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.text-span-1077 {
  font-size: 18px;
  font-weight: 600;
}

.text-span-1078 {
  text-decoration: underline;
}

.image-1187 {
  cursor: pointer;
  width: 25px;
  margin-top: 40px;
}

.section-246 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-246.padding {
  padding-bottom: 0;
}

.container-425 {
  z-index: 10;
  flex-flow: column;
  align-items: center;
  max-width: 1000px;
  display: flex;
  position: relative;
}

.text-span-1079 {
  text-decoration: underline;
}

.section-247 {
  background-color: #fbfcff;
  flex-flow: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.text-span-1080 {
  text-decoration: underline;
}

.bold-text-556 {
  color: var(--tomato);
  font-size: 24px;
}

.image-1188 {
  width: 20px;
}

.div-block-4683 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.text-block-2527 {
  color: #fff;
}

.bold-text-557 {
  font-size: 16px;
}

.div-block-4684 {
  background-color: #ffffff24;
  border-radius: 20px;
  padding: 8px;
}

.div-block-4684.pma-skl {
  background-color: #0000;
  flex: 1;
  height: 100%;
  margin-left: 64px;
}

.div-block-4685 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: linear-gradient(#0f1a45, #2540ab);
  border-radius: 15px;
  flex-flow: column;
  align-items: center;
  padding-top: 47px;
  padding-bottom: 47px;
  display: flex;
}

.div-block-4686 {
  grid-column-gap: 10px;
  justify-content: center;
  display: flex;
}

.div-block-4687 {
  align-self: flex-end;
}

.text-block-162 {
  color: #fff;
  font-size: 30px;
  line-height: 32px;
}

.text-block-163 {
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  align-self: center;
  font-size: 110px;
  font-weight: 800;
  line-height: 100px;
}

.image-1189 {
  width: 70%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.text-block-2528 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
}

.link-block-14 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #f05d49;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding: 13px 36px;
  text-decoration: none;
  display: flex;
}

.link-block-14.desk {
  margin-top: 40px;
}

.link-block-14.desk.hero.compra {
  justify-content: center;
}

.link-block-14.desk.hero.compra.m-t {
  margin-top: 0;
}

.text-block-2922 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.image-1482 {
  width: 20px;
}

.image-1483 {
  width: 120px;
}

.image-1484 {
  opacity: .07;
  position: absolute;
  inset: auto 0% 33%;
}

.image-1484.depoimento {
  bottom: 66%;
}

.text-block-2923 {
  color: #fff;
  text-align: center;
  max-width: 650px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 26px;
}

.text-span-1081 {
  color: var(--tomato);
}

.text-span-1082 {
  color: var(--tomato);
  font-size: 28px;
}

.text-span-1083 {
  font-size: 36px;
  line-height: 46px;
}

.text-span-1084 {
  color: var(--tomato);
}

.text-span-1085 {
  font-weight: 800;
}

.div-block-4688 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.italic-text-2 {
  font-size: 28px;
}

.image-1485 {
  z-index: 2;
  max-width: 300px;
  position: relative;
}

.div-block-4689 {
  z-index: 10;
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: auto;
  display: flex;
  position: relative;
}

.meta-aaset {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  width: 150px;
  position: absolute;
  top: 68%;
  left: 26%;
}

.meta-aaset._2 {
  width: 90px;
  top: 32%;
  left: 28%;
}

.meta-aaset._3 {
  z-index: 3;
  width: 120px;
  top: 11%;
  left: 61%;
}

.meta-aaset._4 {
  width: 50px;
  top: 51%;
  left: 65%;
}

.play-asset {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  width: 150px;
  position: absolute;
  top: 68%;
  left: 26%;
}

.play-asset._2 {
  width: 90px;
  top: 32%;
  left: 28%;
}

.play-asset._3 {
  width: 120px;
  top: 11%;
  left: 61%;
}

.play-asset._4 {
  z-index: 3;
  width: 50px;
  top: 51%;
  left: 65%;
}

.bandeira-asset {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  width: 150px;
  position: absolute;
  top: 68%;
  left: 26%;
}

.bandeira-asset._2 {
  z-index: 3;
  width: 90px;
  top: 32%;
  left: 28%;
}

.bandeira-asset._3 {
  width: 120px;
  top: 11%;
  left: 61%;
}

.bandeira-asset._4 {
  width: 50px;
  top: 51%;
  left: 65%;
}

.pilula-asset {
  z-index: 3;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  width: 150px;
  position: absolute;
  top: 68%;
  left: 26%;
}

.pilula-asset._2 {
  width: 90px;
  top: 32%;
  left: 28%;
}

.pilula-asset._3 {
  width: 120px;
  top: 11%;
  left: 61%;
}

.pilula-asset._4 {
  width: 50px;
  top: 51%;
  left: 65%;
}

.image-1486 {
  width: 90%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
}

.text-span-1086 {
  font-weight: 900;
}

.text-span-1087 {
  color: var(--tomato);
}

.text-block-2924 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.div-block-4690 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.marquee-horizontal-5 {
  z-index: 10;
  background-color: #000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.marquee-horizontal-5.top {
  background-color: #fe6350;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.marquee-horizontal-css {
  background-color: #000;
}

.track-horizontal {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.marquee-text {
  color: #f75d10;
  letter-spacing: 8px;
  text-transform: uppercase;
  flex: none;
  margin-right: 0;
  font-size: 12px;
  font-weight: 600;
}

.marquee-text.online {
  color: #fff;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
}

.container-426 {
  width: 100%;
  max-width: none;
}

.section-248 {
  background-image: radial-gradient(circle closest-corner at 50% 50%, var(--white) 30%, #fff0), url('../images/modo_de_isolamento.svg'), linear-gradient(180deg, var(--white), var(--ghost-white));
  background-position: 0 0, 50%, 0 0;
  background-size: auto, cover, auto;
}

.container-427 {
  width: 90%;
  max-width: 1268px;
}

.div-block-4691 {
  padding-top: 160px;
  padding-bottom: 100px;
}

.div-block-4692 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.container-428 {
  width: 90%;
  max-width: 1268px;
}

.div-block-4693 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.container-429 {
  width: 90%;
  max-width: 1268px;
}

.div-block-4694 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-4695 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-4696 {
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
}

.div-block-4697 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.div-block-4698 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.div-block-4699 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-4699.pma-skl {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  padding-bottom: 100px;
}

.text-span-1088, .text-span-1089, .text-span-1090, .text-span-1091, .text-span-1092, .text-span-1093, .text-span-1094, .text-span-1095, .text-span-1096, .text-span-1097 {
  font-weight: 700;
}

.text-span-1098 {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

.div-block-4700 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-span-1099 {
  font-weight: 600;
}

.div-block-4701 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.text-block-2925 {
  font-size: 16px;
}

.text-block-2925.pma-skl {
  color: #fff;
  font-family: Montserrat, sans-serif;
  line-height: 150%;
}

.text-span-1100, .text-span-1101, .text-span-1102 {
  color: var(--tomato);
}

.text-block-2926 {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.div-block-4702 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.text-span-1103, .text-span-1104 {
  color: var(--tomato);
}

.image-1487 {
  width: 30%;
}

.image-1488 {
  width: 24%;
}

.image-1489, .image-1490 {
  width: 30%;
}

.list-item {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.list-item-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-4705 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.div-block-4706 {
  display: none;
}

.text-span-1105 {
  color: #e76353;
}

@media screen and (min-width: 1280px) {
  .skl-cta-container {
    max-width: 70vw;
  }

  .video-embed {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .html-embed-33 {
    min-width: 500px;
  }

  .container-316.skl-conference {
    width: 80%;
  }

  .bold-text-551, .bold-text-552, .bold-text-553 {
    -webkit-text-stroke-color: var(--midnight-blue);
  }

  .div-block-4675 {
    margin-top: 100px;
  }
}

@media screen and (min-width: 1440px) {
  ._60 {
    max-width: 40%;
  }

  .skl-section-default.center {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .skl-heading-3.bold.mid-blue.big {
    font-size: 52px;
  }

  .tabs {
    width: 1100px;
  }

  .slider-12.pma-skl {
    display: none;
  }

  .div-block-3375.width {
    width: 90%;
  }

  .skl-cta-list-copy.v2.gap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .html-embed-33 {
    min-width: 500px;
  }

  .section {
    min-height: 90vh;
  }

  .div-block-3605 {
    width: 35%;
    min-height: 90vh;
  }

  .container-hero-form {
    max-width: 1000px;
  }

  .text-block-361 {
    font-size: 22px;
    line-height: 32px;
  }

  .text-block-361.joruney {
    font-size: 20px;
  }

  .div-block-3636.v2 {
    width: 95%;
  }

  .container-310.flex-horizontal {
    justify-content: space-between;
    max-width: 1100px;
  }

  .hero-content-left {
    width: 50%;
    margin-right: auto;
  }

  .hero-content-left.center {
    width: 700px;
  }

  .h1-grad {
    width: 90%;
  }

  .h1-grad.size {
    width: 100%;
  }

  .form-div {
    width: 40%;
  }

  .image-827 {
    width: 500px;
  }

  .image-829 {
    max-height: 35%;
  }

  .container-316.skl-conference {
    width: 1200px;
    max-width: 1200px;
  }

  .text-block-2125.left.small-test {
    margin-top: 24px;
  }

  .div-block-4438 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .div-block-4439 {
    flex-flow: column;
    display: flex;
  }

  .image-1075.d-none {
    height: 50%;
  }

  .container-330.flex-horizontal {
    justify-content: space-between;
    max-width: 1100px;
  }

  .section-10.oferta {
    min-height: 80vh;
  }

  .section-10.typ.alumni.horizontal.oferta {
    min-height: auto;
  }

  .heading-120.size.max {
    max-width: 800px;
  }

  .div-block-4623 {
    margin-bottom: 60px;
  }

  .container-332.center {
    max-width: 1100px;
  }

  .section-12.padding100 {
    padding-bottom: 120px;
  }

  .slider-35 {
    width: 90%;
  }

  .slider-35._100 {
    width: 100%;
  }

  .container-333 {
    max-width: 1100px;
  }

  .container-333.size {
    width: 1100px;
    max-width: 1100px;
  }

  .div-block-4637 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .slide-33 {
    width: 49%;
  }

  .container-334 {
    min-width: 1100px;
    max-width: 1100px;
  }

  .text-block-2301 {
    max-width: none;
  }

  .div-block-4412 {
    width: 35%;
  }

  .container-336, .container-337, .container-338 {
    max-width: 1100px;
  }

  .slider-item {
    width: 20vw;
  }

  .slide-link-block {
    height: 30vw;
  }

  .div-block-4658 {
    max-width: 700px;
  }

  .container-421 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-1180 {
    margin-top: -5%;
  }

  .container-424 {
    max-width: 1200px;
  }

  .image-1181 {
    width: 55px;
  }

  .text-block-2523 {
    font-size: 18px;
  }

  .text-block-2524 {
    font-size: 16px;
  }

  .div-block-4680 {
    height: auto;
  }

  .div-block-4681 {
    opacity: .37;
    height: 300px;
    margin-top: -300px;
  }

  .nav-agenda.fix-nav.new.bottom {
    padding-top: 20px;
  }

  .bold-text-555 {
    font-size: 39px;
  }

  .text-block-2923 {
    max-width: 800px;
    font-size: 18px;
    line-height: 28px;
  }

  .text-span-1083 {
    font-size: 42px;
    line-height: 52px;
  }

  .image-1486 {
    max-width: none;
  }

  .text-block-2924 {
    width: 72%;
  }

  .div-block-4690 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: center;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1920px) {
  .skl-heading-3.bold.mid-blue.width {
    width: 90%;
  }

  .div-block-3375.width {
    width: 100%;
  }

  .html-embed-33 {
    min-width: 500px;
  }

  .section {
    min-height: 80vh;
  }

  .div-block-3605 {
    width: 40%;
    min-height: auto;
  }

  .barra-carregamento {
    width: 90%;
  }

  .container-hero-form {
    max-width: 1100px;
  }

  .heading {
    width: 700px;
    font-size: 32px;
  }

  .heading.journey {
    width: 800px;
  }

  .hero-journey.fake-login {
    background-size: cover;
  }

  .container-310.flex-horizontal {
    max-width: 1200px;
  }

  .hero-content-left {
    width: 45%;
  }

  .image-1075.d-none {
    height: 40%;
  }

  .container-330.flex-horizontal {
    max-width: 1200px;
  }

  .section-10.oferta {
    min-height: 70vh;
  }

  .section-10.typ.alumni.second._100 {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .container-331.horizontal {
    width: auto;
  }

  .line-topics {
    background-color: #2d4a8c45;
  }

  .slide-nav-45 {
    padding-top: 12px;
  }

  .section-15 {
    min-height: 70vh;
  }

  .slider-item {
    width: 21vw;
  }

  .slide-link-block {
    height: 31vw;
  }

  .div-block-4658 {
    max-width: 700px;
  }

  .section-243 {
    overflow: hidden;
  }

  .image-1179._100 {
    height: auto;
  }

  .image-1180 {
    margin-top: -8%;
  }

  .container-424 {
    max-width: 1300px;
  }

  .container-424.size {
    max-width: 90%;
  }

  .div-block-4672 {
    margin-top: 80px;
  }

  .div-block-4675 {
    max-width: 1300px;
    margin-top: 140px;
  }

  .div-block-4680 {
    width: 50%;
  }

  .div-block-4681 {
    border-radius: 5px;
  }

  .track-horizontal {
    font-size: 16px;
  }

  .marquee-text {
    letter-spacing: 9px;
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  ._60 {
    max-width: 100%;
  }

  .container {
    justify-content: space-between;
  }

  .navbar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .skl-nav-link {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .skl-nav-link.hide-mobile {
    display: none;
  }

  .skl-button-primary.skl-button-con-mentor {
    flex: none;
  }

  .skl-section-default {
    padding-left: 24px;
    padding-right: 24px;
  }

  .skl-section-default.skl-margin-normal.skl-bg-grey.skl-lines.nav {
    padding-top: 120px;
  }

  .div-block-3325.pma-skl {
    width: 100%;
  }

  .skl-card.netflix {
    height: auto;
  }

  .skl-description.small.white.size {
    width: auto;
  }

  .div-block-3330 {
    width: 70%;
  }

  .skl-card-grey.size {
    width: 90%;
  }

  .skl-heading-6 {
    font-size: 14.5455px;
  }

  .skl-heading-5 {
    font-size: 17.1429px;
  }

  .skl-heading-4 {
    font-size: 21.3333px;
  }

  .skl-heading-4.bold.white.adp {
    font-size: 20px;
  }

  .skl-heading-3 {
    font-size: 26.6667px;
  }

  .skl-heading-3.bold.mid-blue.width {
    width: 80%;
    font-size: 32px;
  }

  .skl-heading-3.bold.mid-blue.width.big {
    width: auto;
  }

  .skl-heading-3.bold.mid-blue.pma-skl {
    text-align: center;
    font-size: 40px;
  }

  .skl-heading-3.bold.mid-blue.mobile {
    width: auto;
  }

  .skl-heading-2 {
    font-size: 30px;
  }

  .skl-heading-1 {
    font-size: 32px;
  }

  .skl-paragraph-big {
    text-align: center;
  }

  .skl-paragraph-big.text-blue.is-trackable.pma-pma-skl {
    font-size: 12px;
  }

  .skl-paragraph-biggest.medium.text-blue.hide-mobile {
    display: none;
  }

  .skl-paragraph-normal.semibold.text-blue.is-trackable.pma-skl.pma-pma-skl {
    font-size: 12px;
  }

  .div-block-3335 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-wrap: wrap;
  }

  .tabs {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .skl-tabs-menu-trilha {
    justify-content: center;
    margin-top: 10px;
  }

  .div-block-3336 {
    width: 80%;
  }

  .skl-card-white.small.login {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    text-align: center;
    justify-content: center;
  }

  .skl-card-white.small.center {
    justify-content: center;
    box-shadow: 0 4px 36px -16px #0f1a453d;
  }

  .tabs-2 {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }

  .div-block-3337 {
    width: 80%;
    height: auto;
  }

  .div-block-3338 {
    width: 70%;
  }

  .div-block-3339 {
    width: 80%;
  }

  .div-block-3341 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-3342 {
    width: 80%;
  }

  .div-block-3346 {
    width: 60%;
  }

  .div-block-3348.silvia, .div-block-3348.rafella {
    min-width: 48px;
    min-height: 48px;
  }

  .skl-footer.pma-skl {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .skl-footer-columm {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-items: center;
  }

  .div-block-3352.pma-skl {
    justify-content: center;
    align-items: center;
  }

  .div-block-3354 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column-reverse;
  }

  .skl-footer-list {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    display: none;
  }

  .skl-footer-list.pma-skl {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 0;
    display: flex;
  }

  .skl-footer-list.pma-skl.pma-mobile {
    display: none;
  }

  .icon-30 {
    color: var(--midnight-blue-2);
  }

  .div-block-3356 {
    flex-direction: column;
  }

  .div-block-3357 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-3336-copy {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .div-block-3358 {
    flex-direction: column;
  }

  .div-block-3336-copy {
    align-items: flex-start;
    width: 100%;
  }

  .div-block-3359.lp-b {
    width: 90%;
  }

  .div-block-3367 {
    display: flex;
  }

  .div-block-3370 {
    width: 80%;
  }

  .div-block-3341-copy {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .div-block-3372 {
    padding-top: 24px;
  }

  .skl-cta-screen {
    background-image: linear-gradient(to bottom, var(--ghost-white), var(--ghost-white) 55%, transparent 55%), linear-gradient(315deg, var(--midnight-blue-2) 13%, var(--tomato) 44%);
    padding-bottom: 56px;
    padding-left: 24px;
    padding-right: 24px;
    position: absolute;
    inset: 0%;
    overflow: scroll;
  }

  .div-block-3374 {
    flex: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-3375.alt {
    min-width: 70%;
  }

  .skl-cta-exit {
    padding-top: 24px;
  }

  .div-block-3376.hide-mobile {
    display: none;
  }

  .menu-button-2 {
    order: 1;
  }

  .menu-button-2.w--open {
    background-color: var(--ghost-white);
    border-radius: 8px;
  }

  .div-block-3384 {
    justify-content: center;
    align-items: center;
  }

  .div-block-3385.v2 {
    flex-direction: column;
  }

  .background-video-2 {
    flex: 1;
    justify-content: center;
    align-self: stretch;
    align-items: center;
  }

  .div-block-3397 {
    display: flex;
  }

  .text-style-gradient {
    font-size: 32px;
  }

  .div-block-3346-copy {
    width: 60%;
  }

  .div-block-3402 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    display: flex;
  }

  .skl-button-con-hero, .skl-button-con-header {
    display: flex;
  }

  .skl-button-con-trilhaspersonalizadas.hide-mobile {
    display: none;
  }

  .skl-button-con-trilhaspersonalizadas.hide-desktop, .skl-button-con-conteudos {
    display: flex;
  }

  .skl-button-con-conteudos.hide-mobile {
    display: none;
  }

  .skl-button-con-numeros {
    display: flex;
  }

  .skl-div-social-cta.hide-mobile {
    display: none;
  }

  .skl-div-social-cta.hide-desktop._80-transparency {
    align-items: center;
    display: flex;
  }

  .skl-section-hero-lp {
    padding-bottom: 64px;
  }

  .div-block-3383-copy {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .div-block-3387-copy.grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .skl-card-investir {
    min-width: 24%;
  }

  .skl-card-lp {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 32px 16px 16px;
  }

  .display-skl-card-lp {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .skl-card-lp-container {
    height: 270px;
  }

  .div-block-3410 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .div-block-3347-copy {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .skl-glass {
    align-items: center;
  }

  .lottie-animation {
    width: 300px;
    height: auto;
  }

  .container-11 {
    margin-top: 40px;
  }

  .skl-cta-section {
    background-image: linear-gradient(to bottom, var(--ghost-white), var(--ghost-white) 55%, transparent 55%), linear-gradient(315deg, var(--midnight-blue-2) 13%, var(--tomato) 44%);
    height: auto;
    min-height: 100dvh;
    padding: 24px;
  }

  .skl-cta-container {
    max-width: none;
    height: 85dvh;
  }

  .skl-cta-div {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: column;
    align-items: center;
  }

  .skl-cta-list-copy.hide-mobile {
    display: none;
  }

  .skl-heading-3-5 {
    font-size: 21.3333px;
  }

  .new-item {
    padding: 16px 16px 24px;
  }

  .new-nome {
    text-align: left;
  }

  .new---right-arrow, .new---left-arrow {
    display: flex;
  }

  .new-info {
    justify-content: flex-start;
    padding: 16px 16px 24px;
  }

  .new-course-img {
    margin-top: 3dvh;
  }

  .skl-button-mentor {
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
  }

  .slide-28 {
    width: 32.4%;
  }

  .div-block-3416 {
    border-radius: 12px;
    width: 40px;
    height: 40px;
  }

  .div-block-3417 {
    margin-top: 16px;
  }

  .div-block-3418 {
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    align-items: stretch;
  }

  .skl-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-3422 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .heading-102 {
    font-size: 2.7rem;
  }

  .body {
    overflow: visible;
  }

  .div-block-3427 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .container-46 {
    max-width: 90%;
  }

  .body-2 {
    overflow: visible;
  }

  .div-block-3429 {
    min-width: 60%;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .skl-cta-div-copy {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: column;
    align-items: center;
  }

  .skl-cta-div-copy.v2 {
    flex-direction: column-reverse;
  }

  .video-embed {
    width: 100%;
  }

  .skl-card-white-2.small.center {
    justify-content: center;
  }

  .skl-card-white-2.small.center.full {
    border-radius: 14px;
    padding: 10px;
  }

  .div-block-3437.lp-b {
    width: 90%;
  }

  .icon-31 {
    color: #212f6c;
  }

  .div-block-3440 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    display: flex;
  }

  .container-49.v2.margin-top {
    margin-top: 48px;
  }

  .menu-button-3 {
    order: 1;
  }

  .menu-button-3.w--open {
    background-color: #f0f2fa;
    border-radius: 8px;
  }

  .text-style-gradient-2 {
    font-size: 32px;
  }

  .div-block-3442 {
    width: 80%;
  }

  .div-block-3443 {
    flex-direction: column;
  }

  .html-embed-33 {
    min-width: 100%;
  }

  .fs_modal-2_popup-5 {
    display: none;
  }

  .fs_modal-2_wrapper-6 {
    grid-template-columns: 1fr;
  }

  .fs_modal-2_component-3 {
    justify-items: center;
  }

  .fs_modal-2_content-2 {
    max-height: 92vh;
    padding: 24px 16px;
    overflow: auto;
  }

  .text-style-gradient-3 {
    font-size: 32px;
  }

  .section {
    flex-direction: column;
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .div-block-3605 {
    border-bottom-left-radius: 70px;
    width: 100%;
    height: 100px;
    min-height: auto;
    margin-top: auto;
    margin-left: 0;
    bottom: 0;
  }

  .div-block-3605.d-none {
    display: none;
  }

  .barra-carregamento {
    width: 80%;
    margin-bottom: 0;
  }

  .container-63 {
    z-index: 2;
    max-width: 90%;
    position: relative;
  }

  .container-hero-form {
    max-width: 90%;
  }

  .lines-bkg {
    width: 100%;
    margin-top: -63px;
    display: block;
  }

  .headline-small {
    font-size: 20px;
  }

  .body-extra-large {
    font-size: 15px;
  }

  .div-block-3608 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .image-315 {
    width: 150px;
  }

  .div-block-3608-copy {
    padding-left: 32px;
  }

  .container-65-copy {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .div-block-3621 {
    height: 250px;
  }

  .div-block-3617-copy {
    height: 50%;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .skl-heading-5-2 {
    font-size: 17.1429px;
  }

  .menu-button-4 {
    order: 1;
  }

  .menu-button-4.w--open {
    background-color: #f0f2fa;
    border-radius: 8px;
  }

  .skl-button-con-hero-3 {
    display: flex;
  }

  .icon-33 {
    color: #212f6c;
  }

  .html-embed-38 {
    border: 1px solid #0000000f;
  }

  .div-block-3630 {
    flex-direction: column;
  }

  .div-block-3631 {
    width: 80%;
  }

  .skl-heading-3-2 {
    font-size: 26.6667px;
  }

  .div-block-3633 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .skl-heading-3-5-2 {
    font-size: 21.3333px;
  }

  .div-block-3634 {
    width: 70%;
  }

  .div-block-3634.grow {
    width: 100%;
  }

  .text-block-361 {
    text-align: center;
    width: 90%;
    line-height: 28px;
  }

  .text-block-361.joruney {
    width: 95%;
  }

  .heading {
    width: 100%;
  }

  .heading.journey {
    width: 95%;
  }

  .container-309 {
    width: 90%;
    max-width: 90%;
  }

  .html-embed-71.journey {
    width: 90%;
  }

  .div-block-3636.v2 {
    margin-top: 10px;
  }

  .container-310.flex-horizontal {
    flex-direction: column;
    max-width: 90%;
  }

  .hero-content-left {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .hero-content-left.center {
    width: 100%;
  }

  .hero-form.margin-top {
    background-position: 50%, 0 0;
    border-bottom-right-radius: 70px;
    border-bottom-left-radius: 70px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .small {
    margin-left: auto;
    margin-right: auto;
  }

  .h1-grad {
    text-align: center;
    width: 75%;
  }

  .h1-grad.size {
    text-align: left;
    width: 100%;
  }

  .form-div {
    width: 100%;
    margin-top: 20px;
  }

  .form-div.pop-up {
    margin-top: 0;
  }

  .container-313 {
    max-width: 90%;
  }

  .heading-105.white, .div-block-3638 {
    width: 100%;
  }

  .image-341 {
    width: 100%;
    height: auto;
    margin-top: 10px;
  }

  .div-block-3639 {
    justify-content: center;
    align-items: center;
    margin-right: auto;
    display: flex;
  }

  .div-block-3640 {
    width: 100%;
    height: auto;
  }

  .skl-tabs-menu-dash-2 {
    width: 60%;
  }

  .heading-106.size {
    width: 90%;
  }

  .div-block-3641 {
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .tabs-6 {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }

  .div-block-3336-copy-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .container-314 {
    max-width: 90%;
  }

  .div-block-3643, .div-block-3643.no-margin {
    width: 100%;
  }

  .image-337 {
    width: 80%;
    height: auto;
  }

  .skl-card-white-3.new {
    padding-left: 35px;
    padding-right: 35px;
  }

  .skl-card-white-3.new.align {
    flex-direction: column;
    padding: 20px 35px;
  }

  .skl-heading-1-2 {
    font-size: 32px;
  }

  .div-block-3342-copy-copy-2 {
    width: 80%;
  }

  .image-827, .div-block-3646 {
    width: 90%;
  }

  .section-6 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .image-829 {
    opacity: .4;
    max-height: 35%;
  }

  .container-316 {
    max-width: 90%;
  }

  .text-block-2124 {
    text-align: center;
  }

  .div-block-3648.size.stroke {
    z-index: 2;
    width: 100%;
    margin-top: 40px;
    position: relative;
  }

  .div-block-3648.center.stroke {
    z-index: 2;
    width: 100%;
    position: relative;
  }

  .video-skl {
    width: 90%;
  }

  .btn-skl.form-dinamico.is-trackable.utm_track.center {
    margin-left: 0;
  }

  .skl-paragraph-big-4.text-blue.size {
    text-align: left;
  }

  .div-block-4438 {
    flex-flow: column;
  }

  .div-block-4439 {
    width: 100%;
  }

  .image-1075.d-none {
    display: block;
  }

  .container-330.flex-horizontal {
    flex-direction: column;
    max-width: 90%;
  }

  .section-9 {
    padding-bottom: 40px;
  }

  .div-block-4616 {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .logo-container.coral {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    min-width: 100%;
  }

  .section-10.oferta {
    background-position: 100%, 0 0;
  }

  .section-10.typ.alumni.horizontal.oferta {
    padding-top: 20px;
  }

  .section-10.typ.alumni.second._100 {
    padding-top: 0%;
  }

  .container-331.horizontal {
    flex-flow: column;
  }

  .container-331.horizontal.pma-skl {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .container-331.typ {
    margin-top: auto;
  }

  .div-block-4620.left {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
  }

  .heading-120, .heading-120.typ, .div-block-4621 {
    max-width: 90%;
  }

  .div-block-4623 {
    flex-flow: column;
    align-items: center;
  }

  .div-block-4624 {
    width: 90%;
    position: static;
  }

  .div-block-4625 {
    width: 70%;
    margin-top: 20px;
  }

  .section-11 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading-121 {
    text-align: center;
  }

  .line-topics {
    left: 5%;
  }

  .paragraph-65 {
    text-align: center;
    max-width: 90%;
  }

  .container-332.center {
    max-width: 90%;
  }

  .section-12 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-12.padding100, .section-12.video.bkg {
    padding-bottom: 100px;
  }

  .text-block-2288 {
    max-width: 70%;
  }

  .div-block-4629 {
    width: 100%;
  }

  .div-block-4629.left {
    width: 80%;
  }

  .slide-nav-45.white-bkg.d-none {
    display: block;
  }

  .image-1153 {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #ffffff8a;
    border-radius: 100px;
    width: 25px;
  }

  .right-arrow-9 {
    margin-right: -1%;
  }

  .right-arrow-9.d-none {
    display: flex;
  }

  .left-arrow {
    margin-left: -1%;
  }

  .left-arrow.d-none {
    display: flex;
  }

  .div-block-4630 {
    padding: 10px;
  }

  .text-block-2289 {
    font-size: 18px;
  }

  .text-block-2290 {
    font-size: 16px;
  }

  .paragraph-66 {
    font-size: 14px;
    line-height: 22px;
  }

  .div-block-4633 {
    width: 100%;
  }

  .div-block-4633.flex-horizontal {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .section-13 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-333 {
    max-width: 90%;
  }

  .image-1155 {
    width: 80%;
    height: auto;
  }

  .image-1155.pma-skl {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-4635, .div-block-4635.no-margin {
    width: 100%;
  }

  .div-block-4635.no-margin.pma-skl {
    justify-content: center;
    align-items: center;
  }

  .div-block-4635.pma-skl {
    flex-flow: column;
  }

  .skl-tabs-menu-dash-3 {
    width: 60%;
  }

  .div-block-4636 {
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .div-block-4637 {
    margin-top: 40px;
  }

  .div-block-4638 {
    justify-content: center;
    align-items: center;
    margin-right: auto;
    display: flex;
  }

  .text-block-2291.pma-skl {
    text-align: center;
  }

  .div-block-4639 {
    width: 100%;
    height: auto;
  }

  .text-block-2292.pma-skl {
    text-align: center;
  }

  .image-1157 {
    width: 100%;
    height: auto;
    margin-top: 10px;
  }

  .skl-card-white-4.new {
    padding-left: 35px;
    padding-right: 35px;
  }

  .skl-card-white-4.new.align {
    flex-direction: column;
    padding: 20px 35px;
  }

  .div-block-4640 {
    flex-flow: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-4642 {
    width: 100%;
    min-height: auto;
  }

  .div-block-4642.blue {
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: hidden;
  }

  .div-block-4642.first {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-block-2293 {
    text-align: center;
  }

  .image-1159 {
    width: auto;
    height: 100%;
    inset: auto;
  }

  .container-334 {
    min-width: 90%;
    max-width: 90%;
  }

  .div-block-4647 {
    flex-flow: column;
  }

  .div-block-4648 {
    flex-flow: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .div-block-4649 {
    width: 90%;
  }

  .heading-122 {
    text-align: center;
  }

  .text-block-2299 {
    text-align: center;
    max-width: none;
  }

  .div-block-4652 {
    background-image: radial-gradient(circle farthest-side at 100%, #212f6ccc 20%, #212f6c00);
    width: 100%;
  }

  .text-block-2301 {
    max-width: none;
  }

  .div-block-4653 {
    width: 100%;
  }

  .line {
    margin-left: 10px;
    margin-right: 10px;
  }

  .div-block-4412 {
    width: 35%;
  }

  .div-block-4413, .div-block-4413.first, .div-block-4413.first.blue, .div-block-4413.blue {
    width: 30px;
  }

  .div-block-4417 {
    align-items: flex-start;
    width: 80%;
  }

  .text-block-2247.blue, .text-block-2247.sieze {
    font-size: 24px;
    line-height: 30px;
  }

  .div-block-4414, .div-block-4414.blue {
    width: 20px;
    height: 20px;
  }

  .section-15 {
    overflow: hidden;
  }

  .image-1164 {
    width: 120px;
    left: -3%;
  }

  .container-336, .container-338 {
    max-width: 90%;
  }

  .slide-34._33 {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }

  .div-block-4654 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .desk {
    display: inline;
  }

  .desk-display, .text-span-907 {
    display: none;
  }

  .slider-item {
    width: 33vw;
  }

  .slide-link-block {
    height: 49vw;
  }

  .heading-123, .text-block-2331 {
    max-width: 90%;
  }

  .text-block-2332 {
    letter-spacing: 3px;
    font-size: 16px;
  }

  .text-block-2333 {
    max-width: 90%;
  }

  .bold-text-551 {
    line-height: 41px;
  }

  .container-421 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .container-421.mobile {
    padding-left: 40px;
    padding-right: 40px;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-block-2516 {
    text-align: left;
    flex: none;
    margin-right: 0;
    padding: 0;
    display: flex;
    position: static;
  }

  .text-block-2516.blue.pma-skl {
    text-align: center;
  }

  .section-241 {
    margin-top: 0;
  }

  .faq-online-5, .faq-online-5.pma-skl {
    width: 100%;
  }

  .div-block-4668 {
    flex-flow: column;
  }

  .div-block-4669 {
    width: 100%;
  }

  .div-block-4670 {
    z-index: 2;
    width: 100%;
    position: relative;
  }

  .div-block-4671 {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .image-1179 {
    width: 100%;
    height: auto;
  }

  .container-424.size {
    flex-flow: column;
    max-width: 90%;
  }

  .div-block-4672 {
    z-index: 2;
    width: 100%;
    margin-top: -39px;
    margin-right: auto;
    position: relative;
  }

  .div-block-4677, .div-block-4677.margin, .div-block-4680 {
    width: 100%;
  }

  .bold-text-555 {
    text-align: center;
  }

  .text-block-2526.blue {
    max-width: 100%;
  }

  .text-block-2526.left {
    margin-bottom: 20px;
  }

  .text-block-2526.left.pma-skl {
    margin-bottom: 0;
  }

  .container-425 {
    max-width: 90%;
  }

  .div-block-4684 {
    width: 100%;
    margin-top: 40px;
  }

  .div-block-4684.pma-skl {
    flex-flow: column;
    margin-top: 0;
    margin-left: 0;
    padding: 0;
    display: flex;
  }

  .div-block-4686 {
    grid-column-gap: 8px;
  }

  .text-block-163 {
    font-size: 100px;
  }

  .link-block-14.desk {
    display: flex;
  }

  .link-block-14.desk.hero {
    display: none;
  }

  .link-block-14.desk.hero.compra {
    display: flex;
  }

  .meta-aaset._3 {
    left: 67%;
  }

  .play-asset._4 {
    left: 72%;
  }

  .bandeira-asset._2 {
    left: 18%;
  }

  .pilula-asset {
    left: 14%;
  }

  .marquee-horizontal-5 {
    z-index: 10;
  }

  .div-block-4695 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-4696 {
    justify-content: center;
    align-items: center;
  }

  .div-block-4700 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .div-block-4703 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .div-block-4704 {
    display: none;
  }

  .div-block-4705 {
    flex-flow: column;
    display: flex;
  }

  .div-block-4706 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .skl-section-default.skl-margin-normal.skl-bg.skl-lines {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .skl-buttons-duo.center {
    align-self: center;
  }

  .container-2.mas-w {
    max-width: 95%;
  }

  .skl-card {
    flex: 1;
    min-width: 45%;
    max-width: 45%;
  }

  .skl-card.netflix, .skl-card.pma-card {
    min-width: 100%;
    max-width: 100%;
  }

  .div-block-3326 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .div-block-3327.max-w {
    max-width: 90%;
  }

  .skl-description.small.white {
    color: var(--ghost-white);
  }

  .div-block-3329.no-white {
    padding-left: 0;
    padding-right: 0;
  }

  .skl-section-hero {
    background-position: 0 0, 100%, 0 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-3330, .skl-card-grey.size {
    width: 100%;
  }

  .skl-svg-60 {
    width: 50px;
    height: 50px;
  }

  .div-block-3333.gap {
    grid-column-gap: 0px;
  }

  .skl-heading-5.pma-skills.pma-kl, .skl-heading-4.bold.mid-blue.center {
    font-size: 31px;
  }

  .skl-heading-4.bold.mid-blue.center.pma-skl {
    font-size: 30px;
  }

  .skl-heading-3.bold.mid-blue.mobile.center-text {
    font-size: 24px;
  }

  .skl-heading-3.bold.mid-blue.width {
    width: 100%;
    line-height: 42px;
  }

  .skl-heading-3.bold.mid-blue.width.big {
    font-size: 32px;
  }

  .skl-heading-3.bold.mid-blue.big {
    font-size: 38px;
  }

  .skl-heading-3.bold.mid-blue.pma-skl {
    font-size: 31px;
  }

  .skl-paragraph-biggest.text-16.pma-skl {
    font-size: 16px;
  }

  .tabs {
    margin-left: -16px;
    margin-right: -16px;
  }

  .skl-tabs-menu-trilha {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .skl-card-white.small.center {
    box-shadow: 0 5px 36px -16px #0f1a4578;
  }

  .skl-card-white.small.center.pma-sk {
    padding: 32px 16px;
  }

  .skl-tab-panel-dash {
    width: 100%;
    min-height: 100%;
  }

  .div-block-3341 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .slider-11 {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .div-block-3346 {
    justify-content: center;
    align-items: center;
    width: 50vw;
    margin-bottom: 0;
    display: flex;
  }

  .div-block-3350 {
    width: 100%;
  }

  .div-block-3342-copy-copy {
    width: 75%;
  }

  .skl-footer-list.pma-skl.pma-mobile {
    display: none;
  }

  .tabs-content {
    width: 100%;
    min-width: 100%;
  }

  .div-block-3370 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    width: 75%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .right-arrow-6.right {
    justify-content: flex-end;
    align-items: center;
  }

  .mask-11 {
    width: 100%;
  }

  .left-arrow-7.left {
    justify-content: flex-start;
  }

  .mask-12 {
    width: 50%;
  }

  .slider-12 {
    margin-top: 24px;
    display: flex;
  }

  .slider-12.pma-skl {
    width: 100%;
    display: none;
  }

  .skl-cta-screen {
    background-image: linear-gradient(to bottom, var(--ghost-white), var(--ghost-white) 63%, transparent 63%), linear-gradient(315deg, var(--midnight-blue-2) 13%, var(--tomato) 44%);
    padding: 24px;
    overflow: auto;
  }

  .div-block-3374 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-3374.center.auto-margin {
    width: 100%;
    margin-bottom: 35px;
  }

  .div-block-3375.alt {
    min-width: 100%;
  }

  .div-block-3375.vertical {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column-reverse;
    align-items: center;
  }

  .div-block-3375.width {
    width: 100%;
  }

  .image-231 {
    width: 100%;
    height: 290px;
  }

  .skl-logo-dep {
    width: 100px;
  }

  .div-block-3396 {
    justify-content: flex-start;
  }

  .text-style-gradient.pma-text.pma-skl {
    font-size: 40px;
  }

  .div-block-3346-copy {
    justify-content: center;
    align-items: center;
    width: 50vw;
    margin-bottom: 0;
    display: flex;
  }

  .skl-button-con-hero, .skl-button-con-conteudos, .skl-button-con-numeros {
    display: flex;
  }

  .skl-container-logos-cta {
    flex-wrap: wrap;
  }

  .skl-div-social-cta.hide-desktop {
    display: flex;
  }

  .skl-div-social-cta.hide-desktop._80-transparency {
    opacity: .8;
    align-items: center;
  }

  .skl-div-logos-cta-img {
    height: 20px;
  }

  .skl-section-hero-lp {
    background-position: 0 0, 100%, 0 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-3383-copy {
    flex-direction: column;
  }

  .skl-card-investir {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    flex: 1;
    min-width: 100%;
    max-width: 100%;
  }

  .skl-card-lp {
    width: 100%;
    min-width: 100%;
  }

  .display-skl-card-lp {
    flex-direction: column;
  }

  .skl-card-lp-container {
    height: 350px;
  }

  .skl-card-lp-img {
    width: auto;
    height: 100%;
  }

  .div-block-3406 {
    width: 100%;
  }

  .div-block-3410 {
    flex-direction: column;
  }

  .div-block-3411 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container-11 {
    margin-top: 0;
  }

  .skl-cta-section {
    background-image: linear-gradient(to bottom, var(--ghost-white), var(--ghost-white) 63%, transparent 63%), linear-gradient(315deg, var(--midnight-blue-2) 13%, var(--tomato) 44%);
    padding: 24px;
    overflow: auto;
  }

  .skl-cta-div {
    flex-direction: column;
  }

  .new-item {
    padding: 16px 16px 24px;
  }

  .new-nome {
    margin-top: 20dvh;
  }

  .slide-28 {
    width: 100%;
  }

  .div-block-3416 {
    border-radius: 16px;
    width: 50px;
    height: 50px;
  }

  .div-block-3417 {
    margin-top: 16px;
  }

  .skl-section {
    background-image: url('../images/noisy_1noisy.webp'), linear-gradient(45deg, #212f6c 63%, #ff6559);
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    background-size: 150px, auto;
    height: 100%;
  }

  .div-block-3422 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .div-block-3423 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .paragraph-62 {
    font-size: 16px;
  }

  .heading-102 {
    font-size: 2rem;
  }

  .skl-section-2 {
    background-image: url('../images/noisy_1noisy.webp'), linear-gradient(45deg, #212f6c 63%, #ff6559);
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    background-size: 150px, auto;
    height: 100vh;
    min-height: 90vh;
    max-height: 100vh;
  }

  .div-block-3427 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .container-46 {
    padding: 24px;
  }

  .div-block-3428 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .html-embed-11.size {
    width: auto;
  }

  .div-block-3429 {
    min-width: 60%;
  }

  .skl-cta-div-copy {
    flex-direction: column;
  }

  .skl-cta-div-copy.relative.size {
    width: 100%;
  }

  .div-block-3431 {
    margin-top: 40px;
  }

  .skl-section-hero-copy, .skl-section-hero-2 {
    background-position: 0 0, 100%, 0 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .skl-card-2 {
    flex: 1;
    min-width: 45%;
    max-width: 45%;
  }

  .div-block-3441 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .div-block-3442.center.full {
    width: auto;
  }

  .html-embed-33 {
    min-width: auto;
  }

  .fs_modal-2_close-4 {
    padding: 1rem;
  }

  .fs_modal-2_popup-5 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .fs_modal-2_content-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding: 3rem 2rem;
  }

  .text-style-gradient-3 {
    text-align: left;
  }

  .skl-section-hero-3 {
    background-position: 0 0, 100%, 0 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .section {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }

  .section.paddgin {
    padding-bottom: 50px;
  }

  .div-block-3605 {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 200px;
  }

  .div-block-3605.d-none {
    height: 100px;
  }

  .barra-carregamento, .html-embed-34 {
    width: 100%;
  }

  .fs_modal-1_close {
    padding: 1rem;
  }

  .skl-paragraph-biggest-2.text-16 {
    text-align: left;
  }

  .div-block-3562 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .div-block-3557 {
    width: 100%;
  }

  .skl-button-con-hero-3 {
    display: flex;
  }

  .div-block-3559 {
    align-items: flex-start;
  }

  .skl-heading-3-2.center.bold.text-blue, .skl-paragraph-biggest-3.text-16, .skl-paragraph-biggest-3.text-16.center, .div-block-3634.grow {
    text-align: left;
  }

  .text-block-361.joruney {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
  }

  .heading {
    width: 100%;
    font-size: 4vw;
    line-height: 6vw;
  }

  .heading.journey {
    font-size: 20px;
  }

  .image-335 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-form.margin-top {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }

  .h1-grad {
    width: 100%;
    font-size: 46px;
  }

  .skl-tabs-menu-dash-2 {
    width: 100%;
  }

  .heading-106.size {
    width: 100%;
    font-size: 28px;
    line-height: 38px;
  }

  .skl-tab-panel-dash-2 {
    width: 100%;
    min-height: 100%;
  }

  .div-block-3641.padding {
    width: 100%;
    overflow: hidden;
  }

  .div-block-3642 {
    width: 100%;
  }

  .image-339 {
    width: 100%;
    height: 290px;
  }

  .div-block-3342-copy-copy-2 {
    width: 75%;
  }

  .image-827 {
    width: 200%;
  }

  .image-829 {
    max-height: 30%;
  }

  .text-block-2124 {
    text-align: center;
    width: 100%;
    font-size: 42px;
    line-height: 48px;
  }

  .text-block-2124.skl-conference {
    text-align: left;
  }

  .text-block-2124.margin {
    text-align: left;
    width: 100%;
    font-size: 38px;
  }

  .btn-skl.form-dinamico.is-trackable.utm_track.center {
    width: 100%;
  }

  .image-1075.d-none {
    height: 40%;
  }

  .carrosel-container {
    margin-bottom: 20px;
  }

  .div-block-4616 {
    border-radius: 30px;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .logo-container.coral {
    height: 40px;
  }

  .image-1148 {
    width: 100px;
  }

  .section-10 {
    overflow: visible;
  }

  .section-10.oferta {
    background-image: linear-gradient(236deg, #0f1a45 32%, #212f6c 79%, #e7635369);
    background-position: 0 0;
    background-size: auto;
  }

  .section-10.typ.alumni.horizontal.oferta.pma-skl {
    padding-left: 32px;
    padding-right: 32px;
  }

  .container-331 {
    max-width: 100%;
  }

  .container-331.typ {
    width: 90%;
  }

  .heading-120 {
    max-width: 90%;
    font-size: 22px;
  }

  .heading-120.size {
    width: 90%;
    max-width: 106%;
    line-height: 32px;
  }

  .div-block-4621 {
    max-width: 100%;
  }

  .button-3.margin-top.last, .div-block-4624 {
    width: 100%;
  }

  .div-block-4625 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    width: 100%;
  }

  .heading-121 {
    margin-bottom: 20px;
  }

  .div-block-4628 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .section-12 {
    overflow: hidden;
  }

  .text-block-2287 {
    letter-spacing: 7px;
    font-size: 14px;
  }

  .text-block-2288 {
    max-width: 100%;
    font-size: 24px;
    line-height: 32px;
  }

  .div-block-4629.left {
    width: 100%;
  }

  .slide-nav-45.white-bkg {
    display: none;
  }

  .right-arrow-9 {
    margin-right: -3%;
  }

  .right-arrow-9._2 {
    margin-right: -1%;
  }

  .left-arrow {
    margin-left: -3%;
  }

  .left-arrow._2 {
    margin-left: -1%;
  }

  .slider-35.height.video {
    width: 95%;
  }

  .div-block-4630 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    min-height: auto;
  }

  .div-block-4631, .div-block-4632 {
    width: 90%;
  }

  .container-333 {
    max-width: 90%;
  }

  .container-333.button-margin {
    margin-top: 60px;
  }

  .image-1155.pma-skl {
    width: 100%;
  }

  .image-1156 {
    width: 100%;
    height: 290px;
  }

  .skl-tabs-menu-dash-3 {
    width: 100%;
  }

  .div-block-4636.padding {
    width: 100%;
    overflow: hidden;
  }

  .div-block-4636.padding.pma-skills {
    padding-left: 32px;
    padding-right: 32px;
  }

  .div-block-4637 {
    width: 100%;
  }

  .text-block-2291.pma-skl {
    font-size: 31px;
  }

  .skl-tab-panel-dash-3 {
    width: 100%;
    min-height: 100%;
  }

  .div-block-4640 {
    width: 100%;
  }

  .slide-33 {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }

  .div-block-4649 {
    width: 100%;
  }

  .image-1162 {
    width: 100px;
  }

  .heading-122 {
    font-size: 26px;
    line-height: 34px;
  }

  .text-block-2299 {
    font-size: 14px;
  }

  .div-block-4652 {
    background-image: radial-gradient(circle farthest-side at 100%, #212f6ccc 12%, #212f6c00);
  }

  .text-block-2203 {
    text-align: center;
    width: 90%;
  }

  .div-block-4346 {
    width: 90%;
  }

  .line, .div-block-4412 {
    display: none;
  }

  .div-block-4418 {
    width: 100%;
  }

  .div-block-4409 {
    height: 800px;
    max-height: none;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
  }

  .div-block-4415.blue {
    margin-top: 40px;
  }

  .text-block-2247.blue.mobile, .text-block-2247.sieze.mobile {
    text-align: left;
    margin-bottom: 10px;
    display: block;
    position: static;
  }

  .section-15 {
    background-image: url('../images/mobile_1.webp'), url('../images/desktop.webp');
    background-position: 100%, 50%;
    background-size: cover, cover;
  }

  .text-block-2329 {
    font-size: 40px;
  }

  .image-1164 {
    width: 100px;
  }

  .container-337 {
    max-width: 90%;
  }

  .open-cursos-div {
    z-index: 2;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #fff6;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }

  .open-cursos {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--tomato);
    cursor: pointer;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: auto;
    padding-left: 26px;
    padding-right: 22px;
    display: flex;
  }

  .ver-mais-btn {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
  }

  .image-1167 {
    width: 12px;
  }

  .ver-menos-btn {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
  }

  .slider-item {
    border-radius: 15px;
  }

  .headline-abertura.typ.alumni.pma-skl {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .text-block-2332.caps {
    letter-spacing: 4px;
    font-size: 10px;
  }

  .text-block-2333.blue.m-t {
    max-width: 90%;
  }

  .text-span-908 {
    font-size: 18px;
    line-height: 22px;
  }

  .text-size-medium-sf1-3 {
    font-size: 1rem;
  }

  .text-size-medium-sf1-3.text-color-black {
    font-size: 18px;
  }

  .bold-text-551 {
    text-align: center;
    font-size: 28px;
  }

  .faq1-5_answer-2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-block-2516 {
    padding-right: 0;
  }

  .text-block-2516.blue.pma-skl {
    font-size: 31px;
  }

  .section-241 {
    margin-top: 0;
  }

  .faq1-5_question-11 {
    padding: 1rem 1.25rem;
  }

  .div-block-4666 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
  }

  .div-block-4676 {
    width: 100%;
  }

  .image-1182 {
    max-width: 50%;
  }

  .text-block-2335 {
    font-size: 16px;
  }

  .nav-agenda.fix-nav.new {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    align-items: center;
    height: auto;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .nav-agenda.fix-nav.new.bottom {
    padding: 11px 0;
  }

  .div-block-4586 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .text-block-2526 {
    font-size: 6vw;
    line-height: 8vw;
  }

  .text-block-2526.blue.big {
    font-size: 6.5vw;
    line-height: 9vw;
  }

  .text-block-2526.left.pma-skl {
    margin-bottom: 0;
    font-size: 31px;
  }

  .image-1485 {
    max-width: 250px;
  }

  .meta-aaset._3 {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 0;
    width: 100px;
    left: 73%;
  }

  .play-asset._4 {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0;
    width: 40px;
    left: 79%;
  }

  .bandeira-asset._2 {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0;
    width: 60px;
    left: 9%;
  }

  .pilula-asset {
    width: 120px;
    left: 6%;
  }

  .text-block-2926 {
    width: 80%;
  }

  .div-block-4702 {
    justify-content: flex-start;
    align-items: center;
  }

  .section-249 {
    overflow: hidden;
  }
}

@media screen and (max-width: 479px) {
  .skl-logo-default {
    width: 140px;
  }

  .container {
    height: 65px;
  }

  .container.lp {
    border-radius: 0;
  }

  .navbar {
    height: 65px;
  }

  .navbar.lp {
    padding: 0;
  }

  .skl-button-primary {
    text-align: center;
    flex: 1;
    align-self: stretch;
  }

  .skl-button-primary.hide-desktop {
    display: flex;
  }

  .skl-button-primary.compra.hide {
    display: none;
  }

  .skl-button-primary.compra.pma-skl-mobile {
    margin-top: 48px;
  }

  .skl-button-primary.lp {
    flex: 0 auto;
    min-height: auto;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
  }

  .skl-button-primary.skl-button-con-mentor {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
    line-height: 110%;
  }

  .skl-button-int-header-login {
    text-align: center;
  }

  .skl-button-int-header-login.hide-mobile {
    display: none;
  }

  .skl-section-default.skl-margin-normal.skl-bg-grey.skl-lines {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .skl-section-default.skl-margin-normal.skl-bg-grey.skl-lines.nav {
    padding-top: 100px;
  }

  .skl-section-default.skl-margin-bigtop-normalbottom, .skl-section-default.skl-margin-smalltop-normalbottom-copy {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .skl-section-default.skl-margin-smalltop-normalbottom-copy.nomargin {
    margin-top: 20px;
    padding: 0;
  }

  .skl-section-default.skl-margin-normal {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .skl-section-default.skl-margin-normal.skl-bg.skl-lines {
    padding-top: 40px;
    padding-bottom: 140px;
  }

  .skl-buttons-duo {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    align-self: stretch;
    align-items: stretch;
  }

  .container-2 {
    margin-bottom: 56px;
  }

  .div-block-3325, .div-block-3325.lp-b {
    width: 100%;
  }

  .skl-card {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    flex-direction: row;
    align-items: center;
    min-width: 100%;
    max-width: 100%;
    padding: 8px 16px;
  }

  .skl-card:hover {
    transform: none;
  }

  .skl-card.netflix {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    margin-top: 20px;
  }

  .skl-card.lp-b {
    flex-direction: column;
  }

  .skl-card.pma-card {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .div-block-3326 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .div-block-3328 {
    padding-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .skl-div-logos-empresas {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-wrap: wrap;
  }

  .skl-div-logos {
    min-width: 24%;
  }

  .skl-description {
    font-size: 12px;
    line-height: 120%;
  }

  .skl-description.skl-center.skl-text-blue {
    line-height: 120%;
  }

  .skl-description.small {
    letter-spacing: 2px;
    font-size: 10px;
  }

  .div-block-3329 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .skl-section-hero {
    background-image: radial-gradient(circle closest-corner at 50% 40%, var(--white) 47%, transparent), url('../images/modo_de_isolamento.svg'), linear-gradient(to bottom, var(--white), var(--ghost-white));
    background-position: 0 0, 50%, 0 0;
    background-repeat: repeat, no-repeat, repeat;
    background-size: auto, cover, auto;
    height: auto;
    margin-bottom: 0;
    padding-top: 81px;
  }

  .skl-section-hero.nm {
    padding-bottom: 60px;
  }

  .skl-section-hero.nm.padding {
    padding: 100px 7px 40px;
  }

  .skl-section-hero.saiba-mais {
    height: 80vh;
    padding-left: 12px;
    padding-right: 12px;
  }

  .container-4 {
    margin-bottom: 56px;
  }

  .skl-card-grey {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .skl-svg-70, .skl-svg-70.lp-b {
    width: 40px;
    height: 40px;
  }

  .skl-svg-70.small {
    margin-left: 0;
    margin-right: 5px;
  }

  .div-block-3332 {
    text-align: left;
    flex-direction: row;
  }

  .skl-svg-60 {
    width: 40px;
    height: 40px;
  }

  .div-block-3333 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .div-block-3334, .skl-heading-5.center.mid-age._45ch {
    width: 100%;
  }

  .skl-heading-5.pma-skills.pma-kl {
    font-family: Montserrat, sans-serif;
    font-size: 24px;
  }

  .skl-heading-4.bold.mid-blue.center.pma-skl {
    font-size: 24px;
  }

  .skl-heading-4.mid-blue.ajuste {
    font-size: 22px;
  }

  .skl-heading-3.bold.mid-blue.mobile.center-text {
    display: block;
  }

  .skl-heading-3.bold.mid-blue.hide-mobile {
    display: flex;
  }

  .skl-heading-3.bold.mid-blue.width {
    font-size: 32px;
  }

  .skl-heading-3.bold.mid-blue.big {
    font-size: 9vw;
    line-height: 11vw;
  }

  .skl-heading-3.bold.mid-blue.pma-skl {
    font-size: 24px;
  }

  .skl-heading-3.bold.mid-blue.mobile {
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    display: none;
  }

  .skl-paragraph-small.text-blue.mobile {
    text-align: center;
    width: 70%;
  }

  .skl-paragraph-big {
    font-size: 14px;
  }

  .skl-paragraph-biggest {
    font-size: 18px;
  }

  .skl-paragraph-biggest.text-16, .skl-paragraph-bigger {
    font-size: 16px;
  }

  .skl-paragraph-normal {
    font-size: 12px;
  }

  .tabs {
    background-image: linear-gradient(45deg, var(--lavender) 9%, var(--tomato) 40%, var(--midnight-blue-2) 84%);
    box-shadow: none;
    border-radius: 20px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 16px;
    padding-bottom: 0;
  }

  .skl-tabs-menu-trilha {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: wrap;
    margin-top: 70px;
  }

  .skl-button-eng-exemplostrilhas {
    border-width: 1px;
    border-color: var(--white);
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 4px 8px #0f1a4529;
  }

  .tab-pane-tab-1 {
    padding-bottom: 32px;
  }

  .skl-card-blue {
    padding: 16px;
  }

  .skl-card-blue.skl-ui-depoimments {
    height: auto;
    min-height: 400px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .skl-card-blue.skl-ui-depoimments.size {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-3336 {
    width: 100%;
  }

  .image-227 {
    width: 100%;
    height: 230px;
  }

  .skl-card-white.skl-ui-search {
    padding: 24px 16px;
  }

  .skl-card-white.skl-ui-search.bigger {
    order: -1;
    margin: 0;
  }

  .skl-card-white.skl-ui-search.hide-on-mobile {
    display: none;
  }

  .skl-card-white.skl-ui-dash, .skl-card-white.small {
    padding: 16px;
  }

  .skl-card-white.small.login {
    text-align: center;
    padding: 40px;
  }

  .skl-card-white.small.center.pma-sk {
    border-radius: 18px;
  }

  .div-block-3337 {
    width: 100%;
  }

  .skl-tab-panel-dash {
    min-height: 100%;
  }

  .div-block-3338 {
    width: 100%;
  }

  .skl-card-mid-blue {
    padding: 16px;
  }

  .div-block-3339 {
    width: 100%;
  }

  .wrapper {
    width: 100%;
    height: 68%;
  }

  .div-block-3341 {
    flex-direction: column;
    display: none;
  }

  .div-block-3342 {
    width: 100%;
  }

  .div-block-3343 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .slide-25 {
    width: 100%;
  }

  .slider-11 {
    align-self: stretch;
    min-height: 100%;
  }

  .div-block-3345 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .div-block-3346 {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-3347 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .div-block-3348 {
    width: 50px;
    height: 50px;
  }

  .div-block-3348.silvia, .div-block-3348.rafella {
    width: 40px;
    height: 40px;
  }

  .div-block-3348.diogo {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .container-8 {
    height: 100%;
  }

  .div-block-3350 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-self: stretch;
  }

  .div-block-3342-copy-copy {
    width: 100%;
  }

  .skl-footer-columm {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-3354 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .icon {
    width: 40px;
    height: 40px;
    padding-left: 4px;
    padding-right: 0;
  }

  .div-block-3355 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .skl-footer-list.pma-skl {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    display: none;
  }

  .skl-footer-list.pma-skl.pma-mobile {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .div-block-3356 {
    flex-direction: column-reverse;
  }

  .div-block-3359, .div-block-3359.lp-b {
    width: 100%;
  }

  .skl-film-content {
    background-size: cover;
    width: auto;
    height: 150px;
  }

  .div-block-3369 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .tabs-content {
    width: 100%;
    min-width: 100%;
  }

  .div-block-3370 {
    width: 100%;
  }

  .right-arrow-6 {
    padding-right: 0;
    display: none;
  }

  .right-arrow-6.right {
    display: flex;
  }

  .mask-11 {
    width: 100%;
    height: 100%;
  }

  .html-embed-3 {
    width: 30px;
    height: 30px;
  }

  .left-arrow-7 {
    padding-left: 0;
    display: none;
  }

  .left-arrow-7.left {
    display: flex;
  }

  .mask-12 {
    width: 100%;
  }

  .slider-12 {
    display: block;
  }

  .slider-12.pma-skl {
    display: flex;
  }

  .slide-26 {
    margin-right: 8px;
  }

  .slide-nav-13 {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    display: flex;
    bottom: -40px;
  }

  .left-arrow-8, .right-arrow-7 {
    display: none;
  }

  .div-block-3341-copy {
    flex-direction: column;
    display: flex;
  }

  .div-block-3371 {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .div-block-3372 {
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    display: flex;
  }

  .skl-cta-screen {
    background-image: linear-gradient(to bottom, var(--ghost-white), var(--ghost-white) 55%, transparent 55%), linear-gradient(315deg, var(--midnight-blue-2) 13%, var(--tomato) 44%);
    align-items: center;
    height: 100dvh;
    padding: 0 16px 16px;
  }

  .div-block-3374 {
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-3374.left, .div-block-3374.center.auto-margin {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-3375.width {
    width: 100%;
  }

  .skl-cta-exit {
    color: var(--midnight-blue);
    align-self: stretch;
    margin-bottom: 0;
    padding: 8px 16px 8px 8px;
    display: flex;
  }

  .image-231 {
    height: auto;
    min-height: 140px;
  }

  .menu-button-2 {
    padding: 8px;
  }

  .div-block-3385 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .skl-faq {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }

  .skl-close {
    min-width: 32px;
    min-height: 32px;
  }

  .div-block-3392 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .skl-logo-dep {
    width: 80px;
    max-width: 100px;
    height: 40px;
  }

  .background-video-2 {
    border-radius: 8px;
  }

  .div-block-3396 {
    height: 0;
    padding-left: 16px;
    padding-right: 16px;
    bottom: -53px;
  }

  .text-style-gradient.size {
    font-size: 38px;
    line-height: 45px;
  }

  .div-block-3346-copy {
    width: 100%;
  }

  .html-embed-5._10 {
    margin-bottom: 0;
  }

  .skl-button-con-hero {
    text-align: center;
    flex: 1;
    align-self: stretch;
  }

  .skl-button-con-header {
    text-align: center;
    flex: 1;
    align-self: stretch;
    min-height: 40px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }

  .skl-button-con-trilhaspersonalizadas {
    text-align: center;
    flex: 1;
    align-self: stretch;
  }

  .skl-button-con-trilhaspersonalizadas.hide-mobile {
    display: none;
  }

  .skl-button-con-trilhaspersonalizadas.hide-desktop {
    display: flex;
  }

  .skl-button-con-conteudos {
    text-align: center;
    flex: 1;
    align-self: stretch;
  }

  .skl-button-con-conteudos.hide-mobile {
    display: none;
  }

  .skl-button-con-numeros {
    text-align: center;
    flex: 1;
    align-self: stretch;
  }

  .div-block-3404 {
    padding: 8px;
  }

  .skl-container-logos-cta {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .skl-div-social-cta {
    text-align: center;
  }

  .skl-div-logos-cta-img {
    height: 16px;
  }

  .skl-section-hero-lp {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    background-image: linear-gradient(to bottom, var(--white), var(--ghost-white));
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    margin-top: 65px;
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .div-block-3383-copy {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    margin-top: 0;
  }

  .div-block-3387-copy {
    border-radius: 24px;
  }

  .div-block-3387-copy.grid {
    z-index: 10;
    grid-template-columns: 1fr;
    position: relative;
  }

  .skl-card-investir {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    border-radius: 16px;
    flex-direction: row;
    align-items: center;
    min-width: 100%;
    max-width: 100%;
    padding: 8px 16px;
  }

  .skl-card-investir:hover {
    transform: none;
  }

  .skl-card-lp {
    padding-top: 24px;
  }

  .display-skl-card-lp {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .skl-card-lp-container {
    height: auto;
  }

  .div-block-3405 {
    margin-bottom: 0;
  }

  .skl-card-price {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border-radius: 16px;
    padding: 24px 16px;
  }

  .skl-card-lp-price {
    padding: 16px;
  }

  .div-block-3386-copy-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-3385-copy {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .skl-card-depoimento {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-top: 16px;
  }

  .div-block-3347-copy {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: row;
    align-items: center;
  }

  .skl-glass {
    display: block;
  }

  .lottie-animation {
    width: 100%;
    height: auto;
  }

  .div-block-3411 {
    border-radius: 0;
    flex-direction: row;
    align-items: center;
  }

  .container-11 {
    margin-top: 20px;
  }

  .div-block-3328-copy {
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .skl-cta-section {
    background-image: linear-gradient(to bottom, var(--ghost-white), var(--ghost-white) 55%, transparent 55%), linear-gradient(315deg, var(--midnight-blue-2) 13%, var(--tomato) 44%);
    align-items: center;
    width: auto;
    height: auto;
    min-height: 100dvh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .skl-cta-container {
    flex-direction: row;
    justify-content: center;
    align-self: center;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .skl-cta-div {
    grid-column-gap: 8px;
    grid-row-gap: 24px;
    justify-content: center;
  }

  .skl-cta-list-copy.v2.gap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .new-item {
    padding: 24px 24px 32px;
  }

  .new-nome {
    margin-top: 30dvh;
  }

  .new---right-arrow {
    padding-right: 0;
  }

  .new---left-arrow {
    padding-left: 0;
  }

  .new-info {
    padding: 24px 24px 32px;
  }

  .skl-button-mentor {
    border-radius: 16px;
    width: 50px;
    height: 50px;
  }

  .slide-28 {
    width: 100%;
  }

  .div-block-3417 {
    margin-top: 24px;
  }

  .div-block-3421 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .skl-section {
    background-image: url('../images/noisy_1noisy.webp'), linear-gradient(45deg, #212f6c 64%, #ff6559);
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    background-size: 150px, auto;
    align-items: center;
  }

  .div-block-3422 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .paragraph-62 {
    font-size: 14px;
  }

  .div-block-3426 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .skl-section-2 {
    background-image: url('../images/noisy_1noisy.webp'), linear-gradient(45deg, #212f6c 64%, #ff6559);
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    background-size: 150px, auto;
    align-items: center;
  }

  .div-block-3427 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .div-block-3429 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-3430 {
    background-image: url('../images/hbr_logo_black-1.svg'), linear-gradient(135deg, var(--midnight-blue) 13%, #00000003 77%, #0000 93%), url('../images/artigo-grade.png');
    background-position: 50%, 0 0, 50%;
    background-repeat: no-repeat, repeat, repeat;
    background-size: auto, auto, cover;
    min-height: 150px;
  }

  .container-47.v2 {
    margin-bottom: 40px;
  }

  .skl-cta-div-copy {
    grid-column-gap: 8px;
    grid-row-gap: 24px;
    justify-content: center;
  }

  .skl-button-secondary, .skl-button-primary-mobile, .skl-button-secondary-mobile, .skl-button-buy-now {
    text-align: center;
    flex: 1;
    align-self: stretch;
  }

  .div-block-3431 {
    margin-top: 24px;
  }

  .skl-section-hero-copy {
    background-image: radial-gradient(circle closest-corner at 50% 40%, var(--white) 47%, transparent), url('../images/modo_de_isolamento.svg'), linear-gradient(to bottom, var(--white), var(--ghost-white));
    background-position: 0 0, 50%, 0 0;
    background-repeat: repeat, no-repeat, repeat;
    background-size: auto, cover, auto;
    height: auto;
    margin-bottom: 0;
    padding-top: 81px;
  }

  .skl-card-white-2.small {
    padding: 16px;
  }

  .div-block-3435, .div-block-3435.lp-b, .div-block-3437, .div-block-3437.lp-b {
    width: 100%;
  }

  .skl-section-hero-2 {
    background-image: radial-gradient(circle closest-corner at 50% 40%, #fff 47%, #0000), url('../images/modo_de_isolamento.svg'), linear-gradient(#fff, #f0f2fa);
    background-position: 0 0, 50%, 0 0;
    background-repeat: repeat, no-repeat, repeat;
    background-size: auto, cover, auto;
    height: auto;
    margin-bottom: 0;
    padding-top: 81px;
  }

  .container-49.v2 {
    margin-bottom: 40px;
  }

  .container-49.v2.margin-top {
    margin-top: 0;
  }

  .skl-card-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    flex-direction: row;
    align-items: center;
    min-width: 100%;
    max-width: 100%;
    padding: 8px 16px;
  }

  .skl-card-2:hover {
    transform: none;
  }

  .skl-card-2.lp-b {
    flex-direction: column;
  }

  .menu-button-3 {
    padding: 8px;
  }

  .container-50 {
    margin-bottom: 56px;
  }

  .div-block-3441 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .div-block-3442 {
    width: 100%;
  }

  .skl-card-mid-blue-2 {
    padding: 16px;
  }

  .html-embed-33 {
    min-width: auto;
  }

  .fs_modal-2_component-3 {
    justify-items: center;
  }

  .exp-support-container {
    bottom: 96px;
    right: 16px;
  }

  .exp-support-container.is-trackable.button-wpp {
    bottom: 35vw;
    right: 2vw;
  }

  .div-block-3603 {
    width: 100%;
  }

  .container-62 {
    margin-bottom: 56px;
  }

  .text-style-gradient-3 {
    text-align: center;
  }

  .skl-button-primary-2 {
    text-align: center;
    flex: 1;
    align-self: stretch;
  }

  .skl-section-hero-3 {
    background-image: radial-gradient(circle closest-corner at 50% 40%, #fff 47%, #0000), url('../images/modo_de_isolamento.svg'), linear-gradient(#fff, #f0f2fa);
    background-position: 0 0, 50%, 0 0;
    background-repeat: repeat, no-repeat, repeat;
    background-size: auto, cover, auto;
    height: auto;
    margin-bottom: 0;
    padding-top: 81px;
  }

  .section {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    min-height: auto;
  }

  .div-block-3605 {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 200px;
    margin-bottom: 0;
  }

  .div-block-3605.border {
    border-radius: 0;
    height: auto;
    min-height: 300px;
    margin-top: 0;
    top: auto;
    bottom: -100px;
  }

  .barra-carregamento {
    height: 35px;
    margin-top: 0;
  }

  .barra-carregamento.size {
    width: 100%;
  }

  .div-block-3606 {
    background-position: 70%, 0 0;
    width: 90%;
  }

  .logo.small {
    margin-bottom: 20px;
  }

  .lines-bkg {
    width: 90%;
    margin-top: -28px;
  }

  .container-64 {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .section-5 {
    padding: 30px 20px;
  }

  .section-5.mm {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .headline-small {
    font-size: 16px;
  }

  .div-block-3608 {
    width: 100%;
    padding: 24px 16px;
  }

  .div-block-3609 {
    padding-left: 0;
  }

  .image-316 {
    margin-top: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-3610 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: center;
  }

  .div-block-3611 {
    width: 100%;
  }

  .slider-13 {
    margin-top: 12px;
  }

  .title-large {
    font-size: 15px;
  }

  .image-317 {
    min-width: 50px;
    min-height: 50px;
  }

  .div-block-3612 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column-reverse;
    padding: 24px;
  }

  .slide-nav {
    padding-top: 0;
    bottom: -9%;
  }

  .div-block-3608-copy {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    align-items: center;
    width: 100%;
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .image-319 {
    margin-top: 24px;
    padding-left: 16px;
  }

  .container-65-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
  }

  .container-64-copy {
    padding-left: 12px;
    padding-right: 12px;
  }

  .div-block-3608-copy-copy {
    width: 100%;
  }

  .collection-list-wrapper {
    margin-top: 12px;
  }

  .right-arrow-8 {
    justify-content: flex-end;
    width: 32px;
    display: flex;
    inset: 0% -5% 0% auto;
    overflow: visible;
  }

  .icon-32 {
    margin-left: 0;
    margin-right: 0;
  }

  .left-arrow-9 {
    width: 32px;
    inset: 0% auto 0% -5%;
    overflow: visible;
  }

  .div-block-3614 {
    text-align: left;
    align-items: flex-start;
    height: auto;
  }

  .collection-list-5 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .collection-item-4 {
    flex-direction: row;
    padding-left: 0;
    padding-right: 24px;
  }

  .div-block-3611-copy {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    width: 100%;
    padding: 0;
  }

  .div-block-3621 {
    flex: 0 auto;
    width: 47%;
  }

  .div-block-3622 {
    flex-flow: wrap;
  }

  .div-block-3617-copy {
    min-width: 100%;
    height: auto;
  }

  .divider {
    margin-top: 12px;
  }

  .div-block-3628 {
    text-align: center;
  }

  .section-5-copy-copy {
    padding: 10px;
  }

  .div-block-3558 {
    width: 100%;
  }

  .skl-paragraph-biggest-2 {
    font-size: 18px;
  }

  .skl-paragraph-biggest-2.text-16 {
    text-align: center;
    font-size: 16px;
  }

  .container-54 {
    margin-bottom: 56px;
  }

  .div-block-3562 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .menu-button-4 {
    padding: 8px;
  }

  .div-block-3557 {
    width: 100%;
  }

  .skl-button-con-hero-3 {
    text-align: center;
    flex: 1;
    align-self: stretch;
  }

  .container-53 {
    margin-bottom: 56px;
  }

  .image-328 {
    width: 100%;
    height: 230px;
  }

  .div-block-3630 {
    flex-direction: column-reverse;
  }

  .skl-card-blue-2 {
    padding: 16px;
  }

  .div-block-3631 {
    width: 100%;
  }

  .skl-paragraph-biggest-3 {
    font-size: 18px;
  }

  .skl-paragraph-biggest-3.text-16 {
    text-align: center;
    font-size: 16px;
  }

  .div-block-3632 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .skl-paragraph-normal-2 {
    font-size: 12px;
  }

  .skl-heading-3-5-2.size {
    font-size: 20px;
    line-height: 28px;
  }

  .skl-paragraph-big-2 {
    font-size: 14px;
  }

  .div-block-3634 {
    width: 100%;
  }

  .text-block-361 {
    text-align: left;
    letter-spacing: 0;
    width: 90%;
    font-size: 16px;
  }

  .text-block-361.joruney {
    text-align: center;
  }

  .heading {
    margin-bottom: 10px;
    font-size: 4.8vw;
    line-height: 7vw;
  }

  .heading.journey {
    width: 90%;
    line-height: 30px;
  }

  .hero-journey {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .image-826 {
    width: 110px;
  }

  .empresas-fixo {
    height: 90px;
  }

  .text-block-2115 {
    letter-spacing: 1px;
    font-size: 3.5vw;
  }

  .logos-empresas {
    margin-top: 10px;
  }

  .image-335 {
    width: 80px;
  }

  .title-form {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
  }

  .skl-paragraph-big-3 {
    font-size: 14px;
  }

  .skl-paragraph-big-3.dark-blue {
    line-height: 24px;
  }

  .hero-form.margin-top {
    background-image: radial-gradient(circle closest-corner, #fff 9%, #f1f3fb);
    background-position: 0 0;
    background-size: auto;
    margin-top: 90px;
    overflow: hidden;
  }

  .small {
    width: 100px;
  }

  .h1-grad {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 8vw;
    line-height: 11vw;
  }

  .h1-grad.size {
    font-size: 32px;
    line-height: 42px;
  }

  .html-embed-40._10 {
    margin-bottom: 0;
  }

  .form-div {
    background-image: linear-gradient(213deg, #f7f7f7, #fff);
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 3px -16px 40px #a1b1ef33;
  }

  .v-deo-seciton {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-313 {
    margin-top: 20px;
  }

  .heading-105 {
    margin-top: 0;
    font-size: 28px;
    line-height: 38px;
  }

  .heading-105.white {
    margin-top: 0;
    font-size: 24px;
    line-height: 34px;
  }

  .div-block-3638 {
    padding: 10px;
  }

  .wrapper-video.desktop {
    display: none;
  }

  .wrapper-video.mobile {
    display: block;
  }

  .skl-paragraph-normal-3 {
    font-size: 12px;
  }

  .skl-paragraph-normal-3.color {
    font-size: 14px;
  }

  .div-block-3640 {
    width: 100%;
    padding-left: 0;
  }

  .skl-tabs-menu-dash-2 {
    width: 100%;
  }

  .heading-106 {
    margin-top: 0;
    font-size: 28px;
    line-height: 38px;
  }

  .heading-106.size {
    text-align: left;
    font-size: 24px;
    line-height: 34px;
  }

  .skl-tab-panel-dash-2 {
    min-height: 100%;
  }

  .div-block-3641 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-3642 {
    width: 100%;
  }

  .container-314 {
    margin-top: 20px;
  }

  .div-block-3643.no-margin {
    margin-right: 0;
  }

  .image-337 {
    width: 100%;
  }

  .image-339 {
    height: auto;
    min-height: 140px;
  }

  .skl-card-white-3.new {
    padding: 16px 16px 16px 20px;
  }

  .skl-card-white-3.new.align {
    flex-direction: column;
    padding: 20px;
  }

  .skl-paragraph-bigger-2 {
    font-size: 16px;
  }

  .div-block-3644 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .div-block-3342-copy-copy-2 {
    width: 100%;
  }

  .text-block-2122 {
    font-size: 12px;
  }

  .image-827 {
    margin-right: -52px;
  }

  .image-828 {
    margin-top: 5px;
    margin-right: 5px;
  }

  .image-829 {
    max-height: 25%;
  }

  .container-316.left {
    align-items: flex-start;
    width: 90%;
  }

  .text-block-2124 {
    text-align: left;
    width: 300px;
    font-size: 42px;
    line-height: 52px;
  }

  .text-block-2124.margin {
    line-height: 42px;
  }

  .text-block-2124.size {
    text-align: left;
    width: 100%;
    font-size: 28px;
    line-height: 38px;
  }

  .text-block-2125 {
    text-align: left;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
  }

  .text-block-2125.left.small-test {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
  }

  .div-block-3648 {
    width: 100%;
    margin-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-3648.size.stroke {
    margin-top: 20px;
  }

  .div-block-3648.center.stroke {
    background-color: #1c2958c2;
    margin-top: 20px;
  }

  .btn-skl {
    text-align: center;
    width: 90%;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .skl-paragraph-big-4 {
    font-size: 14px;
  }

  .div-block-4438 {
    padding-bottom: 40px;
  }

  .div-block-4493 {
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .text-block-2283 {
    font-size: 14px;
  }

  .div-block-4495 {
    width: 45px;
    height: 45px;
  }

  .image-1074 {
    width: 25px;
    height: 25px;
  }

  .html-embed-72 {
    width: 100%;
  }

  .text-span-710 {
    font-size: 16px;
    line-height: 26px;
  }

  .image-1075.d-none {
    height: 25%;
  }

  .heading-119 {
    text-align: left;
    font-size: 26px;
    line-height: 34px;
  }

  .heading-119.center {
    text-align: center;
  }

  .heading-119.center.size {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
    line-height: 32px;
  }

  .heading-119.center.size.type {
    font-size: 12px;
  }

  .div-block-4616 {
    padding-top: 40px;
  }

  .logo-container {
    height: 45px;
  }

  .logo-container.coral {
    width: 100%;
  }

  .section-10.oferta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-10.typ {
    padding-top: 40px;
  }

  .section-10.typ.alumni.horizontal.oferta.pma-skl {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-10.typ.alumni.second._100 {
    padding-top: 0%;
  }

  .image-1149.margin {
    width: 100px;
  }

  .heading-120 {
    width: 90%;
    max-width: 350px;
    font-size: 20px;
    line-height: 28px;
  }

  .heading-120.size {
    max-width: none;
    font-size: 16px;
  }

  .heading-120.size.max {
    width: 95%;
    max-width: 350px;
  }

  .heading-120.typ {
    line-height: 30px;
  }

  .button-3.center.oferta {
    padding-left: 0;
    padding-right: 0;
  }

  .button-3.margin-top.last {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 4.2vw;
  }

  .div-block-4629.m-b {
    z-index: 1;
  }

  .right-arrow-9 {
    margin-right: -1%;
  }

  .left-arrow {
    margin-left: -1%;
  }

  .slider-35._100 {
    width: 100%;
    height: auto;
  }

  .div-block-4630.vertical {
    padding-top: 20px;
    padding-left: 21px;
    padding-right: 21px;
  }

  .image-1155 {
    width: 100%;
  }

  .image-1155.pma-skl {
    padding-left: 0;
    padding-right: 0;
  }

  .image-1156 {
    height: auto;
    min-height: 140px;
  }

  .div-block-4635.no-margin {
    margin-right: 0;
  }

  .skl-tabs-menu-dash-3 {
    width: 100%;
  }

  .skl-paragraph-normal-4 {
    font-size: 12px;
  }

  .skl-paragraph-normal-4.color {
    font-size: 14px;
  }

  .div-block-4636 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-4636.padding.pma-skills {
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-4637 {
    width: 100%;
  }

  .text-block-2291 {
    font-size: 20px;
    line-height: 28px;
  }

  .text-block-2291.pma-skl {
    font-size: 24px;
  }

  .div-block-4639 {
    width: 100%;
    padding-left: 0;
  }

  .skl-tab-panel-dash-3 {
    min-height: 100%;
  }

  .skl-card-white-4.new {
    padding: 16px 16px 16px 20px;
  }

  .skl-card-white-4.new.align {
    flex-direction: column;
    padding: 20px;
  }

  .div-block-4642.blue, .div-block-4642.first {
    padding-left: 10px;
    padding-right: 10px;
  }

  .slide-33 {
    padding: 15px;
  }

  .text-block-2298 {
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
    font-size: 3vw;
    line-height: 6vw;
  }

  .heading-122 {
    font-size: 6.5vw;
  }

  .text-block-2299 {
    max-width: 250px;
  }

  .div-block-4650 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-block-2301 {
    max-width: none;
    margin-top: 20px;
  }

  .text-block-2203 {
    font-size: 14px;
    line-height: 20px;
  }

  .div-block-4345 {
    padding-top: 10px;
    overflow: visible;
  }

  .form-completo {
    width: 90%;
    overflow: scroll;
  }

  .modal-popup {
    align-items: center;
    width: 100vw;
    height: auto;
    min-height: 300vh;
    display: flex;
    position: absolute;
    inset: 0%;
  }

  .modal-popup._10-licencas {
    height: auto;
    min-height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .text-span-905 {
    width: 95%;
  }

  .div-block-4347 {
    flex-flow: column;
    overflow: scroll;
  }

  .div-block-4346 {
    width: 90%;
    margin-top: 60px;
    padding: 7px;
  }

  .div-block-4346.gemp {
    margin-top: 20px;
    padding-top: 40px;
    position: relative;
    top: 0;
    bottom: auto;
    overflow: scroll;
  }

  .image-1163 {
    top: 10px;
    right: 10px;
  }

  .line {
    margin-left: 5px;
    margin-right: 5px;
  }

  .div-block-cursos {
    position: relative;
  }

  .div-block-4413 {
    background-color: #fd807800;
    flex: 0 auto;
    height: 50px;
    min-height: auto;
  }

  .div-block-4413.first.blue {
    background-color: #152d8700;
  }

  .div-block-4413.blue {
    background-color: #152d8700;
    height: 50px;
  }

  .div-block-4413.big {
    z-index: 1;
    background-color: #fd80784f;
    border-radius: 100px;
    height: 100%;
    display: block;
    position: absolute;
    inset: auto 0% 0%;
  }

  .div-block-4413.big.blue {
    background-color: #152d8724;
  }

  .div-block-4416 {
    z-index: 2;
    position: relative;
  }

  .text-block-2248 {
    flex: 0 auto;
  }

  .div-block-4418 {
    width: 90%;
  }

  .div-block-4410 {
    margin-top: 20px;
    padding-bottom: 0;
  }

  .div-block-4409 {
    height: 800px;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
  }

  .div-block-4415 {
    position: relative;
  }

  .div-block-4415.blue {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .text-block-2247.blue.mobile, .text-block-2247.sieze.mobile {
    font-size: 24px;
    line-height: 34px;
  }

  .text-block-2328.white {
    font-size: 16px;
    line-height: 24px;
  }

  .section-15 {
    background-image: url('../images/mobile_1.webp');
    background-position: 80% 100%;
    background-size: cover;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    min-height: 90vh;
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .text-block-2329 {
    font-size: 35px;
  }

  .open-cursos-div {
    z-index: 2;
  }

  .bold-text-4 {
    line-height: 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-wrapper {
    height: auto;
  }

  .container-339 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .slider-list {
    height: auto;
  }

  .slider-item {
    width: 75vw;
    max-width: none;
    height: 110vw;
    min-height: auto;
    max-height: none;
  }

  .slide-link-block {
    justify-content: center;
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .heading-123 {
    font-size: 24px;
    line-height: 32px;
  }

  .text-block-2331 {
    font-size: 14px;
    line-height: 20px;
  }

  .text-block-2332.caps {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-2332.caps.m-x {
    max-width: none;
  }

  .text-block-2333 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }

  .text-block-2333.blue.max {
    max-width: 350px;
  }

  .text-block-2333.blue.m-t {
    z-index: 10;
    position: relative;
  }

  .text-block-2333.blue.big {
    font-size: 16px;
    line-height: 26px;
  }

  .div-block-4658 {
    width: 90%;
  }

  .text-span-908 {
    font-size: 16px;
  }

  .bold-text-551 {
    text-align: left;
    font-size: 22px;
    line-height: 30px;
  }

  .container-421.mobile {
    padding: 32px 16px 3px;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-block-2516 {
    padding-right: 0;
    line-height: 22px;
  }

  .text-block-2516.blue.pma-skl {
    font-size: 24px;
  }

  .section-241 {
    margin-top: 0;
  }

  .heading-124, .heading-125 {
    font-size: 15vw;
    line-height: 15vw;
  }

  .text-block-2517 {
    font-size: 18px;
  }

  .div-block-4665 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .div-block-4666 {
    max-width: 95%;
  }

  .div-block-4667 {
    justify-content: flex-start;
    width: 100%;
  }

  .text-block-2521.color {
    font-size: 28px;
  }

  .image-1179._100 {
    height: auto;
  }

  .section-244.no-padding {
    padding-bottom: 60px;
  }

  .container-424.size {
    max-width: 100%;
  }

  .div-block-4672 {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    width: 90%;
    margin-top: -10px;
  }

  .div-block-4675 {
    border-radius: 15px;
    margin-top: 40px;
  }

  .div-block-4676 {
    flex-flow: column;
    padding: 7px;
  }

  .image-1182 {
    max-width: 100%;
  }

  .image-1185 {
    width: 120%;
  }

  .text-block-2335 {
    font-size: 14px;
  }

  .nav-agenda.fix-nav.new {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-top: 10px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .div-block-4586 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .bold-text-555 {
    font-size: 30px;
    line-height: 120%;
  }

  .text-block-2526 {
    font-size: 8vw;
    line-height: 10vw;
  }

  .text-block-2526.blue {
    font-size: 6vw;
    line-height: 8vw;
  }

  .text-span-1077 {
    font-size: 16px;
  }

  .div-block-4684 {
    margin-top: 20px;
  }

  .div-block-4686 {
    grid-column-gap: 0px;
  }

  .text-block-162 {
    font-size: 22px;
    line-height: 35px;
  }

  .text-block-163 {
    font-size: 25vw;
    font-weight: 800;
    line-height: 30vw;
  }

  .image-1189 {
    width: 95%;
    max-width: 300px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .link-block-14 {
    width: 100%;
    margin-top: 0;
    padding-left: 31px;
    padding-right: 31px;
  }

  .link-block-14.desk {
    flex-flow: row;
    max-width: 95%;
  }

  .link-block-14.desk.hero.compra {
    margin-top: 20px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .text-block-2922 {
    text-align: center;
    font-size: 4vw;
    line-height: 6vw;
  }

  .text-block-2922.w {
    font-size: 3.5vw;
  }

  .image-1484 {
    opacity: .37;
    bottom: 48%;
  }

  .image-1484.depoimento {
    opacity: .25;
    bottom: 77%;
  }

  .text-block-2923 {
    max-width: 300px;
    font-size: 14px;
    line-height: 24px;
  }

  .text-span-1083 {
    font-size: 24px;
    line-height: 34px;
  }

  .div-block-4688 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    width: 100%;
  }

  .italic-text-2 {
    font-size: 18px;
  }

  .image-1485 {
    max-width: 200px;
  }

  .div-block-4689.m-t {
    margin-top: 20px;
  }

  .meta-aaset._3 {
    width: 20%;
    left: 71%;
  }

  .play-asset._4 {
    width: 8%;
  }

  .bandeira-asset._2 {
    width: 15%;
  }

  .pilula-asset {
    width: 25%;
  }

  .image-1486 {
    width: 150%;
    left: auto;
    right: auto;
  }

  .marquee-horizontal-5.top {
    margin-top: 0;
    margin-bottom: 0;
  }

  .marquee-text {
    letter-spacing: 7px;
    font-size: 10px;
  }

  .marquee-text.online {
    letter-spacing: 3px;
    margin-bottom: 0;
  }

  .div-block-4695 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .text-block-2926 {
    width: 100%;
  }

  .div-block-4705 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_9fea4da9-fad9-c9a9-10a7-53f2249c87c1-d5c00a57 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Montserrat GF';
  src: url('../fonts/montserrat-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat GF';
  src: url('../fonts/montserrat-bold.woff2') format('woff2'), url('../fonts/montserrat-extrabold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat GF';
  src: url('../fonts/montserrat-extralight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat GF';
  src: url('../fonts/montserrat-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat GF';
  src: url('../fonts/montserrat-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat GF';
  src: url('../fonts/montserrat-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat GF';
  src: url('../fonts/montserrat-thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat GF';
  src: url('../fonts/montserrat-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}