:root {
    --primary-color: #1a4675;
    --secondary-color: #808285a8;
    --background-gradient: linear-gradient(to right, #d6d6d6, #e6e6e6);
    --success-color: #28a745;
    --progress-color: #ff9c07;
    --completed-color: #007bff;
    --critical-color: #ff8944;
    --danger-color: #ff4444;
}

body {
    background: linear-gradient(to right, #d6d6d6, #e6e6e6);
    font-family: 'Poppins', sans-serif;
}

h1,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: aparecer 0.5s ease-in-out;
    /* AnimaÃ§Ã£o */
}

h1 {
    color: #1a4675;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

h4 {
    color: #1a4675;
    border-bottom: 2px solid #1a4675;
    padding-bottom: 5px;
}

h5 {
    color: #808285a8;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 18px;
    padding-bottom: 5px;
}

label {
    color: #1a4675;
    font-size: 18px;
    font-weight: 800;
}

.header {
    background: #1a4675;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-multilab {
    width: 200px;
}

.logo-formlab {
    width: 80px;
}

.title {
    color: #ffffff;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#userName {
    font-size: 20px;
    color: #1f3565;
    margin-right: 10px;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
}

#userEmail {
    color: #808080;
}

#btnSair {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    margin: 10px;
    background-color: #1f3565;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
}

