﻿:root {
    --crumbs-back: #F3F5FA;
    --text-color: #8093A7;
    --border-color: white;
    --hover-color: #357DFD;
}

#crumbs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#crumbs ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

#crumbs li {
    display: flex;
}

#crumbs a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: var(--crumbs-back);
    color: var(--text-color);
    font-size: 14px;
    border: 3px solid var(--border-color);
    transition: background 0.3s, color 0.3s;
}

#crumbs a i {
    font-size: 18px;
}

#crumbs .crumb-home {
    padding: 15px;
    border-radius: 50%;
    margin-right: -20px;
    z-index: 3;
}

#crumbs .crumb-item {
    padding: 10px 25px;
    border-radius: 0 20px 20px 0;
    margin-right: -20px;
    z-index: 2;
    gap: 10px;
}

#crumbs li:last-child .crumb-item {
    margin-right: -10px;
    z-index: 1;
}

#crumbs a:hover {
    background: var(--hover-color);
    color: white;
}

#crumbs a:hover i {
    color: white;
}


.faq a {
    position: fixed;
    z-index: 6001;
    background-color: #2196f3;
    border-radius: 100%;
    border: none;
    outline: none;
    margin: 40px;
    /*right: 0;*/
    bottom: 0;
    max-width: 55px;
    max-height: 55px;
}

.faq i {
    padding: 15px;
    color: white;
}

.faq-button:hover {
    background-color: #1079c9;
}

.fr-element {
    max-height: 768px;
}
/* Classes página base de conhecimento */
.produtos {
    display: flex;
    background-color: #F2F2F2;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}
#conteudo-base {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
    max-height: 300px;
}

.card-produtos {
    border-radius: 12px;
}
.card-produtos .card-header {
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}
.card-produtos .card-content-inner {
    color: #808080;
}

.footer-base-conhecimento {
    width: 100%;
    background-color: #F2F2F2;
}

.faq-title {
    color: #075f7f;
}
.faq-question {
    background-color: #f2f2f2;
    margin-bottom: 5px;
}

.lista-pagination {
    display: flex;
    justify-content: center;
}

.table-arquivo table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

/* Fim página base de conhecimento */

/* tabela de arquivos*/
.table-arquivo table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
}

.table-arquivo table th,
table td {
    padding: .625em;
    text-align: center;
}

/* fim estilos de tabela*/


/* mobile */

@media screen and (max-width: 600px) {
    .table-arquivo table {
        border: 0;
    }

    .table-arquivo table caption {
        font-size: 1.3em;
    }

    .table-arquivo table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .table-arquivo table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    .table-arquivo table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    .table-arquivo table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .table-arquivo table td:last-child {
        border-bottom: 0;
    }

    .fr-element {
        padding: 10px 25px;
    }
    #bntEsquerdoBanner {
        display: none
    }
    #bntDireitoBanner{
        display:none
    }
}

.no-manual-text {
    font-style: italic;
    background-color: #DEE2E4;
    color: dimgrey;
    text-align: center;
    padding: 10px 20px;
    border-radius: 24px;
}

#no-manual {
    display: none;
    text-align: center !important;

}

.manual-content-frame {
    padding: 20px;
}

.chkbox-title {
    padding-top: 12px;
}

.please-login {
    text-align: center !important;
    display: none;
}

.link-container {
    display: inline-flex;
    border: 1px solid grey;
    padding: 5px 10px;
    color: #65747b !important;
}

.icon-share {
    padding-right: 10px;
    border-right: 2px solid gray;
    
}

@media screen and (min-width: 773px) {
    .compartilhar-dialog {
        height: 30% !important;
    }
}

.separator {
    border: 1px solid #7f8183;
    margin: 15px 0px !important;
}


.drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #555;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
  }
  
  .drop-container:hover {
    background: #eee;
    border-color: #111;
  }
  
  .drop-container:hover .drop-title {
    color: #222;
  }
  
  .drop-title {
    color: #444;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
  }
  
  input[type=file] {
    width: 350px;
    max-width: 100%;
    color: #444;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #555;
  }
  
  input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
  }
  
  input[type=file]::file-selector-button:hover {
    background: #0d45a5;
  }

  .reordenarCadastroCurso{

  }

  .justify-content-center {
    justify-content: center !important;
  }

  .manual-preview {
    height: 400px !important;
  }

  .material-symbols-outlined {
    vertical-align: text-bottom;
    font-size: 1.5rem;
  }

  .hidden {
    display: none !important;
  }

  .drag-highlited {
    background-color: #94a4f7 !important;
  }

  .accordion-list {
    width: 100%;
    margin-top: 0;
  }

  .done-questions {
    vertical-align: middle !important;
  }

  .no-manual-found-text {
    text-align: center;
    color: #767879;
    font-family: 'Raleway', sans-serif;
  }

  .aprovado-section {
    display: flex;
    /* justify-content: space-between; */
    justify-content: flex-end;
  }

  .btn-certificado {
    margin-left: 10px;
  }

  .option-avaliacao {
    cursor: default !important;
  }

  .label-resposta-correta {
    color: #0ab30a;
  }

  .row-input-search {
    border-bottom: 2px solid #616364; 
    display: block ruby;
    /* transition: 0.3s; */
    -webkit-transition: border 0.8s;
    -moz-transition:border 0.8s;
    -o-transition:border 0.8s;
    transition:border 0.8s;
  }

  .icon-search-duvida {
    color: #616364;
    -webkit-transition: color 0.8s;
    -moz-transition:color 0.8s;
    -o-transition:color 0.8s;
    transition:color 0.8s;
    /* transition: 0.3s; */
  }


  
  @media screen and (min-width: 763px) {
    .row-tags{
      margin-bottom: 20px !important;
    }
  }

  .title-check-box {
    white-space: break-spaces !important;
  }

  .inner-check-box {
    display: flex !important;
    margin-bottom: auto !important;
  }

  .inner-template-status {
    display: flex !important;
  }

  .inner-template-status>* {
    margin-top: auto !important;
  }

  .list-block .item-link .item-inner.inner-template-status {
    background-position: calc(100% - 16px) bottom !important;
  }

  .no-courses {
    padding: 20px 10px;
    font-size: 20px;
  }

  @media screen and (min-width: 773px) {
    .starting-page {
      padding-top: 150px !important;
      padding-left: 50px;
      padding-right: 60px;
    }
  }

  .icon-btn-previous, .icon-btn-forward {
    /* margin: 15px 0 !important; */

    vertical-align: middle !important;
  }
  

  @media screen and (max-width: 773px) {
    .aprovado-section {
      display: block !important;
    }

    .faq {
      display: none !important;
    }

    .text-aprovado {
      margin-bottom: 13px !important;
    }

    .col-info {
      margin-top: 20px;
    }

    .aprovado-section {
      text-align: center;
    }
  }

  @media screen and (min-width: 773px) {
    
  }

