* {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

*:focus, *:active, * {
  outline:0 !important;
  -webkit-tap-highlight-color: transparent;
}

input:focus, textarea:focus {
  outline: none;
}

@font-face {
  font-family: Karla;
  src: url("fonts/Karla.ttf");
}

@font-face {
  font-family: Outfit;
  src: url("fonts/Outfit.ttf");
}

body {
  background-color: #000000;
  font-family: Karla;
}

.mobile {
  display: none;
}

.header-lp {
  width: 100%;
  height: 74px;
  /* background-color: #000; */
  position: fixed;
  z-index: 9999;
  top: 0px;
  transition: all 0.2s linear;
}

.header-lp.has-background, .header-lp.fixed-background {
  background-color: #000;
}

.header-content {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 12px 0px;
}

.header-logo {
  width: 200px;
  height: 50px;
  background-image: url("../img/ecc-logo.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;

  background-image: url("../img/ativcare-logo.png");
  background-size: 130px;
}

.header-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-menu-item {
  color: #FFF;
  font-size: 14px;
  cursor: pointer;
}

.header-menu-item-signin {
  background-color: #e20000;
  border-radius: 10px;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
  font-family: 'Karla';
  font-size: 13px;
  padding: 10px 20px;
  cursor: pointer;
}

.header-menu-btn {
  display: none;
}

.banner-lp {
  display: flex;
  height: 660px;
  overflow: hidden;
}

.banner-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-center-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner-title {
  font-weight: bold;
  color: #FFF;
  font-size: 60px;
  max-width: 800px;
  text-align: center;
  line-height: 70px;
  font-family: 'Outfit';
}

.banner-subtitle {
  color: #FFF;
  font-size: 20px;
  display: block;
  margin-top: 30px;
  
  width: 740px;
  text-align: center;
  line-height: 30px;
}

.banner-cta {
  background-color: #e20000;
  border: 0;
  padding: 20px 40px;
  border-radius: 100px;
  margin-top: 40px;
  font-weight: bold;
  font-family: 'Karla';
  text-transform: uppercase;
  color: #FFFF;
  font-size: 16px;
  cursor: pointer;
}

.banner-right:before {
  content: "";
  background: linear-gradient(to top, rgb(0, 0, 0) 0px, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0) 45%) center center no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner-right img {
  width: 100%;
}

.banner-left {
  width: 50%;
  background: linear-gradient(0deg, #000, #222326);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* gap: 50px; */
}

.banner-course-logo {
  width: 200px;
}

.banner-course-divider {
  content: "";
  margin: 10px auto;
  width: 30px;
  height: 4px;
  border-radius: 100px;
  background-color: #FFF;
}

.banner-course-title {
  color: #848484;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

.banner-course-description {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
  width: 450px;
  line-height: 18px;
}

.banner-course-buy {
  background-color: #e20000;
  width: 315px;
  height: 44px;
  border-radius: 10px;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
  font-family: 'Karla';
  margin-top: 30px;
}

.banner-course-subtitle {
  color: #848484;
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  width: 310px;
  line-height: 16px;
}

.banner-course-btns {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.banner-course-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 110px;
  cursor: pointer;
}

.banner-course-btn-icon {
  width: 25px;
  height: 25px;
  display: block;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-course-btn-icon.play {
  background-image: url("../img/icon-play.svg");
}

.banner-course-btn-icon.screen {
  width: 30px;
  background-image: url("../img/icon-screen.svg");
}

.banner-course-btn-icon.share {
  background-image: url("../img/icon-share.svg");
}

.banner-course-btn-label {
  color: #FFF;
  font-weight: bold;
  font-size: 15px;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.tabs-ghost {
  width: 100%;
  height: 72px;
  display: none;
}

.tabs-ghost.displayed {
  display: block;
}

.tabs.fixed {
  position: fixed;
  top: 74px;
  left: 0px;
  right: 0px;
  z-index: 9999;
}

.tab {
  color: #FFF;
  padding: 20px 25px;
  border-bottom: 3px solid transparent;
}

.tab.active {
  border-bottom: 3px solid #CCC;
}

.miolo {
  display: block;
  width: 100%;
  height: 2000px;
}

.text {
  color: #FFF;
  /* height: 1000px; */
}

.big-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.informacoes-curso-content {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
}

.informacoes-curso {
  padding-top: 80px;
}

.informacoes-curso-flex {
  display: flex;
  gap: 30px;
}

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

.informacoes-curso-video {
  width: 768px;
}

.informacoes-curso-descricao {
  color: #848484;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 19px;
}

.informacoes-curso-info {
  color: #848484;
  font-size: 15px;
  margin-top: 12px;
  line-height: 19px;
}

.informacoes-curso-info b {
  font-weight: bold;
  color: #FFF;
}

.informacoes-curso-modulos {
  width: calc(100% - 798px);
}

.informacoes-curso-modulos-trailer {
  background-color: #222326;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border-radius: 10px;
  cursor: pointer;
}

.informacoes-curso-modulos-trailer-play {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 100px;
  background-color: #e20000;
  background-image: url("../img/icon-play.svg");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.informacoes-curso-modulos-trailer-label {
  color: #FFF;
  font-size: 14px;
}

.informacoes-curso-modulos-title {
  color: #FFF;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
}

.informacoes-curso-modulos-modulo {
  background-color: #222326;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 20px 18px;
  border-radius: 10px;
  margin-top: 5px;
}

.outros-cursos {
  padding-top: 100px;
}

.outros-cursos-content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.outros-cursos-title {
  color: #FFF;
  font-size: 32px;
  margin-bottom: 20px;
}

.outros-cursos-title b {
  font-weight: bold;
}

.outros-cursos-items {
  display: flex;
  gap: 15px;
}

.outros-cursos-item {
  width: 240px;
  height: 425px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.outros-cursos-item.bem-estar-social {
  background-image: url("../img/bem-estar-social.png");
}

.outros-cursos-item.bem-estar-fisico {
  background-image: url("../img/bem-estar-fisico.png");
}


.outros-cursos-item-overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(0deg, #191c21 0, rgba(25, 28, 33, .5) 50%, rgba(25, 28, 33, 0) 90%) 50% no-repeat;
}

.outros-cursos-item-data {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.outros-cursos-item-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  font-style: italic;
  text-align: center;
}

.outros-cursos-item-btn {
  border: 2px solid #43454c;
  color: #FFF;
  font-weight: bold;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  cursor: pointer;
  background-color: transparent;
  padding: 12px 0px;
  padding-top: 14px;
  border-radius: 10px;
}

.outros-cursos-item-btn:before {
  content: "";
  width: 14px;
  height: 14px;
  margin-bottom: 3px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
  background-image: url("../img/icon-play.svg");
  background-size: 100%;
}

.perguntas-frequentes {
  padding-top: 100px;
}

.perguntas-frequentes-content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.perguntas-frequentes-title {
  color: #FFF;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.perguntas-frequentes-items {
  display: block;
  width: 800px;
  margin: 30px auto;
}

.perguntas-frequentes-item {
  background-color: #222326;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 20px 18px;
  border-radius: 10px;
  margin-top: 5px;
  cursor: pointer;
  background-image: url("../img/icon-down.svg");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: calc(100% - 15px);
}








.questionario {
  padding: 100px 0px;
}

.questionario-content {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
  text-align: center;
}

.questionario-title {
  font-family: 'Outfit';
  color: #FFF;
  font-size: 35px;
  font-weight: bold;
  padding-left: 40px;
  display: inline-block;
  background-image: url("../img/subheading-arrow.svg");
  background-repeat: no-repeat;
  background-position: 0px;

  font-size: 40px;
}

.questionario-quiz-item {
  background-color: #171717;
  border-radius: 15px;
  padding: 35px;
  width: 70%;
  display: block;
  margin: auto;
  margin-top: 50px;
  text-align: left;
  display: none;

  width: 100%;
}

.questionario-quiz-item-title {
  font-size: 20px;
  line-height: 26px;
  color: #FFF;
  font-weight: bold;
  margin-bottom: 30px;

  font-size: 26px;
}

.questionario-quiz-item-answer {
  padding: 20px;
  padding-left: 50px;
  background-color: #000000;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid #1a1a1a;
  color: #FFF;
  position: relative;
  cursor: pointer;

  font-size: 22px;
}

.questionario-quiz-item-answer.active {
  background-color: #373737;
  border: 1px solid #4d4d4d;
}

.questionario-quiz-item-answer:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: #1b1b1b;
  left: 16px;
  border-radius: 100px;
  top: 50%;
  margin-top: -10px;
}

.questionario-quiz-item-answer.active:before {
  background-color: #6e0000;
  border: 1px solid #e20000;
}

.questionario-quiz-item-answer.active:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  background-color: #e20000;
  left: 22px;
  border-radius: 100px;
  top: 50%;
  margin-top: -4px;
}


.questionario-quiz-item-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.questionario-quiz-item-action-btn-advance {
  background-color: #e20000;
  border-radius: 100px;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
  font-family: 'Karla';
  font-size: 12px;
  padding: 8px 30px 8px 15px;
  cursor: pointer;
  background-image: url("../img/icon-arrow-right.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: calc(100% - 8px);
}

.questionario-quiz-item-action-btn-back {
  background-color: transparent;
  border-radius: 100px;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
  font-family: 'Karla';
  font-size: 12px;
  padding: 8px 15px 8px 30px;
  cursor: pointer;
  background-image: url("../img/icon-arrow-left.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 8px;
}

.questionario-quiz-item#passo-1 {
  display: block;
}

.questionario-result {
  background-color: #171717;
  border-radius: 15px;
  padding: 35px;
  width: 70%;
  display: none;
  margin: auto;
  margin-top: 50px;
  text-align: left;
  position: relative;
  text-align: center;

  width: 100%;
}

.questionario-result-icon {
  background-color: #171717;
  border-radius: 100px;
  text-align: center;
  font-size: 45px;
}

.questionario-result-title {
  display: block;
  font-family: 'Outfit';
  color: #FFF;
  font-weight: bold;
  font-size: 30px;
  margin-top: 30px;
  text-align: left;
}

.questionario-result-body {
  margin-top: 30px;
  color: #FFF;
  text-align: left;
}

.questionario-result-body h1 {
  font-weight: bold;
  font-size: 19px;
}

.questionario-result-body span {
  display: block;
  line-height: 20px;
  font-size: 15px;
}

.questionario-result-body h3 {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 10px;
}

.questionario-result-body ul {
  padding-left: 20px;
}

.questionario-result-body ul li {
  line-height: 20px;
}

.questionario-result .typed-cursor {
  display: none!important;
}

.questionario-result-cta {
  background-color: #e20000;
  border: 0;
  padding: 16px 40px;
  border-radius: 100px;
  display: block;
  margin: auto;
  margin-top: 40px;
  font-weight: bold;
  font-family: 'Karla';
  text-transform: uppercase;
  color: #FFFF;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.beneficios {
  padding: 100px 0px;
  background-color: #171717;
}

.beneficios-content {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
  text-align: center;
}

.beneficios-title {
  font-family: 'Outfit';
  color: #FFF;
  font-size: 35px;
  font-weight: bold;
  padding-left: 40px;
  display: inline-block;
  background-image: url("../img/subheading-arrow.svg");
  background-repeat: no-repeat;
  background-position: 0px;

  font-size: 40px;
}

.beneficios-items {
  width: 70%;
  width: 100%;
  display: block;
  margin: auto;
  margin-top: 50px;

  width: 100%;
}

.beneficios-items li {
  width: 100%;
  background-color: #1e1e1e;
  padding: 20px 18px;
  padding-left: 60px;
  border-radius: 10px;
  margin-top: 10px;
  color: #FFF;
  text-align: left;
  background-image: url("../img/icon-check.svg");
  background-size: 26px;
  background-position: 20px;
  background-repeat: no-repeat;

  font-size: 22px;
}

.beneficios-items li strong {
  font-weight: bold;
}

.certificado {
  padding: 100px 0px;
  /* background-color: #171717; */
}

.certificado-content {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
  text-align: center;
}

.certificado-title {
  font-family: 'Outfit';
  color: #FFF;
  font-size: 30px;
  font-weight: bold;
  padding-left: 40px;
  display: inline-block;
  background-image: url("../img/subheading-arrow.svg");
  background-repeat: no-repeat;
  background-position: 0px;
}

.certificado-body {
  padding: 30px;
  display: flex;
  background-color: #d4d4d4;
  border-radius: 15px;
  margin-top: 50px;
  width: calc(100% - 180px);
  align-items: center;
}

.certificado-body-text {
  text-align: left;
  padding-right: 40px;
  font-size: 22px;
  color: #000000;
  line-height: 32px;
}

.certificado-body-text h3 {
  font-family: 'Outfit';
  display: block;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 32px;
}

.certificado-body-text b {
  font-weight: bold;
}

.certificado-body-img {
  width: 400px;
  border-radius: 10px;
  margin-right: -210px;
}

.cursos {
  padding: 100px 0px;
  background-color: #171717;
}

.cursos-content {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
  text-align: center;
}

.cursos-title {
  font-family: 'Outfit';
  color: #FFF;
  font-size: 35px;
  font-weight: bold;
  padding-left: 40px;
  display: inline-block;
  background-image: url("../img/subheading-arrow.svg");
  background-repeat: no-repeat;
  background-position: 0px;

  font-size: 40px;
}

.cursos-items {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.cursos-item {
  width: 100%;
  padding: 20px;
  background-color: #1e1e1e;
  border-radius: 10px;
  text-align: left;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.2s linear;
  text-decoration: none;
}

.cursos-item.inactive {
  pointer-events: none;
  opacity: 0.5;
}

.cursos-item-title {
  display: block;
  text-align: left;
  color: #FFF;
  font-family: 'Outfit';
  font-weight: bold;
  font-size: 18px;
}

.cursos-item-btn {
  background-color: transparent;
  border: 2px solid #FFF;
  border-radius: 100px;
  font-family: 'Outfit';
  color: #FFF;
  padding: 6px 24px;
  margin-top: 70px;
  transition: all 0.2s linear;
  cursor: pointer;
}

.cursos-item:hover {
  background-color: #252424;
}

.cursos-item:hover .cursos-item-btn {
  background-color: #e20000;
  border-color: #e20000;
}

.cursos-item-icon {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 0;
  right: -60px;
  background-size: 70px;
  background-repeat: no-repeat;
  background-position: 20px;
  background-color: #252424;
  border-radius: 100%;
}

.cursos-item-icon.bem-estar-social {
  background-image: url("../img/icon-curso-bem-estar-social.png");
}

.cursos-item-icon.bem-estar-mental {
  background-image: url("../img/icon-curso-bem-estar-mental.png");
}

.cursos-item-icon.bem-estar-fisico {
  background-image: url("../img/icon-curso-bem-estar-fisico.png");
}

.footer {
  padding: 10px 0px;
  background-color: #141414;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: #FFF;
  font-size: 12px;
}

.footer-copyright {
  width: 160px;
  height: 50px;
  font-size: 0px;
  background-image: url("../img/euconquisto-logo-white.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}






.educacao-corporativa {
  background-color: #171717;
  padding-bottom: 90px;
}

.educacao-corporativa-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 90px 0px;
  gap: 70px;
}

.educacao-corporativa-column {
  width: 50%;
}

.educacao-corporativa-column img {
  width: 100%;
  border-radius: 15px;
}

.educacao-corporativa-tag {
  border-radius: 5px;
  padding: 4px 12px 6px 35px;
  color: #FFF;
  font-family: 'Outfit';
  font-weight: bold;
  font-size: 14px;
  background-color: #1e1e1e;
  background-image: url("../img/icon-study.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 10px 6px;
}

.educacao-corporativa-tag.form {
  margin: auto;
  display: block;
  width: 192px;
  margin-bottom: 30px;
}

.educacao-corporativa-title {
  font-family: 'Outfit';
  font-weight: 400;
  color: #FFF;
  font-size: 40px;
  display: block;
  margin-top: 30px;
}

.educacao-corporativa-title b {
  font-weight: 700;
}

.educacao-corporativa-text {
  color: #FFF;
  font-size: 18px;
  line-height: 28px;
  display: block;
  margin-top: 30px;
}

.educacao-corporativa-btn {
  background-color: #e20000;
  border: 0;
  padding: 10px 25px;
  padding-right: 40px;
  border-radius: 100px;
  margin-top: 30px;
  font-weight: bold;
  font-family: 'Karla';
  text-transform: uppercase;
  color: #FFFF;
  font-size: 16px;
  cursor: pointer;
  background-image: url("../img/icon-arrow-right.svg");
  background-size: 20px;
  background-position: calc(100% - 10px);
  background-repeat: no-repeat;
}

.educacao-corporativa-processos {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
  padding-bottom: 90px;
}

.educacao-corporativa-processos-title {
  font-family: 'Outfit';
  font-weight: 400;
  color: #FFF;
  font-size: 30px;
  display: block;
  text-align: center;
}

.educacao-corporativa-processos-title b {
  font-weight: 700;
}

.educacao-corporativa-processos-items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}

.educacao-corporativa-processos-item {
  width: 25%;
  padding: 20px;
  background-color: #000000;
  border-radius: 10px;
}

.educacao-corporativa-processos-item-tag {
  background-color: #393939;
  border-radius: 4px;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
  font-family: 'Karla';
  font-size: 12px;
  padding: 4px 9px;
  cursor: pointer;
}

.educacao-corporativa-processos-item-text {
  display: block;
  color: #FFF;
  margin-top: 22px;
  line-height: 25px;
}

.aspectos-nr {
  padding: 0px 25px;
  color: #FFF;
}

.aspectos-nr-title {
  font-size: 23px;
  line-height: 26px;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}

.aspectos-nr-item {
  border: 1px solid #2e2c2c;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.aspectos-nr-item:last-child {
  margin-bottom: 0px;
}

.aspectos-nr-item-title {
  display: block;
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 21px;
}

.aspectos-nr-item-description {
  line-height: 24px;
  font-size: 15px;
}

.cursos-ativcare {
  padding: 100px 0px;
}

.cursos-ativcare-content {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
}

.cursos-ativcare-divider {
  width: 100%;
  height: 1px;
  background-color: #1d1d1d;
  margin: 40px 0px;
}

.cursos-ativcare-columns {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 30px 0px;
  gap: 70px;
}

.cursos-ativcare-column-title {
  font-family: 'Outfit';
  font-weight: 400;
  color: #FFF;
  font-size: 40px;
  display: block;
}

.cursos-ativcare-column-title:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 15px;
  vertical-align: middle;
}

.cursos-ativcare-column-title.bem-estar-social:before {
  background-image: url("../img/icon-curso-bem-estar-social.png");
}

.cursos-ativcare-column-title.bem-estar-mental:before {
  background-image: url("../img/icon-curso-bem-estar-mental.png");
}

.cursos-ativcare-column-btn {
  background-color: #222326;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 10px;
  cursor: pointer;
  border: 0;
  margin-top: 20px;
}

.cursos-ativcare-column-btn-play {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 100px;
  background-color: #e20000;
  background-image: url("../img/icon-play.svg");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.cursos-ativcare-column-btn-label {
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
  font-family: 'Karla';
  font-size: 13px;
}

.cursos-ativcare-title {
  font-family: 'Outfit';
  color: #FFF;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-bottom: 60px;
}

.cursos-ativcare-title:before {
  content: "";
  width: 40px;
  height: 20px;
  display: inline-block;
  background-image: url("../img/subheading-arrow.svg");
  background-repeat: no-repeat;
  background-position: 0px;
}


.outros-cursos-item.bem-estar-social {
  background-image: url("../img/bem-estar-social.png");
}

.outros-cursos-item.bem-estar-fisico {
  background-image: url("../img/bem-estar-fisico.png");
}

table {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
  border: 1px solid #2e2c2c;
  border-radius: 10px;
  padding: 25px;
  padding-bottom: 0px;
}

table thead {
  text-align: left;
  border-bottom: 1px solid #2e2c2c;
}

table thead tr {
  color: #FFF;
  font-size: 20px;
  font-weight: 800;
}

table thead tr th {
  padding-bottom: 25px;
}

table tbody {
  color: #FFF;
}

table tbody tr {
  border-bottom: 1px solid #2e2c2c;
}

table tbody tr:last-child {
  border-bottom: 0px;
}

table tbody tr td {
  padding: 20px 0px;
  line-height: 26px;
  font-size: 18px;
}

.formulario {
  background-color: #171717;
}

.formulario-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 100px 0px;
  gap: 80px;
}

.formulario-column {
  width: 50%;
}

.formulario-column-title {
  display: block;
  color: #FFF;
  font-family: 'Outfit';
  font-size: 30px;
  line-height: 38px;
  font-weight: bold;
}

.formulario-column-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.formulario-column-item {
  display: flex;
  gap: 20px;
}

.formulario-column-item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  border-radius: 100px;
  font-size: 25px;
}

.formulario-column-item-text {
  width: calc(100% - 80px);
}

.formulario-column-item-text-title {
  font-weight: 600;
  color: #FFF;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

.formulario-column-item-text p {
  color: #939393;
  font-size: 17px;
  line-height: 22px;
  display: block;
}

.formulario-frame-form {
  background-color: #FFF;
  padding: 30px;
  border-radius: 10px;
}

.formulario-frame-titulo {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
}

.formulario-frame-group {
  display: flex;
  gap: 10px;
}

.formulario-frame-campo {
  width: 100%;
  margin-top: 15px;
}

.formulario-frame-label {
  width: 100%;
  display: block;
}

.formulario-frame-input {
  width: 100%;
  display: block;
  border-radius: 8px;
  height: 42px;
  border: 1px solid #888888;
  margin-top: 6px;
  padding-left: 10px;
}

.formulario-frame-select {
  width: 100%;
  display: block;
  border-radius: 8px;
  height: 42px;
  border: 1px solid #888888;
  margin-top: 6px;
  padding-left: 10px;
}

.formulario-frame-termo {
  margin-top: 20px;
  font-size: 13px;
  line-height: 15px;
}

.formulario-frame-link {
  
}

.formulario-frame-botao {
  background-color: #e20000;
  border-radius: 10px;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
  font-family: 'Karla';
  font-size: 13px;
  padding: 18px 0px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}

.formulario-iframe {
  height: 920px;
  width: 100%;
  border: 0;
}

.trailer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}

.trailer-content {
  position: absolute;
  top: 70px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trailer-header {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 70px;
  background-color: #000;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  padding: 0px 25px;
  align-items: center;
}

.trailer-header-title {
  font-weight: 700;
  color: #FFF;
}

.trailer-header-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  background-color: #e20000;
  background-image: url("../img/icon-close.svg");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}


@media screen and (max-width: 768px) {
  .mobile {
    display: block;
  }

  .header-lp {
    /* background-color: #000;
    border-bottom: 1px solid #161616; */
  }

  .header-logo {
    width: 160px;
  }

  .header-menu {
    position: fixed;
    z-index: 9999;
    top: 74px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .header-menu-item {
    width: 100%;
    text-align: center;
    padding: 21px 0px;
    border-bottom: 1px solid #161616;
  }

  .header-menu-item-signin {
    width: calc(100% - 20px);
    margin-top: 15px;
    padding: 18px 20px;
    text-align: center;
  }

  .header-menu-btn {
    display: block;    
    width: 36px;
    height: 36px;
    position: absolute;
    top: 19px;
    right: 15px;
    cursor: pointer;
    border: 0;
    border-radius: 100px;
    background-color: #e20000;
    background-image: url("../img/icon-menu.svg");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
  }

  .banner-lp {
    /* padding-top: 74px; */
  }

  .banner-center-content {
    padding: 0px 25px;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .banner-title {
    font-size: 40px;
    line-height: 50px;
  }

  .banner-subtitle {
    width: 100%;
    font-size: 17px;
    line-height: 24px;
  }

  .banner-cta {
    padding: 14px 20px;
    line-height: 22px;
  }

  .educacao-corporativa-content {
    padding: 50px 25px;
    flex-direction: column;
  }

  .educacao-corporativa-column {
    width: 100%;
    text-align: center;
  }

  .educacao-corporativa-title {
    font-size: 30px;
    line-height: 39px;
    text-align: center;
  }

  .educacao-corporativa-btn {
    width: 100%;
    padding: 18px 0px;
  }

  .educacao-corporativa-processos {
    padding-bottom: 30px;
  }

  .educacao-corporativa-processos-items {
    margin-top: 40px;
    flex-direction: column;
    padding: 0px 25px;
  }

  .educacao-corporativa-processos-item {
    width: 100%;
  }

  table {
    display: none;
    margin: 0px 25px;
    width: calc(100% - 50px);
  }

  .cursos-ativcare {
    padding: 50px 25px;
    padding-bottom: 20px;
  }

  .cursos-ativcare-title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
  }

  .cursos-ativcare-title:before {
    display: none;
  }

  .cursos-ativcare-columns {
    flex-direction: column;
  }

  .cursos-ativcare-divider {
    margin: 10px 0px;
  }
  
  .cursos-ativcare-columns.reverse {
    flex-direction: column-reverse;
  }

  .cursos-ativcare-column-title {
    font-size: 23px;
    text-align: center;
  }

  .cursos-ativcare-column-title:before {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
  }

  .cursos-ativcare-column-btn {
    width: 100%;
    justify-content: space-between;
  }

  .educacao-corporativa-text {
    text-align: center;
    font-size: 16px;
  }
  

  .beneficios {
    padding: 50px 25px;
  }

  .beneficios-title {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 10px;
    padding-left: 0px;
    background-image: unset;
  }

  .beneficios-items {
    margin-top: 20px;
  }

  .beneficios-items li {
    font-size: 17px;
    line-height: 22px;
  }

  .certificado {
    padding: 50px 25px;
  }

  .certificado-title {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 10px;
    padding-left: 0px;
    background-image: unset;
  }

  .certificado-body {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    padding: 20px;
  }

  .certificado-body-text {
    margin-top: 30px;
    padding-right: 0px;
  }

  .certificado-body-text h3 {
    text-align: center;
    font-size: 22px;
  }

  .certificado-body-img {
    margin-right: unset;
    width: 100%;
  }

  .certificado-body-text {
    font-size: 18px;
    text-align: center;
  }

  .formulario-content {
    gap: 50px;
    padding: 50px 25px;
    flex-direction: column;
  }

  .formulario-column {
    width: 100%;
  }

  .formulario-column-title {
    font-size: 26px;
    line-height: 33px;
    text-align: center;
  }

  .formulario-frame-titulo {
    font-size: 19px;
    line-height: 23px;
  }

  .formulario-frame-group {
    flex-direction: column;
  }

  .formulario-frame-label {
    font-size: 14px;
    line-height: 20px;
  }

  .formulario-iframe {
    height: 970px;
  }

  .footer-content {
    justify-content: center;
  }

  .footer-text {
    display: none;
  }
}