@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Orbitron:wght@400..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

  input,
  select,
  textarea,
  button {
    font-family: 'Titillium Web', sans-serif;
    /* font-family: 'Be Vietnam Pro', sans-serif; */
  }

  html {
    scroll-behavior: smooth
  }

  body {
    background-color: black;
    font-family: "Titillium Web", sans-serif;
  }

  
.btn-login{
  background-image: linear-gradient(to right, #17D26D 0%, #56B4D3  51%, #348F50  100%);
  /* margin: 10px; */
  /* padding: 10px 15px; */
  text-align: center;
  /* text-transform: uppercase; */
  background-size: 200% auto;
  /* box-shadow: 0 0 20px #eee; */
  border-radius: 10px;
  display: block;
  font-weight: bold;
}
  
.tverde {
  color: #17D26D;
}

.tazul {
  color: #08f1be;
}

.tvermelho {
  color: #df4a4a;
}

.fs-1 {
  font-size: 2.5rem; /* Equivalente a fs-1 */
}

.fs-2 {
  font-size: 2rem; /* Equivalente a fs-2 */
}

.fs-3 {
  font-size: 1.75rem; /* Equivalente a fs-3 */
}

.fs-4 {
  font-size: 1.5rem; /* Equivalente a fs-4 */
}

.fs-5 {
  font-size: 1.25rem; /* Equivalente a fs-5 */
}

.fs-6 {
  font-size: 1rem; /* Equivalente a fs-6 */
}

.fs-7 {
  font-size: 0.9rem;
}

.fs-8 {
  font-size: 0.8rem;
}

.bg-cinzaescuro {
  background-color: #101010;
}

.bg-verde {
  background-color: #19DF74;
}

.bg-cinzaclaro {
  background-color: #242424;
  background: #242424;
}

.fw-bold {
  font-weight: bold;
}

.btn-lermais {
  /* background-color: #19DF74; */
  background-color: white;
  height: 30px;
  border-radius: 25px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.8rem;
}

.sublinhado-customizado {
  padding: 30px 0 12px;
  position: relative;
  z-index: 1; /* Adiciona um z-index maior que o do pseudo-elemento */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); /* Adiciona sombra ao texto */
}

.sublinhado-customizado::before {
  content: "";
  position: absolute;
  left: 55%;
  bottom: 16px;
  width: 100%;
  height: 14px;
  transform: skew(-12deg) translateX(-50%);
  background: linear-gradient(90deg, rgba(25, 223, 116, 0.5), rgba(7, 224, 176, 0.5)); /* Aplica o degradê com transparência */
  z-index: -1; /* Garante que o sublinhado fique abaixo do texto */
}

.sublinhado-customizado-laranja {
  padding: 30px 0 12px;
  position: relative;
  z-index: 1; /* Adiciona um z-index maior que o do pseudo-elemento */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); /* Adiciona sombra ao texto */
}

.sublinhado-customizado-laranja::before {
  content: "";
  position: absolute;
  left: 55%;
  bottom: 16px;
  width: 100%;
  height: 14px;
  transform: skew(-12deg) translateX(-50%);
  background: linear-gradient(90deg, rgba(25, 223, 116, 0.5), rgba(219, 85, 32, 0.5)); /* Aplica o degradê com transparência */
  z-index: -1; /* Garante que o sublinhado fique abaixo do texto */
}

.sublinhado-customizado-branco {
  padding: 30px 0 10px;
  position: relative;
  z-index: 1; /* Adiciona um z-index maior que o do pseudo-elemento */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); /* Adiciona sombra ao texto */
}

.sublinhado-customizado-branco::before {
  content: "";
  position: absolute;
  left: 55%;
  bottom: 16px;
  width: 100%;
  height: 14px;
  transform: skew(-12deg) translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  z-index: -1; /* Garante que o sublinhado fique abaixo do texto */

}

@media screen and (max-width : 991px) {
  .card-biground-right {
    border: 5px solid #fff;
    border-radius: 40px;
    padding: 20px;
    z-index: 2;
    top: -50px;
  }
  
  .card-biground-left {
    outline: 5px solid #19DF74;
    border-radius: 40px;
    padding: 20px;
    z-index: 1;
    padding-bottom: 60px;
  }
 
}

@media screen and (min-width : 990px) {
  .card-biground-right {
    border: 5px solid #fff;
    border-radius: 40px;
    padding: 10px;
    z-index: 2;
  }
  
  .card-biground-left {
    outline: 5px solid #19DF74;
    border-radius: 40px;
    padding-right: 50px;
    z-index: 1;
    left: 28px;
  }
}


.custom-list li {
  list-style: none; /* Remove o marcador padrão */
  position: relative;
  padding-left: 25px; /* Espaço para o ícone */
}