.btn-next-page, .btn-previous-page {
    background-color: white !important;
    border: 1px solid !important;
    }

  .btn-next-page {
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
  }

  .btn-previous-page {
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
  }

  .color-light-green {
    background-color: #6eb57d !important;
    transition: 0.3s;
  }

  .btn-header-aprovado {
    border-radius: 20px;  
    padding: 8px;
  }

  .btn-view-topics {
    padding-right: 15px;
  }

  .btn-view-topics:hover {
    color: #6eb57d;
    background-color: white !important;
    border: 1px solid #6eb57d;
    
  }

  .btn-certificado {
    background-color: white;
    border: 1px solid #E84741;
    transition: 0.3s;
    color: #E84741;
  }

  .btn-certificado:hover {
    background-color: #E84741;
    color: white;
  }

  .btn-resultado {
    background-color: white;
    border: 1px solid #2AE8D8;
    transition: 0.3s;
    color: #2AE8D8;
  }

  .btn-resultado:hover {
    background-color: #2AE8D8;
    color: white;
  }

  .btn-zoom-in {
    background-color: white;
    border: 1px solid #6f6a6a;
    transition: 0.3s;
    color: #6f6a6a;

    margin-left: 10px;
  }

  .btn-zoom-in:hover {
    background-color: #6f6a6a;
    color: white;
  }

  .btn-zoom-in {
    border-radius: 20px;  
    padding: 8px;
  }

  #lblInformacao {
    padding-right: 12px !important;
  }

  .col-info {
    padding-right: 15px !important;
  }



  .text-left {
    text-align: left !important;
  }

  .breadcrumb {
    text-decoration: underline;
    color: #8d9396;
    font-family: sans-serif;
    cursor: default;
    transition: 0.7s;
  }

  .chevron-breadcrumb, .chevron-initial-breadcrumb, .home-breadcrumb {
    vertical-align: bottom;
    font-size: 19px;
    text-decoration: none !important;
  }

  .home-breadcrumb {
    transition: 0.4s;
  }
  .home-breadcrumb:hover {
    color: #2196f3 !important;
    font-size: 30px;
    cursor: pointer !important;
  }

  .chip.topics:hover>.chip-media {
    transition: 0.3s;
    color: #2196f3 !important;
    background-color: white !important;
    padding: 25px;
    font-size: 40px;
    font-weight: 500 !important;
    border: 6px solid #2196f3;

    -webkit-box-shadow: 18px 9px 48px -26px rgba(0,0,0,0.55);
    -moz-box-shadow: 18px 9px 48px -26px rgba(0,0,0,0.55);
    box-shadow: 18px 9px 48px -26px rgba(0,0,0,0.55);
  }

  .chip.topics:hover {
    background-color: #53acf6 !important;
    color: white;
  }

  .chip-label {
    margin-right: 10px;
  }

  .chip-media {
    padding: 20px;
    font-size: 20px;
    border: 4px solid #FFFFFF;
  }

  .chip.topics {
    -webkit-box-shadow: 18px 9px 48px -26px rgba(0,0,0,0.55);
    -moz-box-shadow: 18px 9px 48px -26px rgba(0,0,0,0.55);
    box-shadow: 18px 9px 48px -26px rgba(0,0,0,0.55);
  }

  .chip.topics2 {
    -webkit-box-shadow: 18px 9px 48px -26px rgba(0,0,0,0.55);
    -moz-box-shadow: 18px 9px 48px -26px rgba(0,0,0,0.55);
    box-shadow: 5px 9px 48px -26px rgba(0,0,0,0.55);
  }

  .current-topic-btn, .current-page-btn { 
    color: #8d9396 !important;
    transition: 0.4s;
  }

  .current-topic-btn:hover, .current-page-btn:hover  {
    color: #2196f3 !important;
    font-size: 15px;
    cursor: pointer !important;
  }

  .chevron-initial-breadcrumb:has(+ .current-topic-btn:hover), .home-breadcrumb:has(+ .current-topic-btn:hover),
  .chevron-breadcrumb:has(+ .current-page-btn:hover) {
    transition: 0.4s;
    color: #2196f3 !important;
    font-size: 22px;
    cursor: pointer !important;
  }


  .label-switch {
    padding: 0px 25px !important;
  }

  @media screen and (min-width: 500px) {
    .block-header{
      text-align: right;
    }

    .item-input {
      text-align: center;
    }
    #item-input2 {
        text-align: center;
        display: flex; 
        align-items: center;
    }
  }

  .course-in-maintenance {
    margin-top: 56px;
    text-align: center !important;
  }
  
  .text-maintenance {
    text-decoration: underline;
    color: #50595e;
    font-size: 1.5rem;
  }

  .padding-adjusted-fr-view {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  #btnZoomOut, #btnZoomIn {
    position: fixed;
    right: 25px;
    top: 31vh;
  }

  #goToTop {
    position: fixed;
    bottom: 30px;
    right: 60px;
  }

  .fixed-button {
    position: fixed;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    z-index: 99999; 
  }


  .fixed-button:hover:after {
    content: "Tópico(s) para este curso";
    position: absolute;
    left: -160px; 
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    z-index: -1;
  }

