@charset "UTF-8";

/*!
 * Este arquivo faz adaptação do CSS do bootstrap,
 * para regra do projeto definido pelo autor.
 * Bootstrap v5.3.2 (https://getbootstrap.com/)
 * @Copyright 2024 
 * Author CalungaSoft
 */

/* ===================================================== RESET ======================================================== */

/* Importa a fonte Montserrat do Google Fonts */
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* Define estilos de reset globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif !important;
    transition: 0.3s;
}

/* Define o cálculo de largura e altura levando em consideração a borda e o preenchimento */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Define variáveis CSS globais */
:root {
    --sf-color-brand: #DF3E2B;
    --sf-color-brand-hover: #E85442;
    --sf-color-dark: #2C2B2B;
    --sf-color-dark-light: #282727;
    --sf-color-dark-strong: #141414;
    --sf-color-dark-focus: #212020;
    --sf-gradient-dark:linear-gradient(180deg, #262525 0%, rgba(38, 37, 37, 0.82) 15.63%, rgba(38, 37, 37, 0.99) 64.89%);
    --sf-color-success: #41C712;
    --sf-color-success-light: #49E014;
    --sf-color-warning: #FFA901;
    --sf-color-warning-light: #FFA901;
    --sf-color-danger: #E01414;
    --sf-color-danger-light: #E01414;
    --sf-color-gray: #979494;
    --sf-color-gray-strong: #625E5E;
    --sf-root-font-size: 16px;
    --sf-body-font-size: 0.9375rem;
    --sf-body-font-weight: 400;
    --sf-body-line-height: 1.53;
    --sf-shadow:0 .5rem 1rem rgba(0, 0, 0,0.1);
}
/*Classes para cores*/
.text-sf-primary
{
    color:var(--sf-color-brand)!important;
}
.text-sf-warning
{
    color:var(--sf-color-warning)!important;
}
/* Define o estilo de seleção */
::selection {
    background-color: var(--sf-color-brand);
    color: #fff;
}

/* Define o estilo padrão para o corpo do documento */
body {
    font-size: var(--sf-body-font-size);
    font-weight: var(--sf-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: #fff !important;
    background-color: var(--sf-color-dark)!important;
    background-color: var(--sf-body-bg);
    -webkit-text-size-adjust: 100%;
}

/* Define estilos padrão para elementos de cabeçalho */
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--bs-heading-color);
}

/* Define estilos de tamanho de fonte para cada nível de cabeçalho */
h1, .h1 {
    font-size: calc(1.3625rem + 1.35vw);
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 2.375rem;
    }
}

h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2, .h2 {
        font-size: 2rem;
    }
}

h3, .h3 {
    font-size: calc(1.2875rem + 0.45vw);
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.625rem;
    }
}

h4, .h4 {
    font-size: calc(1.2625rem + 0.15vw);
}

@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 1.375rem;
    }
}

h5, .h5 {
    font-size: 1.125rem;
}

h6, .h6 {
    font-size: 0.9375rem;
}

/* Define estilos para parágrafos */
p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.5;
}

/* Define estilos para texto pequeno */
small, .small {
    font-size: 85%;
}

@media (max-width: 768px) {
    p {
        font-size: 14px;
    }
    small {
        font-size: 10px;
    }
}

/* Define estilos para texto em negrito */
strong {
    font-weight: bolder;
}

/* Define estilos para links */
a {
    text-decoration: none !important;
    opacity: 0.89;
    color: #fff;
}

a:hover {
    opacity: 1;
}

/* Define estilos para links sem href */
a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

/* Remove a sombra ao focar em links e botões */
a:focus, button:focus {
    box-shadow: none !important;
}

/* Remove a borda ao focar em botões */
button {
    position: relative;
}