.barometro {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.emoji-voto {
    border-radius: 50%;
    border: none;
    border-color: none;
    background: none;

}

.emoji-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.emoji-voto:hover {
    transform: scale(1.1);
    /* ðŸ”¹ Aumenta 30% ao passar o mouse */
}

.barra-progresso {
    display: flex;
    background-color: #ddd;
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.progresso {
    height: 100%;
    transition: width 0.5s ease-in-out;
}

.feliz {
    background-color: #4CAF50;
}

.neutro {
    background-color: #FFC107;
}

.bravo {
    background-color: #F44336;
}

#modalReset {
    opacity: 1 !important;
    z-index: 1050 !important;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 8px;
}

.modal-backdrop {
    z-index: 1040 !important;
    opacity: 0.5 !important;
    /* ðŸ”¹ Ajusta a opacidade para ficar mais suave */
}

.container-btn-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.container-btn-reset {
    align-items: center;
    width: 250px;
}

.botaoReset {
    background-color: #1a4675;
    color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

.botaoReset:hover {
    background-color: #974747;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    color: #fff;
}

#resultadoVoto {
    color: #1a4675;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.kanban-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 250px;
    max-height: 70vh;
    overflow-y: auto;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.kanban-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 400px;
    max-height: 70vh;
    overflow-y: auto;
    background: #ffffff;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.title-kanban-info {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

/* Layout das colunas Kanban */
.nomeTitleTarefa {
    overflow: hidden;
    /* Oculta o excesso de texto */
    text-overflow: ellipsis;
    /* Adiciona "..." ao final do texto */
    font-size: 1rem;
    /* Tamanho do texto */
    color: white;
    /* Cor para contraste */
    display: inline-block;
    /* Garante que seja tratado como um bloco */
    text-align: center;
}

.tarefa-card {
    border-radius: 12px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px;
    cursor: grab;
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 400px;
}

.tarefa-card:active {
    cursor: grabbing;
    transform: scale(1.03);
}

.tarefa-card p {
    font-size: 12px;
    color: #555555;
    margin: 5px 0;
}

.cardLayout {
    margin-bottom: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}

.subCardLayout {
    margin-top: 20px;
}

.tarefa-card:hover {
    transform: scale(1.03);
}

#tarefaInput {
    resize: vertical;
    /* Permite expansÃ£o vertical sem quebrar o layout */
    min-height: 50px;
}

/* Status diferentes */
.tarefa-fazer {
    background-color: #007bff !important;
    /* Azul - ConcluÃ­do */
}

.tarefa-progresso {
    background-color: #ff9c07 !important;
}

.tarefa-concluida {
    background-color: #28a745 !important;
}

.tarefa-alinhamentos {
    background-color: #ff8944 !important;
}

.tarefa-documentos {
    background-color: #ff9c07;
    /* Cor para "ElaboraÃ§Ã£o de Documentos" */
}

.tarefa-qualificacao {
    background-color: #31f8bc;
}

.tarefa-relatorios {
    background-color: #bc6dfd;
}

.tarefa-concluida .btn-danger {
    display: block !important;
}

.kanban-column-Progresso {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kanban-column {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    gap: 12px;

}

.kanban-info {
    align-items: center;
    justify-content: center;
}

.kanban-subcolumn {
    min-height: 250px;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.sub-coluna h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .kanban-column {
        padding: 10px;
    }

    .tarefa-card {
        font-size: 14px;
    }
}

button {
    transition: all 0.3s ease;
}

button:hover {
    opacity: 0.9;
}

.dragging {
    opacity: 0.6;
    transform: rotate(2deg);
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1,
h4,
h5 {
    animation: aparecer 0.5s ease-in-out;
}

.btnAddTarefa {
    background: #1a4675;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btnAddTarefa:hover {
    background: #1a4675;
    color: #fff;
    opacity: 0.9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-abrir-chamado {
    background: #1a4675;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-abrir-chamado:hover {
    background: #1a4675;
    color: #fff;
    opacity: 0.9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tooltip {
    position: absolute;
    background-color: #1a4675;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
    /* Evita interferÃªncias na interaÃ§Ã£o */
}

.titleModalNovaTarefa {
    color: #1a4675;
    font-weight: 800;
}

.modal-tarefa {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    display: none;
    max-width: 600px;
    max-height: 90vh;
    overflow: auto;
    background-color: rgb(212, 212, 212);
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
    ;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.modal-tarefa .close-modal {
    float: right;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 800;
}

.modal-tarefa .btn {
    margin: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.modal-tarefa .btn-success {
    background-color: #28a745;
    color: white;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-tarefa .btn-secondary {
    background-color: #6c757d;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn[disabled] {
    background-color: #ff0000;
    color: #ffffff;
    cursor: not-allowed;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.btn {
    padding: 6px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 90%;
}

.btn-primary {
    background-color: #1a4675;
    color: white;
    width: 90%;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    width: 90%;
}

.aviso {
    color: #dc3545;
    /* Vermelho */
    font-weight: bold;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .kanban-column {
        padding: 10px;
    }

    .tarefa-card {
        font-size: 14px;
    }
}

.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /* Coloca acima do Ã­cone */
    left: 50%;
    margin-left: -60px;
    /* Centraliza */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.relogio-icon {
    cursor: pointer;
    color: #333;
}

/* Modal de Aviso */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    /* ðŸ”¹ Fundo escuro */
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 999;
}

/* ConteÃºdo do Modal */
.modal-contentAvisos {
    background-color: rgb(247, 247, 247);
    /* Seguindo o padrÃ£o do modal-tarefa */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Sombra */
    text-align: center;
    width: 80%;
    max-width: 500px;
    /* Largura mÃ¡xima */
    text-align: center;
    /* Centraliza os textos horizontalmente */
    display: flex;
    /* Torna o conteÃºdo flexÃ­vel */
    flex-direction: column;
    /* Alinha os elementos em coluna */
    justify-content: space-around;
    /* Centraliza verticalmente o texto */
    align-items: center;
    /* Centraliza horizontalmente o conteÃºdo */
    animation: aparecer 0.3s ease-in-out;
    /* AnimaÃ§Ã£o suave */
}

/* CabeÃ§alho do Modal */
.modal-headerAvisos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
    /* Linha azul */
    margin-bottom: 10px;
}

.modal-titleAvisos {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
    /* Azul principal */
    margin-bottom: 10px;
    /* EspaÃ§amento inferior para separaÃ§Ã£o */
}

.close-modal {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 80%;
    cursor: pointer;
    background: none;
    border: none;
}

/* Corpo do Modal */
.modal-bodyAvisos {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #555555;
    /* Cinza leve */
    margin-bottom: 15px;
    /* EspaÃ§amento inferior */
    margin-top: 15px;
}

/* RodapÃ© do Modal */
.modal-footerAvisos {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* EspaÃ§amento entre botÃµes */
    width: 100%;
}

.modal-footerAvisos .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    /* TransiÃ§Ã£o suave */
}

/* BotÃµes */
.modal-footerAvisos .btn-secondary {
    background-color: var(--primary-color);
    /* Azul principal */
    width: 100%;
    color: white;
}

.modal-footerAvisos .btn-secondary:hover {
    background-color: #1a2c4d;
    /* Azul mais escuro */
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-contentAvisos {
    animation: aparecer 0.3s ease-in-out;
    /* AnimaÃ§Ã£o suave ao aparecer */
}

.modal-contentTempo {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #ddd;
    width: 50%;
    border-radius: 10px;
    text-align: center;
}

.modal-contentTempo h3 {
    font-family: 'Poppins', sans-serif;
}

.modal-contentTempo input {
    width: 80%;
    padding: 8px;
    margin-top: 15px;
    font-size: 1.1em;
}

.modal-contentTempo button {
    margin: 10px;
    padding: 10px 20px;
}

.avatar-container {
    position: relative;
    display: inline-block;
}

.avatar-option:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.avatar-item p {
    margin-top: 8px;
    font-size: 10px;
    color: #1a4675;
    text-align: center;
}

.tarefa-arquivada {
    background-color: #d3d3d3;
    /* Fundo cinza claro */
    color: #333;
    /* Texto mais discreto */
    border: 1px solid #999;
    /* Bordas cinzas */
}

#userAvatar {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.btn-comentario {
    background: none;
    border: none;
}

.btn-comentario:hover {
    transform: scale(1.3);
    /* ðŸ”¹ Aumenta 30% ao passar o mouse */
}

.btn-excluir-arquivo {
    background: none;
    border: none;
}

.btn-excluir-arquivo:hover {
    transform: scale(1.3);
    /* ðŸ”¹ Aumenta 30% ao passar o mouse */
}

.botoes_card {
    flex-direction: row;
}

.btn-upload-arquivo {
    background: none;
    border: none;
}

.btn-upload-arquivo:hover {
    transform: scale(1.3);
    /* ðŸ”¹ Aumenta 30% ao passar o mouse */
}

.btn-tela-detalhes {
    background: none;
    border: none;
}

.btn-tela-detalhes:hover {
    transform: scale(1.3);
    /* ðŸ”¹ Aumenta 30% ao passar o mouse */
}

.modalComentarios {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modalComentarios.mostrar {
    visibility: visible;
    /* ðŸ”¹ Agora o modal Ã© visÃ­vel */
    opacity: 1;
    /* ðŸ”¹ Tornamos ele visÃ­vel com animaÃ§Ã£o */
}

.modal-content-comentarios {
    background: #fff;
    padding: 20px;
    width: 60%;
    margin: 10% auto;
    border-radius: 10px;
}

.fechar-modal-comentarios {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

button#btnEnviarComentarioModal {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button#btnEnviarComentarioModal:hover {
    background-color: var(--completed-color);
}

textarea#comentarioTextoModal {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
}

.comentario-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    width: 95%;
}

.comentario-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comentario-nome {
    font-weight: bold;
}

.comentario-texto {
    flex-grow: 1;
}

#comentarios-lista-modal {
    max-height: 300px;
    /* ðŸ”¹ Define um tamanho mÃ¡ximo para a Ã¡rea de comentÃ¡rios */
    overflow-y: auto;
    /* ðŸ”¹ Ativa a rolagem vertical */
    padding: 10px;
    border: 1px solid #ddd;
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    scrollbar-width: none;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}

.modal-content::-webkit-scrollbar {
    display: none;
    /* ðŸ”¹ Oculta a barra de rolagem no Chrome e Safari */
}

.upload-container {
    width: 80%;
    margin: 20px;
    margin-top: 20px;
    padding: 15px;
    background: var(--background-gradient);
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.upload-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.upload-container h4,
.upload-container h5 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.upload-form input[type="file"] {
    border: 2px dashed #007bff;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    text-align: center;
}

.uploaded-files {
    margin-top: 15px;
    width: 100%;
}

#btnUpload {
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

#btnUpload:hover {
    background: #218838;
}

.btn-cancelar {
    background: #dc3545;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: 20%;
}

.btn-cancelar:hover {
    background: #a11b29;
    color: white;
}

.uploaded-files ul {
    list-style-type: none;
    padding: 0;
}

.uploaded-files li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.uploaded-files li .delete-btn {
    margin-left: auto;
    padding: 5px 10px;
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.uploaded-files li .delete-btn:hover {
    background: #cc0000;
}

.logoAviso {
    width: 100px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.249);
    flex-shrink: 0;
}

.avatar-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    padding: 5px;
    border: none;
    background: transparent;
}

.avatar.selecionado {
    border: 3px solid #FFA500 !important;
    box-shadow: 0px 0px 8px #FFA500;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
}

.avatar-scroll-container {
    display: flex;
    overflow-x: auto;
    /* ðŸ”¹ Permite rolagem horizontal */
    white-space: nowrap;
    padding: 10px;
    scrollbar-width: none;
    /* ðŸ”¹ Remove barra de scroll no Firefox */
}

.avatar-scroll-container::-webkit-scrollbar {
    display: none;
    /* ðŸ”¹ Remove barra de scroll no Chrome/Safari */
}

.avatar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ccc;
}

.usuario-logado {
    width: 80px;
    /* Deixa o avatar maior */
    height: 80px;
    border: 3px solid #007bff;
    /* Azul destacado */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Efeito de sombra */
    border-radius: 50%;
    /* MantÃ©m o formato redondo */
}

.usuario-normal {
    width: 60px;
    /* UsuÃ¡rios menores */
    height: 60px;
    border: 1px solid #ccc;
    /* Borda mais discreta */
    border-radius: 50%;
}

.usuario-logado .avatar {
    border: 3px solid #007bff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.usuario-logado .avatar-img {
    width: 80px;
    /* Maior que os demais */
    height: 80px;
    border: 3px solid #007bff;
    /* Borda azul destacada */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    /* Sombra mais intensa */
}

.usuario-normal .avatar {
    width: 60px;
    height: 60px;
    border: 2px solid #ccc;
}

.usuario-normal .avatar-img {
    width: 60px;
    height: 60px;
    border: 2px solid #ccc;
}

/* ðŸ”¹ Estilo normal para os demais usuÃ¡rios */
.avatar-button.selecionado {
    border: 3px solid #ff5722;
    /* Verde para indicar seleÃ§Ã£o */
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
    border-radius: 50%;
    transform: scale(1.1);
    /* ðŸ”¹ Aumenta ligeiramente o tamanho */
}

.avatar-button.selecionado::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    filter: blur(2px);
    /* ðŸ”¹ Agora o efeito esfumado afeta **apenas a borda** */
}

/* ðŸ”¹ Indicador de mÃºltiplos responsÃ¡veis */
.badge-responsaveis {
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 50%;
}

.avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* ðŸ”¹ Exibe o badge corretamente */
.responsavel .badge-responsaveis {
    display: block;
}

.responsaveis-avatar-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.responsavel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.containerInfoModal {
    flex-direction: column;
}

.modal-conclusao {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    max-height: 75vh;
    overflow: auto;
    background-color: rgb(212, 212, 212);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.titleModalConclusao {
    color: #1a4675;
}

.paragrafoModalConclusao {
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #1a4675;
}

.modal-content-conclusao {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    /* ðŸ”¹ Fundo escuro semitransparente */
    z-index: 999;
    /* ðŸ”¹ MantÃ©m abaixo do modal */
    display: none;
    /* ðŸ”¹ Escondido por padrÃ£o */
}

.modal-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
}

#modalConclusaoTarefa {
    z-index: 999;
    /* Modal acima do backdrop */
}