#nav-esquerda {
    width: 55px !important;
    display: block;
    box-shadow:none;
}

#menu-lat {
    overflow-y: auto;
    overflow-x: hidden;
}

/* Largura da barra de rolagem */
#menu-lat::-webkit-scrollbar {
  width: 5px;
}


#menu-lat::-webkit-scrollbar-track {
  background: #f1f1f1;
}


#menu-lat::-webkit-scrollbar-thumb {
  background-color: #888;
}


#menu-lat::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.item-input2 {
    margin: 5px;
}


nav.menu-lateral {
    width: 55px;
    height: 100%;
    background-color: white;
    padding: 0px 0 30px 0.5%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}

/*nav.menu-lateral:hover {
    width: 272px;
}*/

.menu-lateral:hover #faq {
    display: none;
}
/*.menu-lateral:hover #versao {
    background-color: #2196f3;
    color: white;
}*/

ul{
    list-style-type:none;
    height:100%;
}

ul li.item-menu:hover .txt-link {
    /*background: #2196f3ff;*/
    color: black;
}


ul li.item-menu a {
    color: #2196f3ff;
    text-decoration: none;
    font-size: 20px;
    padding: 23px 0px 0px 10px;
    display: flex;
    margin-bottom: 20px;
}

ul li.item-menu a .txt-link{
    margin-left:20px;
    min-width: 20ch;
}

ul li.item-menu a .meuicon > i{
    font-size:25px;
    /*margin-left:-100%;*/
}

.item-media:hover .item-title {
    display: block !important;
}

.rownova {
    display: flex;
    flex-wrap: nowrap;
}

#colunasnovas {
    width: auto;
}

i#faq{
    display:none;

}
#botoes_pag {
    width: 96%;
    display: flex;
    bottom: 0px;
    place-content: center;
    align-items: center;
    position: fixed;
}
#paginaAprendizado {
    overflow-x: hidden;
}
.accordion {
    background-color: #f7f7f7;
    color: #2d2f31ff;
    cursor: pointer;
    padding: 16px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    border-bottom: 1px solid #ddd;
    position: relative;
    font-size: 16.5px;
    font-weight: bold;
}

.accordion::before {
    content: '\2193'; 
    font-size: 20px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.active, .accordion:hover {
    background-color: #e6f7f5;
}

.page-item {
    margin: 0;
    padding: 12px 16px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.2s;
    line-height: 2;
}
.page-item:hover {
    background-color: #f0f0f0;
}

.open::before {
    transform: translateY(-50%) rotate(180deg);
}

#my-panel {
    position: fixed;
    top: 0;
    right: 0; 
    height: 100%;
    background-color: #fff;
    box-shadow: -1px 0 2px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

#my-panel-opened {
    opacity: 1; /
    transform: scale(1);
}


.my-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    margin-top: 18px;
    position: relative;
    border: 2.5px solid #2d2f31ff;
}

.minha-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.minha-item {
    display: flex;
    align-items: flex-start;
    margin: 5px 0;
    padding-left: 6px;
    padding-right: 12px;
    background-color: #f5f5f53d;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.minha-titulo {
    font-size: 18px;
    flex: 1;
}

.minha-numeracao {
    font-size: 18px;
    font-weight: bold;
    color: #777;
    margin-right: 5px;
    vertical-align: top;
}

.my-checkbox[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.my-checkbox:checked {
    background-color: #2d2f31ff; 
    border: 2px solid #2d2f31ff; 
}
.my-checkbox::before {
    content: '\2713';
    font-size: 16px; 
    color: #fff; 
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; 
}

.my-checkbox:checked::before {
    display: block; 
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: auto;
    background-color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    color: #515365;
    font-weight: bold;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.estrelas-container-TI {
    justify-self: center
}



#topCursos {
    padding-left: 20%;
    font-weight: bold;
}
#fecharPainel {
    fill: #fff;
    cursor: pointer;
    right: 25px;
    top: 7px;
    position: fixed;
    transform: scale(1.5);
    ed;
}

#txtNome {
    padding: 9px;
}

#pagAprendizado {
    padding-right: 8px;
}

#versao {
    background-color: #2196f3;
    color: white;
    top: 30px;
    right: 2px;
    text-align: center;
    padding: 1px;
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 9999999999999;
    height: 26px;
}

#versionamento {
    font-size: 13px;
}

.accordion .contador {
    display: block;
    margin-top: 5px;
    color: gray;
    font-size: 15px;
}
#meusCertificados{
    color:black;
}
#navbarPop{
    display:none;
}

.botaoReferencia {
    background-color: #ffffff; 
    color: #2196f3;
    font-size: 14px; 
    border: 1px solid #2196f3; 
    padding: 8px 12px; 
    margin: 5px; 
    cursor: pointer; 
    border-radius: 5px; 
}
.link-curso {
    color: inherit;
    text-decoration: none; 
}