/* Remove a borda de elementos de formulário ao focar */
input 
{
    outline: none !important;
}
.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left:20px; 
    margin-top:10px;
    margin-bottom: 15px;
    cursor: pointer;
}
.custom-checkbox input 
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkmark {
    position: absolute;
    top: 0;
    left:0;
    height:15px;
    width:15px;
   background-color: transparent; /* Cor de fundo do checkbox */
   border: 1px solid #BEB6B6; /* Borda do checkbox */
}
.custom-checkbox input:checked + .checkmark 
{
    background-color: var(--sf-color-brand); /* Cor de fundo quando marcado */
    border: 1px solid var(--sf-color-brand); /* Borda quando marcado */
}
.checkmark:after
 {
    content: "";
    position: absolute;
    display: none;
}
.custom-checkbox input:checked + .checkmark:after
 {
    display: block;
}
.custom-checkbox .checkmark:after {
    left:4px;top:2px;
    width:5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.customCheck
{
     padding:10px;
    border:1px solid var(--sf-color-gray-strong);
}
.customCheck.ativo
{
     border:1px solid var(--sf-color-brand);
}
.customCheck .checkmark
{
    display:none;
}
.customCheck.ativo .checkmark
{
    display:unset;
    position:absolute!important;
   left:-8px;
   top:15px;
   background-color:var(--sf-color-dark);
}
ul{
    list-style:none!important;
}
img{
  max-width: 100%;
  height: auto;
}


/* ================================================= COMPONENTES PERSONALIZADOS ================================================== */
.dashboardProgress
{
    display:inline-flex;
    align-items:center;
    gap:10px;
}
.dashboardProgress span
{
    font-size:.6rem;
}
.dashboardProgress progress{
  width:100%;
  background-color: var(--sf-color-dark-focus);
  border-radius:18px;
  height:8px;
  position:relative;
  border:none!important;
}
.progress-success progress::-moz-progress-bar {
  background-color:var(--sf-color-success)!important; 
}
.progress-danger progress::-moz-progress-bar {
  background-color:var(--sf-color-danger)!important; 
}
.progress-warning progress::-moz-progress-bar {
  background-color:var(--sf-color-warning)!important; 
}
/* Define estilos para contêiner .wrapper */
.wrapper {
    display: flex;
    position:relative;
    flex-direction:column;
}
/* Define estilos para o contêiner do carrossel */
.wrapper .carousel-custom {
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    scroll-behavior: smooth;
    display: flex;
    gap:10px;
}

/* Define estilos para itens do carrossel */
.carousel-custom .carousel-custom-item {
    flex: 0 0 auto;
}

/* Define estilos para itens do indicadores do carrossel */
.wrapper .carousel-custom-indicators
{
    padding:10px;
    display:flex;
    gap:10px;
    justify-content:flex-end;
}
.wrapper .carousel-custom-indicators i
{
  top: 50%;
  height:30px;
  width:30px;
  color:var(--sf-color-gray-strong);
  cursor: pointer;
  font-size: 1.2rem;
  text-align: center;
  font-weight:600;
  line-height:30px;
  border:1px solid var(--sf-color-gray);
  border-radius:50%;
  transition: transform 0.1s linear;
}
/* Define estilos de interação para ícones */
.wrapper .carousel-custom-indicators i:active {
    transform:scale(0.9);
}
/* Remove estilos padrões do Bootstrap para botões */
.btn {
    border-radius: 0.1rem !important;
    font-weight: 500 !important;
}

/* Define estilos para botões de diferentes tamanhos */
.btn-sm {
    border-radius: 0.1rem !important;
    padding:13px 50px!important;
}

.btn-lg {
   padding:0 50px;
}

/* Define estilos para botões primários */
.btn-primary {
    background-color: var(--sf-color-brand) !important;
    border-color: var(--sf-color-brand) !important;
}

/* Define estilos para botões primários quando hover */
.btn-primary:hover {
    background-color: var(--sf-color-brand-hover) !important;
    border-color: var(--sf-color-brand-hover) !important;
}

/* Define estilos para botões secundários */
.btn-secondary {
    color: var(--sf-color-gray) !important;
    background-color: var(--sf-color-gray-strong) !important;
    border-color: var(--sf-color-gray-strong) !important;
}

/* Define estilos para botões secundários em formato de contorno */
.btn-outline {
    color: #fff !important;
    border-color: var(--sf-color-gray-strong) !important;
}

/* Define estilos para botões secundários em formato de contorno quando hover */
.btn-outline:hover {
    color: #fff !important;
    background-color: var(--sf-color-gray-strong) !important;
}

/* Define estilos para formulários */
.form-control-custom {
    background-color: var(--sf-color-dark-strong) !important;
    color: var(--sf-color-gray);
    border-radius: 0rem !important;
    border: none !important;
    padding: 12px;
    position: relative;
    width: 100%;
}
.form-control-custom-group
{
    background-color: var(--sf-color-dark-strong) !important;
    color: var(--sf-color-gray)!important;
    border-radius: 0rem !important;
    border: none !important;
    padding: 12px!important;
    position: relative;
}

/* Remove a sombra ao focar em elementos de formulário */
.form-control:focus {
    box-shadow: none !important;
}

/* Define estilos para seletores de formulário */
.form-select-custom {
    background-color: var(--sf-color-dark-strong) !important;
    position: relative;
    width: 100%;
    color: var(--sf-color-gray) !important;
    padding: 15px;
}

/* Define estilos para cartões de poster */
.card-poster {
    position: relative;
    width: 230px;
    height:400px;
    display: flex;
    cursor: pointer;
    padding:10px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: var(--sf-color-dark-strong);
    box-shadow:0 .5rem 1rem rgba(0, 0, 0,0.2);
}
.card-poster .body
{
    position:relative;
    width:100%;
}
.card-poster .body.curso ul
{
  gap:10px;
  display:flex;
  flex-wrap:wrap;
}

.preco li:nth-of-type(1)
{
  color:var(--sf-color-warning-light);
}
.preco li:nth-of-type(2) p small
{
  color:var(--sf-color-gray-strong);
  text-decoration:line-through;
}
.catalogoCurso
{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
}
.catalogoCurso i
{
    color:var(--sf-color-brand)!important;
}
.catalogoCurso span
{
    font-weight:bold;
    color:var(--sf-color-gray);
}
.infoResumoCurso
{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items:center;
}
.infoResumoCurso li:nth-of-type(1) i
{
  color:var(--sf-color-warning)!important;
  font-weight:bold;
}
.infoResumoCurso li:nth-of-type(2) 
{
    color:var(--sf-color-gray);
}
 .infoResumoCurso li:nth-of-type(3)
{
    color:red;
   font-weight:400!important;
}
.list-descCurso
{
    display:flex;
    gap:20px;
    align-items:center;
    flex-wrap:wrap;
}
.list-primary li i
{
    color:var(--sf-color-brand)!important;
}
.list-success li i
{
    color:var(--sf-color-success)!important;
}
.list-descCursoMetodo
{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-content:baseline;
}
.list-descCursoMetodo li 
{
    display:flex;
    gap:10px;
    align-items:center;
}
.list-descCursoMetodo li i
{
  font-size:1.6rem;
}
.list-descCursoMetodo li  a
{
    display:flex;
    gap:10px;
    align-items:center;
}
.list-descCursoMetodo li span,.list-descCurso li span
{
    font-weight:400;
}
.colapCustom{
    text-decoration:none;
    display:flex;
    gap:2em;
    background-color:var(--sf-color-dark-strong);
    padding:1em;
    border-radius:0;
    border-bottom:1px solid #2c2b2b;
}
.colapCustom .colapCustomHeader
{
    display:flex;
    justify-content:space-between;
    width:100%;
    align-items:center;
}
.colapCustom .colapCustomHeader i
{
    font-size:2rem;
}
.colapCustom .title{
    background-color:var(--sf-color-brand);
    color:#fff;
    padding:15px;
    height:40px;
    text-align:center;
    display:flex;
    font-weight:600;
    align-items:center;
}
.colapCustomContent{
    background-color:var(--sf-color-dark-focus);
    padding:1em;
    color:#625E5E;
}

.content-group-card
{
    display:flex;
    gap:20px;
    height:200px;
    overflow-y:hidden;
    overflow-x: auto; /* Adiciona uma barra de rolagem horizontal quando necessário */
    
}
/* Estilizando o indicador da barra de rolagem */
.content-group-card::-moz-scrollbar-thumb{
  background-color: #888; /* cor do indicador */
  border-radius: 6px; /* borda arredondada */
}
.content-group-card .card-video
{
   flex: 0 0 auto; 
}
/*compente de paly de video*/
.play-video
{
   top: 55%;
   height:25px;
   width:25px;
  cursor: pointer;
  font-size:1.2rem;
  text-align: center;
  font-weight:600;
  line-height:28px;
  background-color:var(--sf-color-gray);
  border-radius:50%;
  transition: transform 0.1s linear; 
}

.play-video i
{
      color:var(--sf-color-brand)!important;
}
.play-video-sm i
{
      color:var(--sf-color-brand)!important;
}
.play-video-sm
{
   top: 55%;
   height:15px;
   width:15px;
  cursor: pointer;
  font-size:.9rem;
  text-align: center;
  font-weight:600;
  line-height:85px;
  background-color:var(--sf-color-gray);
  border-radius:50%;
  transition: transform 0.1s linear; 
  b 
}
/* Define estilos de hover para cartões de poster */
.card-poster:hover {
    color: unset !important;
}

/* Define estilos para grupos de elementos */
.group {
    display: flex;
    padding: 10px;
    gap: 10px;
    flex-wrap: wrap;
}

/* Define estilos para cartões de poster em telas pequenas */
@media (min-width: 768px) {
    .card-poster {
        width: 300px;
        height: 400px;
    }
}

/* Define estilos para cartões de poster em tamanho pequeno */
.card-poster-sm {
    position: relative;
    width: 230px;
    height:250px;
    gap:10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding:10px;
    scale: 1;
}
.card-poster-sm .body.live ul
{
    display:flex;
    gap:10px;
    align-items:center;
}
.card-poster-sm .body.categoria ul
{
    display:flex;
    gap:10px;
    justify-content:space-between;
}
.card-poster-sm .body.categoria ul li:nth-of-type(1)
{
    display:flex;
    gap:10px;
    align-items:baseline;
}

/* Define estilos para imagens dentro de cartões de poster em tamanho pequeno */
.card-poster-sm img {
    height:150px;
    border-radius: none !important;
    background-color: var(--sf-color-dark-light);
}

/* Define estilos de hover para cartões de poster em tamanho pequeno */
.card-poster-sm:hover {
    color: unset !important;
    scale:1.0;
    background-color: var(--sf-color-dark-strong);
}
/* Define estilos para cartões de vídeo */
.card-video {
    position: relative;
    width: 220px;
    height: 180px;
    padding: 20px;
    gap: 10px;
    flex-direction: column;
    cursor: pointer;
    justify-content: center;
    display: flex;
    background-color: var(--sf-color-dark);
}

/* Define estilos para o conteúdo do cartão de vídeo */
.card-video .body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card-video .body h6 i{
    font-weight:bold;
    font-size:3.2rem;
    color:var(--sf-color-brand)!important;
}

/* Define estilos para cartões de vídeo em telas pequenas */
@media (min-width: 768px) {
    .card-video {
        width: 200px;
        height: 150px;
    }
}

/* Define estilos para modais */
.modal .modal-dialog .modal-content {
    background: var(--sf-color-dark-light);
    border-radius: 2px !important;
}

/* Define estilos para rodapés de modais */
.modal .modal-dialog .modal-content .modal-footer {
    border: none !important;
}

/* Define estilos para botões no cabeçalho de modais */
.modal .modal-dialog .modal-content .modal-header button {
    color: #fff !important;
    border: none !important;
    font-size:3.2rem;
    font-weight:400;
}

/* Define estilos para rodapés de modais */
.modal .modal-dialog .modal-content .modal-footer {
    border: none !important;
    background-color: var(--sf-color-dark-strong);
}
/*menus*/
 /*primary*/
 .nav-primary
 {
    display:flex;
    padding:10px;
    align-items:baseline;
    justify-content:flex-end;
 }
 .nav-primary-bg
 {
    background-color:var(--sf-color-dark-focus);
 }
 .nav-secundary-bg
 {
     background-color:var(--sf-color-dark);
 }
 .brand img
 {
    width:9rem;
 }
 .nav-primary  ul
 {
    display:flex;
    gap:20px;
    align-items:center;
 }
.nav-item a,i
  {
    color: var(--sf-color-gray)!important;
    font-weight:450;
  }
.nav-item a:hover
{
 color: var(--sf-color-brand)!important;
}
.nav-item.budgest
{
    background-color:var(--sf-color-brand);
    padding:0 10px;
}
.nav-item.budgest a i,span
{
    font-weight:bold;
    color:#fff!important;
}
/* nav secundary*/
.nav-secundary
{
    display:flex;
    flex-direction:column;
    gap:10px;
    width:200px;
  position:absolute;

}
.nav-secundary ul
{
    display:flex;
    gap:10px;
    flex-direction:column;
}
.nav-secundary ul li:last-child
{
    border-top:1px solid var(--sf-color-gray);
    text-align:center;
    padding:10px;
}
.nav-secundary ul li a
{
    color:var(--sf-color-gray);
      font-weight:450;
}
.nav-secundary ul li a:hover
{
    color:var(--sf-color-brand);
}
.mainContentUsers
{
    left:200px;
    position:relative;
    width:calc(100% - 200px);
    min-height:50vh;
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.mainContentUsers .header, .body
{
    padding:20px;
}
.mainContentUsers .header,.contentNotificacao
{
  border-bottom:1px solid var(--sf-color-gray);
}
.mainContentUsers .header .contentTitle
{
    display:flex;
    flex-direction:column;
    align-items:center;
}
.contentNotificacao
{
    display:flex;
    gap:10px;
    width:100%;
    flex-direction:column;
}
.mainContentUsers .header .contentTitle,.contentNotificacao h4
{
    font-weight:700;
    color:var(--sf-color-gray-strong);
}
.mainContentUsers .header .contentTitle,.contentNotificacao p
{
    color:var(--sf-color-gray);
}
.mainContentUsers .body .label
{
    font-weight:500;
    font-size:1.2rem;
}
.boxNotificacao
{
    background-color:var(--sf-color-gray-strong);
    display:flex;
    gap:10px;
    padding:10px;
    flex-wrap:wrap;
    align-items:center;
    box-shadow:var(--sf-shadow);
}
.boxNotificacao .img
{
    width:100px;
    height:100px;
    background-color:var(--sf-color-dark-strong);
}
.boxNotificacao .content
{
    display: flex;
    flex-direction:column;
    gap:4px;
}
.boxNotificacao .content small
{
    color: var(--sf-color-dark);
    font-weight:600;
}
.boxNotificacao .content h6
{
    color:var(--sf-color-brand);
    border: none!important;
    padding:0!important;
    font-weight:bold;
}
div#modal-step .modal-header
{
    border:none;
}
.step {
    display: none;
    color:#fff;
}

.step.active {
    display: flex;
    flex-direction:column;
}
.step .body{
    padding:10px 30px;
    display:flex;
    flex-direction:column;
}
.step .header h4{
  font-size:1.4rem;
  font-weight:bold;
  text-transform:uppercase;
}
.step .header h2{
    background-color:var(--sf-color-brand);
    color:#fff;
    font-weight:bold;
    padding:10px;
    width:50px;
    text-align:center;
}
.step .header h4 span{
    font-size:1rem;
    font-weight:bold;
}

.step .body ul
{
    display:flex;
    flex-direction:column;
}
.step .body ul li
{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:var(--sf-color-gray-strong);
    text-align:center;
    
}
.step .body ul li span
{
    color:var(--sf-color-gray);
    font-weight:bold;
}
.step .modal-footer
{
    display:flex;
    flex-wrap:wrap;
}
.step p{
    color:var(--sf-color-gray);
    font-size:1.1rem;
}
.step span
{
    color:#C8C0C0;
    font-weight:bold;
}
.step .body .content-list
{
    display:flex;
    flex-wrap:wrap;
    text-align:center;
    justify-content:space-between;
}

@media (max-width:960px)
{
     .nav-secundary
     {
        display:none;
     }
     .mainContentUsers
     {
        left:0;
        width:100%;
     }
     
}
/*======Menu buger====================*/
 .menu{cursor:pointer;display:none;}
 .menu .bar{display:block;width:28px;height:3px;border-radius: 3px;
 background: #fff;margin:5px auto;transition: all 0.3s;}
@media(max-width: 480px)
{
    .brand img
     {
        width:7rem;
     }
}
@media(max-width: 760px)
{
     .navigation
     {
        padding:20px 20px!important;
          align-items:center!important;
     }
     .navigation nav
     {
          display:none!important;
     }
      .menu
      {
        display:unset!important;
      }
      .navigation nav .content-search.ativo
        {
          display:unset!important;
        }
}