.ocultar {
    display: none !important;
}

.filtro-setores {
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.filtro-setores label {
    margin-left: 8px;
}

.filtro-setores input {
    margin-right: 5px;
}

#btnAbrirChamado {
    margin-top: 8px;
}

.modal-chamado-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-chamado {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.modal-chamado h2 {
    margin-top: 0;
    font-size: 20px;
    color: #1f3565;
}

.modal-chamado-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.modal-chamado-close:hover {
    color: #e74c3c;
}

/* FormulÃ¡rio */
.modal-chamado form label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 14px;
}

.modal-chamado form input,
.modal-chamado form textarea,
.modal-chamado form select {
    width: 100%;
    margin-top: 6px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.modal-chamado form textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-chamado form button {
    margin-top: 1.5rem;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.modal-chamado form button:hover {
    background-color: #218838;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kanban-metrics.compacta {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}

.kanban-metrics.compacta .card {
    background: var(--card-bg, #f0f0f0);
    /* ou cor da sua paleta */
    color: var(--card-text, #1f3565);
    border-radius: 6px;
    padding: .7rem .9rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 100px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.kanban-metrics.compacta .card:hover {
    transform: scale(1.03);
}

.kanban-metrics.compacta .card span {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
    color: var(--card-text, #1f3565);
}

.kanban-metrics.compacta .card small {
    font-size: 0.75rem;
    color: var(--card-text, #1f3565);
}

.destaque-do-mes {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg, #fefae0);
    padding: .8rem 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.249);
    margin-bottom: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.destaque-do-mes:hover {
    transform: scale(1.03);
}

.destaque-do-mes img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid gold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.249);
}

.destaque-info {
    font-family: 'Poppins', sans-serif;
    color: var(--card-text, #1f3565);
}

.destaque-info strong {
    font-size: 1rem;
    color: var(--card-text, #1f3565);
}

.destaque-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--card-text, #1f3565);
    margin-top: 2px;
}

.modal-permissao {
  display: none; /* ⬅️ Isso aqui precisa vir primeiro */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-aviso-body {
    background: white; 
    padding: 20px; 
    border-radius: 8px;
    text-align:center;
    align-items: center;
    justify-content: center;
}
.aviso-modalPermissao {
   color:#1f3565;
   text-align:center;
   align-items: center;
   justify-content: center;
}
.aviso-title-modalPermissao {
   color:#1f3565; 
}
.fechar-modalAvisoPermissao {
  background-color: #c62828;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.modal-conteudo {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  color:#1f3565;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  align-items: center;
  justify-content: center;
}
.modal-conteudo button {
  background-color: #c62828;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer; 
}

/* modal*/
.modal-overlay-alerta {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay-alerta.ativo {
  display: flex;
}

.modal-box {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  text-align:center;
  align-items: center;
  justify-content: center;
}

.mensagem-alerta {
  font-size: 16px;
  margin-bottom: 20px;
  color:#1f3565;
}

.fechar-alerta {
  background-color: #c62828;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  
}