#inscricao {
    background-color: #2196F3;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    /*left: 45%;
    top: 70px;*/
    width: 200px;
    height: 45px;
}

#inscricao:hover {
    background-color: #2177f3; 
}
#imagensCadastro {
    max-height: 60px;
    font-size: 14px;
    width: 80%;
}
.estrela {
    font-size: 30px;
    cursor: pointer;
    color: #cdc3c3;
    transition: color 0.3s;
    background-color: white;
}
#estrelaComent {
    font-size: 28px;
    cursor: default;
    transition: color 0.3s;
    background-color: white;
}
.estrelaHome {
    font-size: 28px;
    cursor: default;
    transition: color 0.3s;
    background-color: white;
}
#infoEstrela-avaliacao-texto {
    display: inline-block;
    margin-right: 10px;
    font-size:24px;
    vertical-align: middle;
}
#titulo-texto {
    font-size: 26px;
}

#infoEstrela-container {
    display: inline-block;
    vertical-align: middle;
}
#BasePergunta {
    height: auto;
    max-height: 300px;
    overflow-y: auto;
}

.estrela:hover,
.estrela.active {
    color: #000;
}
.estrelaComent.active {
    color: #000; 
}
#estrelas {
    display: inline-block;
}

#comentarios-container {
    margin-top: 20px;
    text-align: center;
}

#formulario-comentario {
    margin-bottom: 15px;
}

#comentario {
    width: 95%;
    box-sizing: border-box;
    margin-bottom: 10px;
    height: 125px;
    overflow-y: auto;
    resize: none;
}

#btn-enviarComent {
    background-color: #2196F3;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
    margin-left: 15px;
}

#btn-enviarComent:hover {
    background-color: #2196F3;
}

.comentario-item {
    margin-bottom: 10px;
}

.comentario-popup {
    background-color: #f0f0f0; 
    border: 1px solid #3498db; 
    border-radius: 8px; 
}
#commentsContainer {
    max-width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.comment-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

.comment-info {
    font-size: 14px;
    color: #666;
}

.validate-button {
    background-color: #4caf50;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.validate-button:hover {
    background-color: #45a049;
}
/*.carousel-container {
    position: relative;
    overflow: hidden;
    width: 50%;
    left: 25%;
    height: 150px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}

.carousel-button-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.carousel-button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.carousel-button:hover {
    background-color: #2980b9;
}

.carousel-button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}*/




#Cursos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
#CursosHome {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
#Banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


.curso-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    object-fit: cover;
}
.curso-image2 {
    top: 0;
    left: 0;
    width: 10%;
    height: 70%;
    object-fit: cover;
}

.curso-image img {
    width: 100%;
    object-fit: cover;
    height: 130%;
}
.curso-image2 img {
    width: 125%;
    object-fit: cover;
    height: 130%;
}

#cardCursos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28%;
    text-align: center;
    padding: 10px;
}

.comments-container {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.status {
    margin-top: 10px; 
}
.avaliacao {
    margin-top: 5px; 
}

#resultsBox2 {
    display: block; /* Deve ser visível */
    position: absolute;
    z-index: 1000;
    background: white;
    border: 1px solid #ccc;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#resultsList2 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categoria-item, .curso-item, .empresa-item {
    color: #333;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    font-family: Arial, sans-serif;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


#resultsBox2 #resultsList2 li:hover {
    background-color: #f2f2f2;
}


#comentariosLabel {
    font-size: 18px;
    font-weight: bold;
    color: #2196F3;
    margin-bottom: 15px;
}

.comment-item {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

.comment-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.comment-user {
    font-size: 15px;
    color: #777;
}
.InscreverManual {
    overflow-y: auto;
    max-height: 300px;
}

#btn-mais {
    background-color: #2196f3
}
.curso-name-pesquisa {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    padding-right: 1px;
}
#previewContainer1 {
    width: 533px;
    height: 400px;
    display: none;
}
.imagem-carregada{
    z-index: 100000;
}
#loadedImage {
    width: 400px;
    height: 300px;
    display: none;
}
#mostraImg {
    margin-left: 20px;
}
#imgUploadPerfil {
    inline-size: min-content;
}
#btnSalvarUsuario {
    top: 50px;
}
#UserFoto {
    position: relative;
    left: -10px;
    height: 56px;
}
#UserFoto img {
    border-radius: 50%;
    width: 43px;
    height: 43px;
    position: relative;
    top: 5px;
    padding: 1px;
    cursor: pointer;
}

    #UserFoto span {
        margin-right: 15px;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        /*line-height: 56px;*/
        display: inline-block;
        text-align: left;
    }
#lblTitulo {
    overflow: hidden;
    text-overflow: ellipsis;
}
#imgcarregadaperfil {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: relative;
}
#baseConhecimentoPage .tags-column {
    width: 100%;
    padding-right: 10px;
    overflow-x: auto;
    white-space: nowrap;
    box-sizing: border-box;
}

#baseConhecimentoPage .obs-column {
    width: 60%;
    overflow-x: auto;
    white-space: nowrap;
    box-sizing: border-box;
    margin-top: 10px;
}

#baseConhecimentoPage .tags-column .chip {
    display: inline-block;
    margin-bottom: 5px;
}

#baseConhecimentoPage .obs-column small {
    display: block;
    margin-bottom: 10px;
}

#baseConhecimentoPage .content-block .row {
    flex-wrap: wrap;
}

#baseConhecimentoPage .content-block .row .col-50,
#baseConhecimentoPage .content-block .row .col-35,
#baseConhecimentoPage .content-block .row .col-15 {
    flex: none;
}

.after-upload {
    flex-direction: column;
    gap: 20px;
}
.question-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

