/*///-------------- INPUT PESQUISAR--------------------------*/
.input-pesquisar-gestor {    
    display: flex;
    align-items: center;
    border: 1px solid #8F8F8F;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8px 12px;
    width: 100%;
    height: 120%;
}

.input-pesquisar-gestor .icon {
    margin-right: 8px;
    font-size: 0.8rem;
    color: #666;
}

.input-pesquisar-gestor input {
    font-family: 'Roboto';
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: #333;
}

/* Placeholder */
.input-pesquisar-gestor input::placeholder {
    color: #888;
}

/*--------------FOTOS DOS USUARIOS GESTORES---------------------------*/
.foto-gestor-usuarios {
    display: flex;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    object-fit: cover;    
    top: 1%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

/*-----------------POP UP GESTOR------------------------*/
#btn_sim {
    background-color: #4F70A6;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* ocupa o espaço disponível */
    max-width: 120px;
    /* limita o tamanho máximo */
    height: auto;
    padding: 8px 12px;
    /* controla altura automaticamente */
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    /* responsivo */
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

#btn_sim:hover {
    background-color: #283853;
}

.btn-nao {
    border: 2px solid #5a6fa5;
    background: transparent;
    color: #283853;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    width: 121px;
    height: 44px;
    font-size: 0.9rem;    
    font-family: 'Roboto', sans-serif;
    font-weight: 500;

}

.btn-nao:hover {
    background-color: #F1F4F8;
}


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

}


.lbl_msg {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #525252;
    text-align: center;
}

.popup-pergunta {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;


}

.popup-box {
    background: #fff;
    border-radius: 16px;
    width: 510px;
    height: 360.0010070800781px;
    padding: 12px 20px;
    padding-top: 0px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding-right: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    gap: 32px;    
    opacity: 1;

}




.popup-header {
    text-align: right;
}

.close {
    font-size: 30px;
    cursor: pointer;
    color: #4F70A6;
}

.popup-body .icon {
    width: 60px;
    height: 60px;
    border: 3px solid #f0ad4e;
    border-radius: 50%;
    margin: 0 auto 10px;
    font-size: 30px;
    color: #f0ad4e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-body h2 {
    color: #141414;
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;    
}

.popup-body-msg {
    color: #000000;
    font-family: Roboto;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;

}

.popup-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}


.icon-pergunta {
    width: 112px;
    height: 112px;
}