.custom-list li::before {
  content: "\f101"; /* Código do ícone FontAwesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

.floating-close {
  position: absolute;
  top: -30px;
  right: 0px;
  z-index: 1051;
  background-color: white; /* Define a cor de fundo como branco */
  border: none; /* Remove a borda padrão */
  color: black; /* Altere a cor do ícone para preto, se necessário */
  opacity: 1; /* Garante que o botão esteja totalmente opaco */
}


@media screen and (max-width : 991px) {
  .icon-module {
    position: absolute;
    transform: translate(-35%, -35%);
    top: 0px;
    left: 0px;
  }
 
}

@media screen and (min-width : 990px) {
  .icon-module {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 60px;
    left: 0px;
  }
  
}

.profile-image {
  position: absolute;
  top: -30px;
  left: 25%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  outline: 5px solid #242424; /* Borda branca ao redor da imagem */
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  position: absolute;
  top: 10px;
  left: 135px;
  color: white;
  font-style: italic;
  overflow: auto;
  z-index: 10;
}

.bg-fundo-dobrainicial {
  background: url("/img/formacao/FundoDobraInicial.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-fundo-gradienteduplo {
  background: url("/img/formacao/FundoGradienteDuplo.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-fundo-gradienteduploazul {
  background: url("/img/formacao/FundoGradienteDuploAzul.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-glass {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.3); 
}

/* WHATS */
/* WHATS */
/* WHATS */
/* WHATS */

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:20px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
  z-index:100;
}

.my-float{
	margin-top:16px;
}







  .fundoaulas {
    background: black;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
  }

  .bg-black {
    background-color: black;
  }

  .bg-black-transparent {
    background-color: rgba(0, 0, 0, 0.55);
  }

  .bg-fundo-topo {
    background: url("/img/formacao/FundoTopo.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bg-fundo-renan {
    background: url("/img/formacao/FundoRenan.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bg-fundo-grafico {
    background: url("/img/formacao/FundoGrafico.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bg-fundo-granulado {
    background: url("/img/formacao/FundoGranulado.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bg-fundo-granulado-cinza {
    background: url("/img/formacao/FundoGranuladoCinza.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bg-fundo-gradiente {
    background: url("/img/formacao/FundoGradiente.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bg-fundo-modulos {
    background: url("/img/formacao/FundoModulos.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bg-texturaescuro {
    background: url("/img/formacao/MasterclassObrigadoFundo.png") no-repeat center center fixed;
    ;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
  }

  .bg-verdeescuro {
    background-color: #020E0D;
  }




  .fonte-verde {
    color: #42bb8f;
  }

  h1 {
    /* font-family: 'Bebas Neue', cursive; */
    font-family: "Titillium Web", sans-serif;
  }

  h2 {
    /* font-family: 'Titillium Web', sans-serif; */
    /* font-family: 'Bebas Neue', cursive; */
    font-family: "Titillium Web", sans-serif;
    /* background: linear-gradient(90deg, #14B895 10%, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
  }

  h3 {
    /* font-family: 'Bebas Neue', cursive; */
    /* font-family: 'Maven Pro', sans-serif; */
    font-family: "Titillium Web", sans-serif;
  }

  .h3-maior {
    font-size: 1.5em;
    color: #e0a729;
  }

  h4 {
    /* font-family: 'Montserrat', sans-serif; */
    /* font-family: 'Be Vietnam Pro', sans-serif; */
    /* font-family: 'Maven Pro', sans-serif; */
    font-family: "Titillium Web", sans-serif;
  }

  h5 {
    /* font-family: 'Maven Pro', sans-serif; */
    font-family: "Titillium Web", sans-serif;
  }

  destaque {
    font-size: 60px;
    display: inline;
  }

  .titulo {
    padding: 4px 6px;
    line-height: 1.4;
    /* adjust this to avoid overlapping the padding */
    /* font-weight: 700; */
    background-color: white;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .titulo-verde {
    padding: 4px 6px;
    line-height: 1.4;
    /* adjust this to avoid overlapping the padding */
    /* font-weight: 700; */
    background-color: #42bb8f;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
  }

  .subtitulo {
    padding: 4px 6px;
    line-height: 1.4;
    /* adjust this to avoid overlapping the padding */
    /* font-weight: 700; */
    background-color: gray;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .subtitulo-vermelho {
    padding: 4px 6px;
    line-height: 1.4;
    /* adjust this to avoid overlapping the padding */
    /* font-weight: 700; */
    background-color: #F15B5B;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
  }

  @media screen and (max-width : 991px) {
    .texto-maior {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 22px;
      font-weight: 100;
    }

    .texto {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 22px;
      font-weight: 100;
    }

    .texto-menor {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 19px;
      font-weight: 100;
    }
  }

  @media screen and (min-width : 990px) {
    .texto-maior {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 22px;
      font-weight: 100;
    }

    .texto {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 19px;
      font-weight: 100;
    }

    .texto-menor {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 19px;
      font-weight: 100;
    }
  }

  .text-black {
    color: black;
  }

  /*  .text-verde {
    color: #19DF74;
  } */

  h6 {
    font-family: 'Montserrat', sans-serif;
  }

  .citacao {
    /* font-family: 'Titillium Web', sans-serif; */
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 22px;
  }

  .formulario {
    height: 290px;
    border-style: hidden;
    overflow: hidden;
  }

  .rule {
    margin-left: 0;
    border: 02px;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    text-align: center;
    width: 100%;
    background-color: white;
  }

  .btn-verde {
    background-color: #19DF74;
    border-radius: 25px;
    font-family: 'Titillium Web', sans-serif;
    line-height: 130%;
    font-size: 20px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .btn-verde:hover {
    color: #050801;
    /* box-shadow: 0px 0px 5px #03e9f4, 0px 0px 25px #03e9f4, 0px 0px 50px #03e9f4, 0px 0px 100px #03e9f4; */
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
  }

  .fundo-azul {
    background-color: #0e151b;
  }

  /* REFERENTE AO FORMULÁRIO */
  input:-webkit-autofill,
  input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
  }

  input[data-autocompleted] {
    background-color: transparent !important;
  }


  .form__group {
    position: relative;
    padding: 15px 0 0;
    /* margin-top: 10px; */
    width: 100%;
    color: #fff;  
  }
  
  .form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
  /*   font-size: 1.3rem; */
    color: #fff;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
  }
  
  .form__field::placeholder {
    color: transparent;
  }
  
  .form__field:placeholder-shown ~ .form__label {
  /*   font-size: 1.3rem; */
    cursor: text;
    top: 20px;
  }
  
  .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #fff;
  }
  
  .form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, #0a6132, #17D26D);
    border-image-slice: 1;
  }
  
  .form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #17D26D;
    font-weight: 700;
  }
  
  /* reset input */
  .form__field:required, .form__field:invalid {
    box-shadow: none;
  }

  /* card title */
  .ccard-title {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Depoimentos */
  .MultiCarousel {
    float: left;
    overflow: hidden;
    padding: 15px;
    width: 100%;
    position: relative;
  }

  .MultiCarousel .MultiCarousel-inner {
    transition: 1s ease all;
    float: left;
  }

  .MultiCarousel .MultiCarousel-inner .item {
    float: left;
  }

  .MultiCarousel .MultiCarousel-inner .item>div {
    text-align: center;
    padding: 10px;
    margin: 10px;
    background: #f1f1f1;
    color: #666;
  }


  @media screen and (max-width : 991px) {
    .MultiCarousel .leftLst {
      position: absolute;
      border-radius: 50%;
      top: calc(0% - 20px);
      /*     left: -75px; */
    }

    .MultiCarousel .rightLst {
      position: absolute;
      border-radius: 50%;
      top: calc(0% - 20px);
      /* right: -75px; */
    }
  }


  @media screen and (min-width : 990px) {
    .MultiCarousel .leftLst {
      position: absolute;
      border-radius: 50%;
      top: calc(50% - 20px);
      /* left: -75px; */
    }

    .MultiCarousel .rightLst {
      position: absolute;
      border-radius: 50%;
      top: calc(50% - 20px);
      /* right: -75px; */
    }
  }



  /*
  .MultiCarousel .leftLst {
    left: 0;
  }

  .MultiCarousel .rightLst {
    right: 0;
  }

  .MultiCarousel .leftLst.over,
  .MultiCarousel .rightLst.over {
    pointer-events: none;
    background: #ccc;
  } */


  /* Accordion FAQ */

  .accordion .card {
    background: none;
    border: none;
    text-decoration: none;
    border: none;
  }

  .accordion .card-header {
    background: none;
    border: none;
    padding: .4rem 1rem;
  }

  .accordion .card-header h2 span {
    float: left;
    margin-top: 10px;
  }

  .accordion .card-header .btn {
    color: #fff;
    text-align: left;
    position: relative;
    font-weight: 500;
    padding-left: 2rem;
    text-decoration: none;
  }

  .accordion .btn {
    background: none;
    color: #fff;
    padding-bottom: 0px;
  }

  .accordion .btn:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;

  }

  .accordion .card-header .btn:hover {
    color: #19DF74;
  }

  .accordion .card-body {
    color: #fff;
    padding: 0.5rem 3rem;
  }

  .accordion .btn::after {
    background-image: url("");
  }

  .accordion .btn:not(.collapsed)::after {
    background-image: url("");
  }

  .accordion .btn:not(.collapsed) .fa-chevron-circle-down {
    transform: rotate(-180deg);
    transition: 0.5s ease;
  }

  .accordion .btn:not(.collapsed) {
    color: #19DF74;
  }



  /* usado nos cards de ajuda */
  .blockquote-custom {
    position: relative;
    font-size: 1.1rem;
  }

  .blockquote-custom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: 50px;
  }

  .blockquote-custom-icon-q {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -50px;
  }

  .blockquote-custom:hover .blockquote-custom-icon {
    transition: background-color 0.3s ease-in-out;
    background-color: #e0a729;
  }

  .bg-light-gray {
    background-color: #e9ecef;
  }