#ai-widget {
    position: fixed;
    right: 16px !important;
    bottom: 16px !important;
    left: auto !important;
    top: auto !important;
    cursor: default;
}
    #ai-widget .ai-card {
        display: flex;
        flex-direction: column;
        max-height: calc(100vh - 46px);
    }

    #ai-widget .ai-header {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        background: var(--f7-bars-bg-color);
        color: var(--f7-bars-text-color);
        border-bottom: 1px solid var(--f7-md-outline-color, rgba(0,0,0,.08));
    }

    #ai-widget .ai-title {
        font-weight: 600;
        font-size: 14px;
        flex: 1 1 auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #ai-widget .ai-actions .link {
        opacity: .85;
    }

    #ai-widget .ai-body {
        flex: 1 1 auto;
        min-height: 0; 
    }

/* Chat com rolagem (ocupa o espaço disponível) */
#ai-chat {
    flex: 1 1 auto;
    margin-top: 8px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
}

/* Linha do input + botão (inline, alinhados) */
#ai-input {
    flex: 1 1 auto;
    width: 100%;
    resize: none;
    height: 43px;
    min-height: 42px;
    max-height: 140px; /* até onde ele pode crescer */
    overflow-y: auto; /* quando passar disso, aparece scroll */
    line-height: 1.35;
    border: none;
    border-radius: 12px;
    padding: 10px 40px 10px 12px;
    font: inherit;
    background: var(--f7-input-bg-color);
    color: var(--f7-text-color);
    margin: 0;
    box-sizing: border-box;
}
.ai-input-row {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 10px 10px;
    border: 1px solid var(--f7-md-outline-color, rgba(0,0,0,.12));
    border-radius: 35px;
    margin: 9px 7px 9px;
    /* height: 55px;  ⬅ REMOVE ISSO */
    min-height: 55px; /* opcional, pra manter o tamanho "bonitinho" quando vazio */
}


    #ai-input:focus {
        outline: 2px solid var(--f7-theme-color);
    }

/* Botão enviar estilo WhatsApp */
.ai-send-btn {
    width: 46px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: #2196F3;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

    .ai-send-btn .material-icons {
        font-size: 22px;
        transform: translateX(1px);
    }

    .ai-send-btn:disabled {
        opacity: .6;
        cursor: not-allowed;
    }
.ai-sources ul {
    margin: 6px 0 0 16px;
    padding: 0;
}

.ai-sources li {
    list-style: disc;
    margin: 2px 0;
}

.ai-sources a {
    color: var(--f7-theme-color, #2196f3);
    text-decoration: none;
}

    .ai-sources a:hover {
        text-decoration: underline;
    }

/* Bolhas */
.ai-msg {
    max-width: 90%;
    padding: 10px 12px;
    border: 1px solid var(--f7-md-outline-color, rgba(0,0,0,.12));
    border-radius: 12px;
    background: var(--f7-block-strong-bg-color);
    white-space: pre-wrap;
    word-break: break-word;
    margin-left: 5px;
    font-size: 18px;
}
.ai-msg.ai-msg-typing {
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}


.ai-msg-user {
    align-self: flex-end;
    background: #2196F3;
    color: #fff;
    border-color: transparent;
}

.ai-msg-bot {
    align-self: flex-start;
}

.ai-sources {
    font-size: 12px;
    opacity: .75;
    margin-top: 6px;
}

/* “Digitando…” 3 pontinhos */
.ai-typing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .ai-typing .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
        opacity: .4;
        animation: aiBlink 1.2s infinite ease-in-out;
    }

        .ai-typing .dot:nth-child(2) {
            animation-delay: .15s;
        }

        .ai-typing .dot:nth-child(3) {
            animation-delay: .30s;
        }

@keyframes aiBlink {
    0%,80%,100% {
        opacity: .2
    }

    40% {
        opacity: 1
    }
}

/* ===== Estado minimizado ===== */
#ai-widget.minimized {
    width: auto;
}

    #ai-widget.minimized .ai-card {
        border-radius: 999px;
    }

    #ai-widget.minimized .ai-body {
        display: none;
    }

/* Caret piscando durante a digitação */
.ai-caret {
    display: inline-block;
    width: 7px;
    height: 1em;
    vertical-align: -0.15em;
    background: currentColor;
    opacity: 0.5;
    animation: aiCaretBlink 1s steps(1, end) infinite;
    margin-left: 1px;
}

@keyframes aiCaretBlink {
    0%, 50% {
        opacity: 0.5;
    }

    50.01%, 100% {
        opacity: 0;
    }
}

/* Ajuste opcional para o container do texto (se quiser espaçar da lista) */
.ai-msg-text + .ai-sources {
    margin-top: 6px;
}
/* Botão “seta” (normal, aberto) */
.ai-handle {
    position: absolute;
    left: -30px;
    top: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* totalmente redondo */
    border: 2px solid #2196f3; /* borda azul */
    background: #fff; /* fundo branco */
    color: #2196f3; /* ícone azul */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,.2);
    cursor: pointer;
    z-index: 2;
    padding: 0;
    transition: all .2s ease;
}

    .ai-handle .material-icons {
        font-size: 24px;
        line-height: 1;
    }

    .ai-handle:hover {
        background: #2196f3;
        color: #fff; /* ícone branco com fundo azul */
    }

