.warning.sucesso{
	background: rgb(53, 173, 101) url("./icons/ok.png") no-repeat scroll 4% 13px / 21px auto !important;
}
.warning.error{
	background: rgb(173, 53, 53) url("./icons/error.png") no-repeat 4% 11px !important;
	background-size: 27px !important;
}
.warning.aviso{
	background: rgb(235, 187, 65) url("./icons/warning-white.png") no-repeat 4% 11px !important;
	background-size: 23px !important;
}
.warning.alerta{
	background: rgb(53, 173, 101) url("./icons/ok.png") no-repeat scroll 4% 13px / 21px auto !important;
}
.ui-dialog-titlebar {
	text-align: center;
}
.modal {
	display: none;
	min-height: 300px;
}
.modal .linha {
	overflow: hidden;
}
.modal .linha .coluna {
	border: 1px solid #CCC;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0px 5px 10px #CCC;
	float: left;
	margin: 1% 2% 3% 1%;
	padding: 10px;
	width: 30%;
	background-color: #fff;				
}
.modal .linha .coluna h1 {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}
.modal .linha .coluna div.modal-usuario {
	margin-top: 20px;
	border: 1px solid #888;
	border-radius: 5px;
	display: none;
	padding: 10px;
}
.modal .linha .coluna div.modal-usuario label {
	display: block;
	font-weight: bold;
	margin: 5px 0;
}
.modal .linha .coluna div.modal-usuario p {
	margin-bottom: 0;
}

.bg-darkGreen{
	background: #2CBAA3 !important;
	border-color: #2CBAA3 !important;
	font-family: "Roboto", Sans-serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
}

.text-clifford{
	color: #005448 !important;
	font-family: "Montserrat", Sans-serif  !important;
	font-size: 44px !important;
	font-weight: bolder !important;
}

.text-darkGreen{
	color: #005448 !important;
}

@media (max-width: 768px) {
	.ultima-row{
		margin-bottom: 50px;
	}
}

.footer-logo-left {
    width: 42px;
	margin: auto 0 auto auto;
}

.footer-logo-right {
    width: 42px;
	margin: auto auto auto 0;
}
.bg-img-green{
	background-color: transparent;
	background-image: linear-gradient(180deg, #011F20 0%, #005F51 100%);
}
.montserrat{
	font-family: "Montserrat", Sans-serif  !important;
}
.m-a{
	margin: auto;
}
.f-14{
	font-size: 14px;
}
.f-11{
	font-size: 11px;
}
.w-100{
	width:100%;
}
.mb-65{
 margin-bottom:65px;	
}
* {
  scrollbar-width: thin;
  scrollbar-color: #2CBAA3  #005448;
}
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #005448;
}

*::-webkit-scrollbar-thumb {
  background-color: #2CBAA3 ;
  border-radius: 20px;
  border: 3px solid #005448;
}

/* =====================================================
   AJUSTES APP - Login (adicionado pelo app-bridge)
   ===================================================== */

/* Logo com padding para safe-area no topo e posicionamento correto */
.logo-login {
    display: block;
    margin: 20px auto 10px auto;
}

/* No app, adiciona safe-area ao topo da pagina de login */
/* Margem reduzida para 26px (60% menor que os 64px originais) */
body.is-capacitor .logo-login {
    margin-top: 26px !important;
}

/* Titulo "Seja bem-vindo(a)" - proporcional para mobile */
.titulo-login {
    font-size: 32px !important;
}

@media (max-width: 480px) {
    .titulo-login {
        font-size: 26px !important;
    }
}

/* Wrapper do campo senha com botao olhinho */
.input-senha-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-senha-wrapper .form-control {
    padding-right: 48px;
}

/* Botao olhinho */
.btn-olho-senha {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.btn-olho-senha:hover {
    opacity: 1;
}

/* Botao de biometria - visivel apenas no app (controlado pelo JS) */
.btn-biometria {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: none;
    border: 2px solid #005448;
    border-radius: 8px;
    color: #005448;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    margin-bottom: 12px;
}

.btn-biometria:hover {
    background: #005448;
    color: #FFF;
}

.btn-biometria:hover svg {
    stroke: #FFF;
}

/* =====================================================
   CORRECAO LAYOUT DESKTOP - Paginas de login/primeiro-acesso
   Sobrescreve o flex layout do estilo.css para estas paginas
   ===================================================== */
@media (min-width: 769px) {
    body.bg-lightGray {
        display: block !important;
        min-height: 100vh;
    }
    body.bg-lightGray .container-fluid {
        flex: none !important;
        display: block !important;
        max-width: 900px;
        margin: 0 auto;
    }
}

/* =============================================
   Banner de Aviso de Cookies (LGPD)
   ============================================= */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    color: #FFF;
    text-align: center;
    padding: 15px;
    z-index: 99999;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
#cookie-banner p {
    display: inline-block;
    margin-right: 20px;
    font-size: 13px;
    vertical-align: middle;
}
#cookie-banner button {
    padding: 8px 15px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    vertical-align: middle;
    margin: 3px 5px;
}
#cookie-banner .btn-ok {
    background-color: #046738;
    color: #FFF;
}
#cookie-banner .btn-ok:hover {
    background-color: #034d29;
}
#cookie-banner .btn-no {
    background-color: #d9534f;
    color: #FFF;
}
#cookie-banner .btn-no:hover {
    background-color: #c9302c;
}
@media (max-width: 600px) {
    #cookie-banner p {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* =============================================
   Fim Banner de Cookies
   ============================================= */

/* =============================================
   Caixa de Verificacao de Seguranca - reCAPTCHA
   ============================================= */
.recaptcha-box {
    border: 1px solid #c8d8e4;
    border-radius: 6px;
    background-color: #f0f7fb;
    overflow: hidden;
}
.recaptcha-box-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ddeef7;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #1a5276;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #c8d8e4;
}
.recaptcha-box-icone {
    font-size: 15px;
}
.recaptcha-box-corpo {
    padding: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
/* =============================================
   Fim Caixa reCAPTCHA
   ============================================= */


/* ========== BOTAO ENTRAR - LOADING ========== */
#btn-entrar-login {
    position: relative;
    transition: opacity 0.2s ease;
}
#btn-entrar-login:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}
#btn-entrar-loading .fa-spinner {
    margin-right: 6px;
}
