/* ALERTAS */
.container_alertas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.data_alerta {
    align-items: end;
    justify-content: end;
    display: flex;
    margin-top: 0.5rem;
}

.card_alerta {
    background: #ffffff;
    color: #333;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card_alerta>span {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* ALERTAS */


/* PERFIL */
.perfil_header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #dbdbdb;
}

.div_foto_perfil {
    position: relative;
}

.div_espaco_perfil {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.div_foto_perfil img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #333;
    position: relative;
    object-fit: cover;
}

.icone_camera {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    color: #1b1f2a;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
}

.foto_input {
    display: none;
}

.dados_usuario h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.dados_usuario span {
    font-size: 0.9rem;
    color: #aaa;
}

.secao_perfil {
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #dbdbdb;
}

.secao_perfil h3 {
    margin-bottom: 0.7rem;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.div_inputs_perfil {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.div_dois_perfil_vertical {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 140px;
}

.div_dois_perfil_vertical span {
    font-size: 14px;
}

.acoes_perfil {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn_padrao {
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    color: black;
    font-size: 14px;
    border: 1px solid #dbdbdb;
}

.btn_salvar {
    background: #00A3E2;
    color: #ffffff;
}

.btn_logout {
    background: #212224;
    color: #ffffff;
}

.btn_excluir {
    background: #ff0000;
    color: #ffffff;
}

.linha_dupla {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.linha_dupla .div_dois_perfil_vertical {
    flex: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal.hide {
    opacity: 0;
}

.modal-content {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.8rem 1.4rem;
    text-align: center;
    color: rgb(0, 0, 0);
    width: 90%;
    max-width: 330px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    animation: fadeInScale 0.3s ease forwards;
    transform: scale(0.9);
    box-sizing: border-box;
}

.modal-content h2 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000000;
}

.icon-sucesso,
.icon-erro {
    font-size: 52px;
    margin-bottom: 1rem;
}

.icon-sucesso {
    color: #ddb40e;
}

.icon-erro {
    color: #ff4f4f;
}

.btn_modal {
    margin-top: 1rem;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    width: 100%;
    transition: 0.2s ease;
}

.btn_modal_erro {
    background-color: #E53935;
}

.btn_modal_sucesso {
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    color: black;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.87);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* PERFIL */


/* INDEX */
.card_nav_index {
    background: #ffffff;
    color: #333;
    height: 120px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    padding: 0.5rem;
    cursor: pointer;
}

.card_nav_index i {
    color: #00A3E2;
    font-size: 32px;
}

.div_dois_card_nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.div_card_carteirinha {
    background: #00A3E2;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    flex: 1;
    display: flex;
    gap: 1rem;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.div_card_carteirinha i {
    font-size: 32px;
}

.container_card_nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.div_pesquisa {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

/* INDEX */


/* TREINAMENTOS */
.div_pesquisa {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.container_card_treinamentos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.card_treinamentos {
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    cursor: pointer;
}

.card_treinamentos img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
    aspect-ratio: 2 / 1;
}

.div_icones_dados_aula_listagem {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.div_icones_dados_aula_listagem i {
    color: grey;
}

.div_descricao_curso {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.5rem;
}

.div_deitado_icones_aula_listagem {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.descricao_curso {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: grey;
}

.div_titulo_treinamentos {
    display: flex;
    flex-direction: column;
}

.descricao_titulo_treinamentos {
    font-size: 14px;
    color: #515151;
}

/* TREINAMENTOS */


/* TREINAMENTOS DETALHES */
.div_titulo_curso {
    background: linear-gradient(135deg, #0284C7, #0369A1);
    padding: 1rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.descricao_curso_detalhes {
    color: rgb(255, 255, 255);
    opacity: 0.9;
    font-size: 14px;
}

.div_icones_dados_aula_detalhes {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 14px;
}

.div_icones_dados_aula_detalhes i {
    color: white;
}

.div_modulos_treinamento {
    background-color: white;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #dbdbdb;
}

.titulo_modulo {
    font-size: 14px;
    font-weight: 500;
}

.titulo_conteudos_curso {
    font-weight: 500;
    text-align: center;
}

.div_aulas_treinamento {
    background-color: white;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.descricao_modulo {
    font-size: 14px;
}

.div_card_aulas {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dbdbdb;
}

.div_btn_aula {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 0.4rem;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 14px;
    cursor: pointer;
    gap: 0.3rem;
    flex-direction: column;
}

.div_icones_aula {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icone_simbolo_aula {
    width: 18px;
}

.div_btn_aula.bloqueada {
    opacity: 0.5;
    pointer-events: none;
}

.container_modulos_curso {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.div_card_aulas.bloqueada>.div_modulos_treinamento {
    opacity: 0.5;
    pointer-events: none;
}

.div_card_aulas.bloqueada>.div_aulas_treinamento {
    opacity: 0.5;
    pointer-events: none;
}

.div_card_prova_treinamento {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
}

.div_titulo_prova {
    display: flex;
    flex-direction: column;
}

.btn_fazer_prova {
    border: none;
    background: #00A3E2;
    color: #fff;
    border-radius: 8px;
    padding: 8px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
}

.div_card_prova_treinamento.bloqueada>.div_titulo_prova {
    opacity: 0.5;
    pointer-events: none;
}

.div_card_prova_treinamento.bloqueada>.btn_fazer_prova {
    opacity: 0.5;
    pointer-events: none;
}

.btn_padrao_modal {
    flex: 1;
    padding: 0.4rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.btn_padrao_modal.fechar {
    background-color: black;
    color: white;
}

.btn_padrao_modal.enviar {
    background-color: #00A3E2;
    color: white;
}

/* TREINAMENTOS DETALHES */


/* TREINAMENTOS PROVA */
.div_header_prova {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    padding: 0.8rem;
    gap: 0.5rem;
}

.titulo_prova {
    font-size: 16px;
    font-weight: 500;
}

.status_prova {
    display: flex;
    font-size: 12px;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.3rem;
}

.destaque_status {
    font-weight: 600;
}

.texto_avaliacao_prova {
    font-size: 14px;
    text-transform: uppercase;
    color: #00A3E2;
    font-weight: 500;
}

.div_card_questoes_prova {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    padding: 0.8rem;
    gap: 0.5rem;
}

.alternativas_questao {
    border: 2px solid #dbdfe6;
    border-radius: 50%;
    min-height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.div_alternativa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    background-color: #f8f9fb;
    border-radius: 12px;
    padding: 0.6rem;
    border: 2px solid #dbdfe6;
    cursor: pointer;
}

.div_alternativas_prova {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.titulo_questao_prova {
    font-size: 14px;
    font-weight: 500;
}

.div_alternativa.selecionado {
    border: 2px solid #2B2148;
}

.div_alternativa.selecionado>.alternativas_questao {
    background-color: #2B2148;
    color: white;
    border: 2px solid #2B2148;
}

.container_alternativas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn_enviar_avaliacao {
    border: none;
    background: #00A3E2;
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.btn_enviar_avaliacao:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.div_resultado_avaliacao {
    display: none;
    flex-direction: column;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    padding: 0.8rem;
    gap: 0.5rem;
}

.btn_resultado {
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding: 0.4rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.texto_questoes_resultado {
    font-size: 14px;
}

/* TREINAMENTOS PROVA */


/* TREINAMENTOS AULAS */
.div_video_aula {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    background-color: black;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.btn_proxima_aula {
    border: none;
    background: #00A3E2;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    transition: 0.3s ease-in;
}

.btn_proxima_aula:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn_voltar_aula {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 36px;
    min-width: 36px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: fit-content;
    cursor: pointer;
        border: 1px solid #dbdbdb;
}

.div_titulo_aulas {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

/* TREINAMNETOS AULAS*/


/* INSPEÇÃO */
.linha_classificacao_risco {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info_local_inspecao {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.icone_local_inspecao {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef3ff;
    color: #1f3c88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.textos_local_inspecao {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.label_local_inspecao {
    font-size: 12px;
    color: #777;
}

.nome_local_inspecao {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.modal_local_inspecao {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 9999;
}

.modal_local_inspecao.ativo {
    opacity: 1;
    pointer-events: all;
}

.conteudo_modal_local {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 12px 16px 24px 16px;
    max-height: 60vh;
    overflow-y: auto;
}

.topo_modal_local {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.lista_locais {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item_local {
    border: 1px solid #dbdbdb;
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.item_local.ativo {
    border-color: #1f3c88;
    background: #eef3ff;
}

.item_local_descricao {
    display: block;
    font-size: 13px;
    color: #666;
}

.label_risco {
    font-weight: 500;
    font-size: 14px;
}

.opcoes_probabilidade,
.opcoes_gravidade {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.3rem;
}

.btn_risco {
    border: 1px solid #dcdcdc;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    flex: 1;
    min-width: 120px;
}

.btn_risco.active {
    background: #1f3c88;
    color: #fff;
    border-color: #1f3c88;
}

.resultado_classificacao{
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.resultado_classificacao span {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: black;
}

.btn_adicionar_inspecao {
    background-color: #2B2148;
    color: white;
    position: fixed;
    bottom: 72px;
    right: 0px;
    transform: translate(-50%, -50%);
    height: 40px;
    width: 40px;
    border: 1px solid #2B2148;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
}

.div_titulo_inspecao {
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    font-size: 14px;
    padding: 0.8rem;
    flex-direction: column;
    gap: 0.3rem;
}

.div_titulo_inspecao input {
    width: 100%;
    padding: 8px 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: white;
    box-sizing: border-box;
    outline: none;
}

.div_titulo_inspecao input:focus {
    outline: 1px solid #2B2148;
}

.div_horizontal_inspecao {
    display: flex;
    justify-content: space-between;
}

.div_vertical_inspecao {
    display: flex;
    flex-direction: column;
}

.qrcode_inspecao {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00A3E2;
    color: white;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

.div_pesquisa_inspecao {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.container_card_inspecao {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card_inspecoes {
    background: #ffffff;
    color: #333;
    height: 120px;
    border-radius: 12px;
    border: 1px solid #dbdbdb;
    flex: 1;
    display: flex;
    font-size: 14px;
    cursor: pointer;
}

.card_inspecoes img {
    width: 100px;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 6 / 8;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.texto_descricao_item_inspecao {
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.datas_inspecao_item {
    display: flex;
    flex-direction: column;
    color: #434b55;
    font-size: 12px;
}


.titulo_desvio_risco {
    font-weight: 500;
}

.bloco_risco_desvio {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

/* INSPEÇÃO */


/* INSPEÇÃO CHECKLIST */
.card_titulo_checklist {
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    flex: 1;
    display: flex;
    font-size: 14px;
    cursor: pointer;
    flex-direction: column;
    padding: 0.4rem;
    border: 1px solid #dbdbdb;
}

.titulo_checklist_inspecao {
    display: flex;
    flex-direction: column;
}

.titulo_checklist_inspecao h3 {
    font-weight: 500;
    font-size: 14px;
}

.titulo_checklist_inspecao span {
    color: #434b55;
    font-weight: 400;
    font-size: 14px;
}

.card_titulo_nrs {
    color: #333;
    display: flex;
    font-size: 14px;
    cursor: pointer;
    flex-direction: column;
}

.card_nrs_inspecao {
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    gap: 0.8rem;
    padding: 0.5rem;
}

.card_principal_nrs {
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    display: flex;
    font-size: 14px;
    padding: 0.8rem;
    flex-direction: column;
    border: 1px solid #dbdbdb;
}

.card_nrs_inspecao {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e4e6eb;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.card_nrs_inspecao.ativo {
    border: 1px solid #00A3E2;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    min-width: 16px;
    min-height: 16px;

    border: 2px solid #ccc;
    border-radius: 4px;

    cursor: pointer;
    position: relative;
    background: white;
}

input[type="checkbox"]:checked {
    background-color: #00A3E2;
    border-color: #00A3E2;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;

    width: 3px;
    height: 6px;

    border: solid white;
    border-width: 0 2px 2px 0;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -60%) rotate(45deg);
}

.card_item_nr {
    background-color: #f3f5f780;
    padding: 0.6rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.container_card_item_nr {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.card_principal_nrs summary,
.card_item_nr summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 0.3rem;
}

.card_principal_nrs[open] summary::after,
.card_item_nr[open] summary::after {
    transform: rotate(180deg);
}

summary {
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

.summary_checklist {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary_texto {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.checklist_nr {
    padding: 0.2rem 0.4rem;
    background-color: #2B2148;
    border-radius: 12px;
    font-size: 12px;
    color: white;
    min-width: 50px;
    text-align: center;
}

.seta_details {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #434b55;
}

details[open]>summary .seta_details {
    transform: rotate(180deg);
}

.div_itens_nrs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.div_itens_nrs span {
    color: #434b55;
    width: max-content;
}

.container_tipo_inspecao {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.titulo_tipo_inspecao {
    font-weight: 500;
}

.descricao_tipo_inspecao {
    font-size: 12px;
    color: #434b55;
}

.btns_inspecao_checklist {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.div_progresso_inspecao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 0.2rem;
}

.item_checklist {
    background: white;
    border-radius: 12px;
    padding: 0.6rem 0.6rem;
    border: 1px solid #e4e6eb;
    margin-top: 12px;
}

.pergunta_checklist {
    font-weight: 400;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

.opcoes_resposta {
    display: flex;
    gap: 10px;
}

.btn_resposta {
    flex: 1;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #d6d9de;
    background: #f7f8fa;
    cursor: pointer;
    color: black;
}

.btn_sim.active {
    background: #d9f2e2;
    border-color: #4caf50;
}

.btn_nao.active {
    background: #ffe4e4;
    border-color: #f9abab;
}

.btn_na.active {
    background: #d7e5f5;
    border: 1px solid #98c1ef;
}

.area_nao_conforme {
    margin-top: 15px;
    background: #fff1f1;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgb(0 0 0 / 12%);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: aparecer 0.3s ease;
}

.classificacao_desvio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.btn_desvio {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #d6d9de;
    background: white;
    cursor: pointer;
}

.leve.active {
    background: #dff5e6;
}

.moderado.active {
    background: #fff2cc;
}

.grave.active {
    background: #ed8e0036;
}

.critico.active {
    background: #ffb8b8;
}

.preview_foto {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #eee;
    transition: 0.2s;
    aspect-ratio: 1 / 1;
    background-color: white;
}

.barra_progresso {
    height: 6px;
    width: 100%;
    background-color: #cbcbcbfc;
    border-radius: 6px;
}

.porcentagem_progresso {
    background-color: #00A3E2;
    height: 100%;
    width: 0%;
    border-radius: 6px;
}

.etapa {
    display: none;
}

.etapa.ativa {
    display: block;
}

.btn_risco {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 12px;
    cursor: pointer;
    background: #f9fafb;
    transition: 0.2s;
    color: black;
}

.btn_risco.active {
    color: white;
    border-color: transparent;
}

.container_input_informacoes_inspecao {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.container_input_informacoes_inspecao div {
    background: #fff;
    color: #333;
    border-radius: 12px;
    border: 1px solid #dbdbdb;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    padding: 0.5rem;
}

.div_input_informacoes_inspecao {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.div_adicionar_norma {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.modal_lista {
    overflow-y: auto;
}

#modalLista {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    scrollbar-width: none;
}

.item_modal {
    padding: 10px;
    border: 1px solid #dbdbdb;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
}

.item_modal.item_ja_adicionado {
    background: #dcfce7;
    border: 1px solid #22c55e;
    color: #166534;
    display: flex;
    justify-content: space-between;
}

.item_modal.item_ja_adicionado i {
    color: #22c55e;
}

#lista_itens_selecionados {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item_nr_inspecao {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

#div_itens_adicionados{
    display: none;
    background: #fff;
    color: #333;
    border-radius: 12px;
    border: 1px solid #dbdbdb;
    flex-direction: column;
    font-size: 14px;
    padding: 0.5rem;
}

.btn_remover_integra{
    background-color: red;
    color: white;
    width: 100%;
    text-align: center;
    padding: 0.2rem;
    border-radius: 8px;
    border: 1px solid #dbdbdb8f;
    cursor: pointer;
}

.fecharModal {
    cursor: pointer;
}

#btnVoltarNivel,
#btnSalvarNivel {
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

#btnVoltarNivel {
    background: #212224;
    color: #fff;
}

#btnSalvarNivel {
    background: #00A3E2;
    color: #fff;
}

.modal_footer {
    display: flex;
    gap: 0.5rem;
}

.label_risco {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icone_ajuda_risco {
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

#conteudoModalAjudaRisco {
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    gap: 0.8rem;
    font-size: 14px;
    line-height: 1.5;
}

.bloco_ajuda_risco {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.textarea_estilo {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    min-height: 80px;
}

.titulo_desvio {
    display: flex;
    justify-content: center;
    background: #ef4444;
    color: #fff;
    padding: 6px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.bloco_risco {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
}

.resultado_classificacao {
    width: 100%;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.texto_resultado_risco {
    display: inline-block;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
}

.foto_desvio {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.btn_foto {
    border: 2px dashed #d1d5db;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 6px;
    width: 100%;
    color: black;
    align-items: center;
}

.preview_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.preview_item {
    position: relative;
    display: flex;
}

.btn_excluir_foto {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: #dc2626;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    align-items: center;
}

.observacao_desvio {
    width: 100%;
    min-height: 72px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 13px;
}

.observacao_desvio:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

.div_checkbox_classificar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nr_desativada {
    opacity: 0.4;
    pointer-events: none;
}

.btn_padrao.btn_finalizar {
    background-color: #00A3E2;
    color: white;
}

/* INSPEÇÃO CHECKLIST */


/* INSPEÇÃO FINALIZADA */
.card_resultado_inspecao {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    position: relative;
    border: 1px solid #dbdbdb;
}

.area_assinatura_aguardando{
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 14px;
    color: #666;
    cursor: default;
    background: #f9fafb;
    color: #777;
}

.btn_limpar_assinatura{
    border: 1px solid #dbdbdb;
}

.btn_salvar_assinatura{
    background: #00A3E2;
    color: white;
}

.canvas_assinatura {
    width: 100%;
    height: 150px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    background: #fff;
}

.assinatura_imagem {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.assinatura_digital {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    background: #fff;
    height: 100%;
    justify-content: center;
}

.nome_assinatura {
    font-family: cursive;
    font-size: 18px;
    font-weight: bold;
    color: black;
}

.info_assinatura {
    font-size: 12px;
    color: #666;
}

@keyframes fadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.canvas_assinatura {
    width: 100%;
    height: 100%;
    border: 2px dashed #ccc;
    border-radius: 12px;
    background: #fff;
    touch-action: none;
}

.assinatura_imagem {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.assinatura_digital {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
}

.info_assinatura {
    font-size: 12px;
    color: #666;
}

.area_assinatura {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
}

.container_nao_conformes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.titulo_resultado_inspecao {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    position: relative;
    border: 1px solid #dbdbdb;
}

.titulo_resultado_inspecao h3 {
    font-weight: 500;
    font-size: 16px;
}

.titulo_resultado_inspecao span {
    color: #434b55;
    font-weight: 400;
    font-size: 14px;
}

.icone_erro {
    width: 60px;
    height: 60px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: auto;
    margin-bottom: 12px;
}

.icone_check {
    width: 60px;
    height: 60px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: auto;
    margin-bottom: 12px;
}

.card_resultado_inspecao h3 {
    margin: 6px 0;
    font-size: 16px;
    font-weight: 500;
}

.subtitulo {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 10px;
}

.resultados {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
}

.ok {
    background-color: #22c55e;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    color: white;
}

.erro {
    background-color: #ef4444;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    color: white;
}

.secao {
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #dbdbdb;
}

.item_nao_conforme {
    border: 1px solid #fca5a5;
    background: #fff5f5;
    border-radius: 12px;
    padding: 12px;
}

.item_nao_conforme .topo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 14px;
}

.topo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.tags {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.tag {
    padding: 4px 6px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    display: inline-block;
}

.tag.nr {
    background: #2563eb;
}

.tag.muito_alto {
    background: #dc2626;
}

.tag.alto {
    background: #f97316;
}

.tag.moderado {
    background: #eab308;
}

.tag.baixo {
    background: #16a34a;
}

.os_box {
    background: #fff7ed;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 14px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.os_box i {
    color: #f59e0b;
}

.modal_content_assinatura{
    width: 90%;
    max-width: 420px;
    height: 80%;
    max-height: 80%;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    animation: fadeIn 0.2s ease;
    overflow: auto;
}

.icone_fechar_assinatura{
    cursor: pointer;
}

.titulo_modal_assinatura{
    font-weight: 500;
    font-size: 14px;
}
/* INSPEÇÃO FINALIZADA */


/* INSPEÇÃO HISTORICO */
.card_equipamento {
    background: white;
    border-radius: 16px;
    padding: 0.8rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.header_equipamento {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.header_equipamento img {
    width: 100px;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 6 / 8;
}

.icon_equip {
    width: 50px;
    height: 50px;
    background: #e0edff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.nome_equip {
    font-size: 14px;
    font-weight: 500;
}

.meta_equip {
    font-size: 12px;
    color: #434b55;
}

.grid_info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.box_info {
    background: #f3f4f6;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
}

.box_info b {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #434b55;
    margin-bottom: 4px;
}

.box_info span {
    font-size: 12px;
}

.resumo {
    display: flex;
    gap: 10px;
}

.card_resumo {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.card_resumo span {
    display: block;
    font-size: 14px;
}

.card_resumo .numero {
    font-size: 16px;
    font-weight: 500;
}

.card_resumo.aprovado .numero {
    color: #16a34a;
}

.card_resumo.reprovado .numero {
    color: #dc2626;
}

.btn_nova {
    width: 100%;
    background: #1d4ed8;
    color: white;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

.titulo_historico_inspecao {
    font-weight: 500;
    font-size: 14px;
}

.item_historico {
    background: white;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.info_hist {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}

.info_hist span {
    display: block;
    font-size: 12px;
    font-weight: 500;
}

.info_hist small {
    color: #434b55;
    font-size: 12px;
}

.tag.nc {
    background: #fee2e2;
    color: #dc2626;
    font-size: 12px;
}

.data_hist {
    font-size: 12px;
    color: #434b55;
    font-weight: 400;
}

.container_historico_inspecao {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.3rem;
}

.div_responsavel_inspecao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
    width: 100%;
    flex-wrap: wrap;
}

.div_voltar {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 36px;
    min-width: 36px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: fit-content;
    cursor: pointer;
    border: 1px solid #dbdbdb;
}

.texto_inspecao_aprovada {
    background: #dcfce7;
    color: #16a34a;
    width: fit-content;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
}

.texto_inspecao_reprovada {
    background: #fee2e2;
    color: #dc2626;
    width: fit-content;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
}

/* INSPEÇÃO HISTORICO */


/* CARTEIRINHA */
.card_container {
    perspective: 1000px;
}

.card_inner {
    position: relative;
    width: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.card_container.virado .card_inner {
    transform: rotateY(180deg);
}

.card_face {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.card_front,
.card_back {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.card_front {
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card_back {
    background: linear-gradient(135deg, #0284C7, #0369A1);
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    transform: rotateY(180deg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.img_usuario_cartao {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.qr {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 8px;
    padding: 0.2rem;
}

.div_img_qr_code {
    display: flex;
    align-items: center;
    justify-content: center;
}

.div_dados_carteirinha {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 12px;
}

.div_dados_carteirinha span {
    opacity: 0.95;
}

.div_dados_deitados_carteirinha {
    display: flex;
    width: 100%;
    gap: 1rem;
    align-items: center;
}

.titulo_certificacoes_cartao {
    font-size: 12px;
}

.div_certificacoes_ativas {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.div_certificacoes {
    padding: 0.3rem 0.7rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.div_datas_carteirinha {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 0.6rem;
    font-size: 12px;
}

.div_virar_cartao {
    font-size: 12px;
    text-align: center;
    color: #ffffffb0;
}

.div_nome_qr_code {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 12px;
}

.div_resumo_notas {
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 100%;
    justify-content: end;
    gap: 0.3rem;
    color: rgb(0, 0, 0);
    background-color: white;
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid #dbdbdb;
}

.div_linha_dados_resumo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
}

.valores_resumo {
    font-weight: 500;
    font-size: 14px;
}

.container_cursos_realizados {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

summary {
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

.div_acoes_cursos_realizados {
    display: flex;
    gap: 1rem;
    justify-self: end;
    margin-top: 1rem;
    font-size: 14px;
}

.div_horarios_curso_realizado {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    color: #6B7280;
}

.div_cursos {
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.div_cursos_realizados {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    padding-right: 32px;
    gap: 0.5rem;
}

.div_cursos_realizados::after {
    content: "";
    position: absolute;
    right: 10px;
    width: 12px;
    height: 12px;
    background: url('./img/flecha_select.png') no-repeat center;
    background-size: contain;
    transition: transform 0.3s;
    opacity: 0.6;
}

details[open] .div_cursos_realizados::after {
    transform: rotate(180deg);
}

.titulo_curso_realizado {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.status_curso_realizado {
    font-size: 11px;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-weight: 500;
}

.status_curso_realizado.valido {
    background: #279b65;
    color: #ffffff;
}

.status_curso_realizado.vencendo {
    background: #f59e0b;
    color: #ffffff;
}

.status_curso_realizado.vencido {
    background: #db2424;
    color: #ffffff;
}

.div_campos_cursos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.div_valores_campos_cursos {
    display: flex;
    flex-direction: column;
}

.titulo_valor_campos {
    font-size: 12px;
    color: #6B7280;
}

.valores_campos_curso {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

.div_btns_cursos {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 14px;
    color: #6B7280;
    cursor: pointer;
    transition: 0.2s;
}

.titulo_certificacoes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.div_certificacoes_treinamentos {
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 100%;
    justify-content: end;
    gap: 1rem;
    color: rgb(0, 0, 0);
    background-color: white;
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid #dbdbdb;
}

.select_filtro_certificados {
    font-size: 12px;
    background-size: 10px;
    padding: 0.5rem;
    padding-right: 2.5rem;
    width: fit-content;
    flex: none;
}

.empty_cursos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.5rem 1rem;
    border: 1px dashed #D1D5DB;
    border-radius: 10px;
    background: #F9FAFB;
    color: #6B7280;
    font-size: 14px;
    width: 100%;
}

.empty_cursos i {
    font-size: 20px;
    color: #9CA3AF;
}

.container_campos_cursos {
    border-top: 1px solid #dbdbdb;
    padding: 0.5rem;
    padding-top: 0.5rem;
}

.titulo_cards_carteirinha {
    font-size: 14px;
    font-weight: 500;
}

.div_titulo_details_cursos {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.3rem;
}

.div_icones_titulo_certificacoes {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* CARTEIRINHA */




/* PERMISSAO DE TRABALHO */
.container_pt_detalhes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#btnLimparAssinatura{
    border: 1px solid #dbdbdb;
}

.card_pt {
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border: 1px solid #dbdbdb;
}

.titulo_permissao_criada {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    position: relative;
    border: 1px solid #dbdbdb;
}

.titulo_permissao_criada h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.titulo_permissao_criada span {
    font-size: 14px;
    color: #666;
}

.status_pt {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    border-radius: 10px;
    padding: 0.8rem;
    font-size: 13px;
    font-weight: 600;
}

.linha_info_pt {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.label_info_pt {
    font-size: 12px;
    color: #777;
}

.valor_info_pt {
    font-size: 14px;
    color: #222;
    font-weight: 500;
}

.grid_info_pt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.titulo_card_pt {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.texto_descricao_pt {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.tag_tipo_pt {
    width: fit-content;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    font-size: 12px;
    font-weight: 600;
}

.lista_equipe_pt {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.item_equipe_pt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.8rem;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    background: #fafafa;
}

.container_nome_foto {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.img_foto_colaborador {
    height: 48px;
    width: 48px;
    background-color: grey;
    border-radius: 50%;
}

.div_nome_colaborador {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.nome_colaborador {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.cargo_colaborador {
    font-size: 12px;
    color: #666;
}

.tag_associado {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 11px;
    font-weight: 600;
}

.lista_checklist_pt {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.item_checklist_pt {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fafafa;
}

.texto_checklist_pt {
    font-size: 13px;
    color: #333;
}

.status_checklist_pt {
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.status_conforme {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.status_nao_conforme {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.status_na {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.assinatura_box {
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #dbdbdb;
}

.titulo_nao_conforme {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.canvas_assinatura {
    width: 100%;
    height: 100%;
    border: 2px dashed #ccc;
    border-radius: 12px;
    background: #fff;
    touch-action: none;
}

.acoes_assinatura {
    display: flex;
    gap: 10px;
}

.acoes_assinatura button {
    flex: 1;
}

.assinatura_imagem {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.assinatura_digital {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    background: #fff;
    height: 100%;
    justify-content: center;
}

.nome_assinatura {
    font-family: cursive;
    font-size: 18px;
    font-weight: bold;
    color: black;
}

.info_assinatura {
    font-size: 12px;
    color: #666;
}

.area_assinatura {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 14px;
    color: #666;
}

.area_assinatura_pendente {
    cursor: default;
    background: #f9fafb;
    color: #777;
}

.modal_nrs {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal_nrs.ativo {
    display: flex;
}

#modalTitulo {
    font-size: 14px;
    font-weight: 500;
}

.modal_content {
    width: 90%;
    max-width: 420px;
    height: 80%;
    max-height: 80%;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    padding: 16px;
    gap: 12px;
    animation: fadeIn 0.2s ease;
    overflow: auto;
}

@keyframes fadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fecharModalAjudaRisco{
    cursor: pointer;
}

.modal_header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.bloco_ajuda_risco strong{
    font-weight: 600;
}

.btn_voltar_tela {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 0.8rem;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.card_pre_execucao {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0px;
    box-shadow: none;
}

@media(max-width: 600px) {
    .grid_info_pt {
        grid-template-columns: 1fr;
    }

    .item_checklist_pt {
        align-items: flex-start;
        flex-direction: column;
    }
}

.card_formulario_trabalho {
    background: #ffffff;
    color: #333;
    height: 120px;
    border-radius: 12px;
    border: 1px solid #dbdbdb;
    flex: 1;
    display: flex;
    font-size: 14px;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

.card_tipo_trabalho {
    background: #ffffff;
    color: #333;
    height: 120px;
    border-radius: 12px;
    border: 1px solid white;
    flex: 1;
    display: flex;
    font-size: 14px;
    flex-direction: column;
    padding: 1rem;
    cursor: pointer;
    gap: 0.3rem;
    border: 1px solid #dbdbdb;
}

.input_geral_app {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    outline: none;
    width: 100%;
}

.input_geral_app:focus {
    outline: 1px solid #2B2148;
}

.textarea_geral {
    min-height: 80px;
}

.textarea_geral:focus {
    outline: 1px solid #2B2148;
}

.div_vertical_trabalho {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
}

.container_tipo_trabalho {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.div_nome_colaborador {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.card_colaboradores_trabalho {
    background: #ffffff;
    color: #333;
    height: 120px;
    border-radius: 12px;
    flex: 1;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    border: 1px solid #dbdbdb;
}

.img_foto_colaborador {
    height: 48px;
    width: 48px;
    background-color: grey;
    border-radius: 50%;
    border: 1px solid #80808047;
}

.container_nome_foto {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.etapa_formulario {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.etapa_formulario.ativa {
    display: flex;
}

.div_botoes_etapa {
    display: flex;
    gap: 0.8rem;
}

.card_tipo_trabalho.selecionado,
.card_colaboradores_trabalho.selecionado {
    border: 1px solid #00A3E2;
}

.icones_tipo_trabalho {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #80808033;
    border-radius: 8px;
}

.titulo_tipo_trabalho {
    font-weight: 500;
}

.btn_adicionar {
    padding: 0.4rem;
    background-color: rgb(0, 0, 0);
    border-radius: 8px;
    color: white;
    font-size: 12px;
}

.div_nrs_colaborador {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nr_colaborador {
    padding: 4px 6px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    outline: none;
    display: block;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}

.card_local_inspecao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #dbdbdb;
}

.info_local_inspecao {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.icone_local_inspecao {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef3ff;
    color: #1f3c88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.textos_local_inspecao {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.label_local_inspecao {
    font-size: 12px;
    color: #777;
}

.nome_local_inspecao {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.btn_trocar_local {
    border: none;
    background: #2B2148;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.modal_local_inspecao {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 9999;
}

.modal_local_inspecao.ativo {
    opacity: 1;
    pointer-events: all;
}

.conteudo_modal_local {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 12px 16px 24px 16px;
    max-height: 60vh;
    overflow-y: auto;
}

.topo_modal_local {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.titulo_modal_local {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.btn_fechar_modal_local {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: #2B2148;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.lista_locais {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item_local {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.item_local.ativo {
    border-color: #1f3c88;
    background: #eef3ff;
}

.item_local_nome {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #222;
}

.item_local_descricao {
    display: block;
    font-size: 13px;
    color: #666;
}

.btn_checklist_pre_execucao {
    min-width: 122px;
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    outline: none;
    display: block;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}

.div_linha_checklist {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.card_pre_execucao {
    background: #ffffff;
    color: #333;
    height: 120px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    flex: 1;
    display: flex;
    font-size: 14px;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.conforme.selecionado {
    background: #d9f2e2;
    border-color: #4caf50;
}

.nao_conforme.selecionado {
    background: #ffe4e4;
    border-color: #f9abab;
}

.nao_aplica.selecionado {
    background: #d7e5f5;
    border: 1px solid #98c1ef;
}

/* PERMISSAO DE TRABALHO */


/* TREINAMENTOS AULA */
.container_materiais {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.container_materiais .div_btn_aula {
    padding: 0.5rem;
    border-radius: 8px;
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
}

.container_questionario {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    padding: 0.8rem;
    gap: 0.5rem;
}

.div_questoes_questionario {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn_permissao_voltar{
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    background: #212224;
    color: white;
    font-size: 14px;
}

.container_conteudos_adicionais {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

/* TREINAMENTOS AULA */


/* TREINAMENTOS DETALHES */
.container_modal {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.44);
    z-index: 9;
}

.div_modal {
    background-color: white;
    border-radius: 10px;
    padding: 1rem;
    max-height: 90%;
    width: 90%;
    box-sizing: border-box;
}

.div_titulo_deitado {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icone_fechar_modal {
    cursor: pointer;
}

.div_acoes_avaliar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.div_estrelas_avaliacao_curso {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.estrelas_avaliacao {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
}

.fa-solid.estrelas_avaliacao {
    color: #ffcb00;
}

.textarea_avaliacoes {
    width: 100%;
    padding: 8px 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: white;
    box-sizing: border-box;
    resize: none;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    outline: none;
    height: 100px;
}

.titulo_estrelas_avaliacao {
    margin: auto;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    font-size: 14px;
}

.titulo_modal_avaliacao {
    font-size: 14px;
    font-weight: 500;
}

.div_dados_presencial {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.div_dados_presencial i {
    width: 14px;
}

#dataLimite {
    font-weight: 500;
}

.conteudo_liberado {
    flex-direction: column;
    gap: 0.3rem;
}

.btn_presenca_aula {
    margin-top: 0.7rem;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    background: #279b65;
    color: white;
    font-weight: 400;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
}

.div_card_avaliacao_treinamento {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    gap: 0.5rem;
    padding: 0.8rem;
}

.status_aprovado {
    background: #279b65;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
}

.status_reprovado {
    background: #db2424;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
}

/* TREINAMENTOS DETALHES*/

/* TREINAMENTOS*/
.div_nav_treinamentos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 0.3rem;
    gap: 0.5rem;
    border: 1px solid #80808047;
}

.item_nav_treinamentos {
    padding: 0.4rem;
    flex: 1;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    opacity: 0.4;
    background: #00A3E2;
    color: white;
    cursor: pointer;
}

.item_nav_treinamentos.ativo {
    opacity: 1;
}

.container_treinamentos_matriculados {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.container_treinamentos_matriculados.ativo {
    display: flex;
}

.container_treinamentos_finalizados {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.container_treinamentos_finalizados.ativo {
    display: flex;
}

.card_treinamentos {
    position: relative;
}

.card_treinamentos.aprovado::after {
    content: "Aprovado";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #279b65;
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 500;
}

.card_treinamentos.aprovado img {
    filter: grayscale(30%) brightness(0.9);
}

.card_treinamentos.aprovado .descricao_curso {
    color: #777;
}

.card_treinamentos.reprovado::after {
    content: "Reprovado";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #db2424;
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 500;
}

.card_treinamentos.reprovado img {
    filter: grayscale(30%) brightness(0.9);
}

.card_treinamentos.reprovado .descricao_curso {
    color: #777;
}

/* TREINAMENTOS*/