/* quando estiver recolhido, esconda o card e mantenha a alça visível/fixa */
#ai-widget.edge-collapsed {
    width: 0 !important;
    height: 0 !important;
    overflow: visible !important;
    right: 8px !important;
    bottom: 16px !important;
    pointer-events: none; /* só a alça fica clicável */
}

    #ai-widget.edge-collapsed .ai-card {
        display: none;
    }

    #ai-widget.edge-collapsed .ai-handle {
        position: fixed; /* fixa na viewport */
        right: 12px;
        bottom: 20px;
        left: auto;
        top: auto;
        z-index: 2147483647;
        pointer-events: auto;
    }

/* Transições suaves */
#ai-widget, #ai-widget .ai-card {
    transition: all .18s ease;
}

/* Mobile */
@media (max-width: 600px) {
    .ai-handle {
        top: 12px;
        width: 44px;
        height: 44px;
    }
}


@media (max-width: 480px) {
    #ai-widget {
        left: 12px;
        right: 12px;
        width: auto;
    }
}   

@media (max-width: 750px) {
    .question-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .question-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
.question-container {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.question-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.alternatives p {
    margin: 5px 0;
}

.row-button-save {
    text-align: center;
    margin-top: 20px;
}
#pesquisaDeslogado {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    border-radius: 10px;
    z-index: 10000;
}
.textoPesquisaDeslogado {
    cursor: default;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.row-idiomas {
    padding: 10px;
    border-radius: 5px;
    display: flex; 
    gap: 20px; 
    align-items: center; 
}

.row-idiomas p {
    font-size: 18px;
    margin-right: 20px;
    font-weight: bold;
}

.row-idiomas label {
    font-size: 16px; 
    display: flex;
    align-items: center;
}

.row-idiomas input[type="checkbox"] {
    margin-right: 5px; 
    accent-color: #2196F3; 
}

.custom-infos-container {
    display: flex;
    justify-content: space-between;
}

.custom-infos-container .coluna-esquerda,
.custom-infos-container .coluna-direita {
    flex: 1;
    padding: 10px;
}

.custom-infos-container .coluna-esquerda > * {
    margin-bottom: 15px;
}

.custom-infos-container .coluna-direita > * {
    margin-bottom: 10px;
}

.custom-infos-container .coluna-esquerda > button {
    margin-top: 10px;
}
.phone-component {
    display: flex;
    align-items: center;
    gap: 5px;
    box-sizing: border-box;
}

    .phone-component select {
        width: auto;
    }

    
    .phone-component input {
        flex-grow: 1;
        min-width: 150px;
        max-width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    
    .phone-component .dropdown {
        position: relative;
    }

    .phone-component .btn {
        display: flex;
        align-items: center;
        padding: 3px 6px; /* Espaçamento interno */
        min-width: 60px;
        max-width: 80px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #fff;
        cursor: pointer;
    }

        .phone-component .btn::after {
            content: '▼';
            font-size: 12px;
            margin-left: 5px;
            color: #666;
        }

    
    .phone-component .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
        flex-direction: column;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 5px;
        min-width: 60px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .phone-component .dropdown-menu.show {
            display: flex; 
        }

    
    .phone-component .dropdown-item {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px;
        cursor: pointer;
    }

        .phone-component .dropdown-item:hover {
            background-color: #f8f9fa;
        }

    
    .phone-component .flag-icon {
        font-size: 24px;
        margin-right: 5px;
    }


.dropdown-menu {
    position: absolute !important;
    z-index: 1050 !important;
}



.carousel-container {
    position: relative;
    margin: 30px 0;
    padding: 10px 40px; 
    border-radius: 8px;
    /*background-color: #fafafa;*/
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cursos-carousel {
    display: flex;
    overflow-x: hidden; 
    width: 100%; 
    gap: 1px;
    height: 300px;
    padding-bottom: 10px;
}
    .cursos-carousel .curso-card {
        flex-shrink: 0; 
        width: 250px; 
        margin: 0 6px; 
        height: 295px;
    }



    .cursos-carousel::-webkit-scrollbar {
        display: none; 
    }

.labelVT {
    font-weight: 600;
    font-size: 16px;
    color: #2196F3;
    text-decoration: none;
    position: absolute;
    right: 0px;
    z-index: 9999;
    top: 10px;
    padding-right: 8px;
}
#CarouselBanners {
    width: 75%;
    aspect-ratio: 3 / 1; 
    margin: 0 auto; 
    background: #eee;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    top: 10px;
}

    
    #CarouselBanners img {
        object-fit: cover; 
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }


.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.3s;
}

    .carousel-arrow:hover {
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-arrow.left {
        left: 5px; 
    }

    .carousel-arrow.right {
        right: 5px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
        fill: #333;
    }

#btnAdcBanner {
    background: #4caf50 !important;
    color: #fff;
    top: 10px;
    left: 5px;
}


@media (max-height: 499px) {
    #login {
        padding-left: 22%

    }
}
@media (max-width: 415px) {
    .curso-card {
        width: 98%;
        height: 395px;
        margin: 10px;
        position: relative;
        max-width: 100%;
        overflow: hidden;
    }
    .banner-card {
        width: 98%;
        height: 300px;
        margin: 10px;
        position: relative;
        max-width: 100%;
        overflow: hidden;
    }
    .curso-name {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
        font-weight: bold;
        width: 310px;
        padding-right: 1px;
    }
    .curso-name-TI {
        width: 200px;
        height: 62px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
        font-weight: bold;
        padding-right: 1px;
    }
}
@media (min-width: 415px) {
    .curso-card {
        width: 400px;
        height: 395px;
        margin: 10px;
        position: relative;
        max-width: 100%;
        overflow: hidden;
    }
    .banner-card {
        width: 400px;
        height: 300px;
        margin: 10px;
        position: relative;
        max-width: 100%;
        overflow: hidden;
    }
    .curso-name {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
        font-weight: bold;
        width: 387px;
        padding-right: 1px;
    }
    .curso-name-TI {
        width: 229px;
        height: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
        font-weight: bold;
        padding-right: 1px;
    }
}
@media (max-width: 500px) {
    #view-principal {
        margin-left: 0px;
    }
    #centerId {
        width: 70%;
    }
    .curso-name-pesquisa {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: bold;
        padding-right: 1px;
        padding-left:25%
    }

    #nav-esquerda {
        width: auto !important;
        display: none;
    }

    nav.menu-lateral {
        width: auto;
    }

    nav.menu-lateral:hover {
        width: auto;
    }

    ul li.item-menu a {
        padding: 10px 15px;
        margin-bottom: 10px;
    }

    ul li.item-menu a .meuicon > i {
        font-size: 20px;
    }
    .custom-infos-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-infos-container .left-section,
    .custom-infos-container .right-section {
        width: 100%; 
    }
    #txtDuvidaStarter {
        border: none;
        font-size: 20px;
        width: 73%;
    }

    #txtDuvida {
        border: none;
        font-size: 20px;
        width: 73%;
    }
    
}
#pesquisa {
    z-index: 10000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2196F3;
    padding: 10px;
    border-radius: 10px;
    /*display:none;*/
}

#searchInput {
    width: 500px;
    padding: 8px;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    background-color: #2196F3;
}

    #searchInput::placeholder {
        color: white;
    }
#searchInputDesl {
    width: 500px;
    padding: 8px;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    background-color: #2196F3;
}

    #searchInputDesl::placeholder {
        color: white;
    }
#resultsBox {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid #ccc;
    z-index: 10000;
    display: none;
    width: 800px;
}
#resultsBoxDeslogado {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid #ccc;
    z-index: 10000;
    display: none;
    width: 800px;
}

#resultsList {
    list-style: none;
    margin: 0;
    padding: 10px;
    overflow-y: scroll;
    max-height: 538px;
}

    #resultsList li {
        padding: 4px;
        transition: background-color 0.3s;
        padding: 0.8rem 0;
        color: #000000;
        font-family: 'Raleway', sans-serif;
        height: 75px;
    }

        #resultsList li:hover {
            background-color: #f2f2f2;
        }

#resultsListDeslogado {
    list-style: none;
    margin: 0;
    padding: 10px;
    overflow-y: scroll;
    max-height: 538px;
    max-height: 230px;
}

    #resultsListDeslogado li {
        padding: 4px;
        transition: background-color 0.3s;
        padding: 0.8rem 0;
        color: #000000;
        font-family: 'Raleway', sans-serif;
        height: 75px;
    }

        #resultsListDeslogado li:hover {
            background-color: #f2f2f2;
        }
.item-input i {
    color: white;
    display: none; 
}

@media (max-width: 1280px) {
    #resultsBox {
        display: none;
    }
    #UserFoto {
        display: none;
    }
    #searchInput {
        display: none;
    }

    #pesquisaDeslogado .icon {
        display: none;
    }

    #pesquisa .icon {
        display: block;
    }

    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: none;
    }
    /*#overlayDesl {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: none;
    }*/

    #searchInput {
        width: 100%;
        padding: 8px;
        border: 2px solid white;
        border-radius: 5px;
        color: white;
        background-color: #2196F3;
        display: none;
    }
    #searchInputDesl {
        width: 100%;
        padding: 8px;
        border: 2px solid white;
        border-radius: 5px;
        color: white;
        background-color: #2196F3;
        /*display: none;*/
    }

    #resultsBox {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border: 1px solid #ccc;
        z-index: 100000;
        width: 100%;
        max-height: 538px;
        overflow-y: auto; 
    }

    #resultsBoxDesl {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border: 1px solid #ccc;
        z-index: 100000;
        width: 100%;
    }

    #pesquisa {
        z-index: 1000000;
        position: absolute;
        top: 0.6%;
        transform: translateX(-50%);
        background-color: #2196F3;
        padding: 10px;
        border-radius: 10px;
        left: 85%;
    }
    #pesquisaDeslogado {
        width: 85%;
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra opcional */
        border-radius: 10px;
        z-index: 10000;
        /*background-color: #2196F3;*/
    }

}


.container {
    position: fixed;
    top: 0;
    right: 5px;
    padding: 12px;
}

@media (max-width: 768px) {
    .container {
        display: none;
    }

    #certificadoMobile {
        display: none;
    }
}

@media (min-width: 500px) {
    #view-principal {
        margin-left: 55px;
        padding-right: 0px;
        padding-left: 0px; 
        transition: padding-right 0.7s ease-out;
    }
    #txtDuvidaStarter {
        border: none;
        font-size: 20px;
        width: 93%;
    }

    #txtDuvida {
        border: none;
        font-size: 20px;
        width: 93%;
    }
}
@media (min-width: 768px){
    .content-block-title-home {
        font-size: 20px;
    }
    #centerId {
        width: 32%;
    }
}

.alert-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4f9;
    color: #3178c6;
    border: 1px solid #bcd1ea;
    padding: 10px 15px;
    border-radius: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    width: fit-content;
    margin: 0 auto 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    gap: 8px;
}

    .alert-info i {
        font-size: 18px;
    }


.view-courses {
    display: inline-block;
    padding: 4px;
}

.custom-popover {
    position: absolute;
    z-index: 9999;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    max-width: 600px;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.custom-popover .empty-message {
    padding: 5px 20px;
    text-align: center;
    color: #555;
    font-style: italic;
}

.popover-content {
    display: flex;
    flex-direction: column;
    max-height: 400px;
}

.popover-header {
    background: #f8f9fa;
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #495057;
    flex-shrink: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.webix-container {
    flex: 1;
    overflow: hidden;
}

/* Ajustes específicos para o Webix dentro do popover */
.custom-popover .webix_view {
    border: none !important;
}

.custom-popover .webix_ss_header {
    background: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.custom-popover .webix_ss_body {
    border: none !important;
}

/* Fallback list styling */
.fallback-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 8px;
}

.curso-item {
    padding: 12px;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .curso-item:last-child {
        border-bottom: none;
    }

    .curso-item:hover {
        background-color: #f8f9fa;
    }

    .curso-item strong {
        color: #212529;
        font-size: 14px;
    }

    .curso-item small {
        color: #6c757d;
        font-size: 12px;
        line-height: 1.4;
    }

/* Scroll customizado para fallback */
.fallback-list::-webkit-scrollbar {
    width: 6px;
}

.fallback-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.fallback-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.fallback-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.courses-tool, .courses-list {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 5px;
}
.courses-tool > p, .courses-list > p {
    font-size: 16px;
    color: #666;
    font-weight: bold;
}

/* Durante o arrasto - afeta todas as células da linha */
.webix_cell.dragging, .webix_column > .webix_drag_over.webix_cell {
    opacity: 0.9;
    transform: scale(1.01);
    background-color: rgba(240, 248, 255, 0.95);
    border: 2px dashed #4a90e2;
    border-radius: 4px;
    z-index: 1000;
    /*cursor: grabbing;*/
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    outline: none;
}
#ai-min-icon{
    cursor: pointer;
}
/* Garante que texto e botões continuam visíveis */
.webix_cell.dragging * {
    opacity: 1;
    color: inherit;
}

/* Ao soltar */
.webix_cell.drop-animate {
    transition: all 0.4s ease-out;
    transform: scale(1);
    background-color: #e6f7ff;
}

/* Itens deslocando */
.webix_cell.shift-animate {
    transition: transform 0.3s ease-in-out;
}

#btnVideos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.grid-area-restrita {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
    grid-auto-rows: 1fr;
}

.grid-area-restrita .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Garante que o cartão ocupe o máximo de altura possível */
    background-color: #2196f3;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.grid-area-restrita .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.grid-area-restrita .card-footer {
    background-color: #2d4259;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.grid-area-restrita .card .item-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    word-wrap: break-word; /* Permite quebra de linha no texto longo */
    text-align: center;
}

.grid-area-restrita .card .material-icons {
    font-size: 40px;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .grid-area-restrita {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em telas menores */
    }
}

@media (max-width: 800px) {
    .grid-area-restrita {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas ainda menores */
    }
}

@media (max-width: 500px) {
    .grid-area-restrita {
        grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
    }
}

.grid-comment-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
    grid-auto-rows: 1fr;
    color: black;
}
.grid-comment-container p {
    font-size: 18px;
    font-weight: bold;
}

.grid-comment-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.grid-comment-item {
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.grid-comment-item span{
    font-size: 16px;
}

.no-comments {
    grid-column: span 3;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #888;
}

@media (max-width: 1200px) {
    .grid-comment-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .grid-comment-container {
        grid-template-columns: repeat(1, 1fr); 
    }
}

@media (max-width: 500px) {
    .grid-comment-container {
        grid-template-columns: 1fr;
    }
}

.star-icon {
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.star-icon:hover,
.star-icon.hovered {
    content: "star";
    color: gold;
}

.util-buttons {
    display: flex;
    gap: 10px;
}

.button-yes, .button-no {
    background-color: white;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 5px;
    border: 1px solid #cfc4c4;
    border-radius: 5px;
}

.util-buttons .button-yes:hover {
    font-weight: bold;
    transform: scale(1.05);
    cursor:pointer;
}

.util-buttons .button-yes.active {
    background-color: green !important;
    color: #fff;
    font-weight: bold;
}

.button-yes.active i,
.button-no.active i {
    color: white!important;
}

.util-buttons .button-no:hover {
    font-weight: bold;
    transform: scale(1.05);
    cursor: pointer;
}

.util-buttons .button-no.active {
    background-color: red !important;
    color: #fff;
    font-weight: bold;
}

.btn-confirmar-avaliacao {
    display: none;
    background-color: #2196f3ff;
    padding: 20px 5px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    align-self: center;
}

.btn-confirmar-avaliacao:hover {
    cursor: pointer;
    transform: scale(1.05);
}


/* INICIO RELATORIO PROGRESSO */


.container-relatorio {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.1rem;
    color: #64748b;
}

.card-relatorio {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.card-header-relatorio {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.card-title-relatorio {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-description {
    color: #64748b;
    margin-top: 0.25rem;
}

.card-content-relatorio {
    padding: 1.5rem;
}

.filters-grid-relatorio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group-relatorio {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label-relatorio {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.form-select,
.form-input-relatorio {
    padding: 0.75rem;
    border-bottom: 1px solid #d1d5db;
    font-size: 0.875rem;
    transition: all 0.2s;
    background: white;
    height: 35px;
    border-top: none;
    border-inline: none;
}

.form-select:focus,
.form-input-relatorio:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.date-inputs-relatorio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.button-relatorio {
    padding: 0rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    gap: 0.5rem;
    align-items: baseline;
}

.button-primary {
    background: #3b82f6;
    color: white;
}

.button-primary:hover {
    background: #2563eb;
}

.button-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.button-secondary:hover {
    background: #e2e8f0;
}



@media (max-width: 768px) {
    .container-relatorio {
        padding: 1rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .filters-grid-relatorio {
        grid-template-columns: 1fr;
    }

    .date-inputs-relatorio {
        grid-template-columns: 1fr;
    }
}