﻿
html, body {
    margin:0px !important;
    padding:0px !important;
    background-color:#F3F3F3 !important;
    font-size:17px;
}

.bold-100 {
    font-weight:100;
}

.bold-200 {
    font-weight:200;
}

.bold-300 {
    font-weight:300;
}

.bold-400 {
    font-weight:400;
}

.bold-500 {
    font-weight:500;
}

.fs-bold {
    font-weight:bold;
}

.fs-17 {
    font-size:17px !important;
}

.fs-15 {
    font-size:15px !important;
}

.fs-13 {
    font-size:13px !important;
}

.fs-11 {
    font-size:11px !important;
}

.pl-1 {
    padding-left:10px;
}

.pl-2 {
    padding-left:20px;
}

.bg-transp {
    background-color:transparent;
    color:#014573;
    padding:10px;
}

.bg-blue {
    background-color:#014573;
    color:#ffffff;
    padding:10px;
}

.bg-orange {
    background-color:#E06633;
    color:#ffffff;
    padding:10px;
}

.border-gray {
    border: 1px solid #ced4da;
    padding:10px;
}

.text-italic {
    font-style:italic;
}

.text-white {
    color:#ffffff;
}

.text-blue {
    color:#014573;
}

.text-orange {
    color:#E06633;
}

.text-red {
    color:#FF0000;
}

.logo-blue {
    background-image: url('../imagens/logo-centec-blue.png');
    background-repeat:no-repeat;
    background-size:contain;
}

.logo-white {
    background-image: url('../imagens/logo-centec-white.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.logo-left
{
    background-position: left center;
}

.logo-center
{
    background-position: center center;
}

.logo-right
{
    background-position: right center;
}

.form-panel {
  display: block;
  width: 100%;
  height: auto;
  min-height: 2.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-panel-sm {
  display: block;
  width: 100%;
  height: auto;
  min-height: 1.75rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


.is-invalid-panel {
    border: 1px solid #dc3545;   /* Vermelho padrão Bootstrap */
    border-radius: 0.25rem;      /* Igual ao dos cards/forms */
    padding: 0.75rem;            /* Espaçamento interno */
    background-color: #f8d7da;   /* Fundo vermelho claro (alerta) */
}

.div-control {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;

    /* diferença em relação ao panel-control */
    border: none;
    padding: 0;
    margin: 0;
    height: auto;
    min-height: 0;
}

.is-invalid-div {
    border: 1px solid #dc3545;   /* Vermelho padrão Bootstrap */
    border-radius: 0.25rem;      /* Igual ao dos cards/forms */
    padding: 0.75rem;            /* Espaçamento interno */
    background-color: #f8d7da;   /* Fundo vermelho claro (alerta) */
}

.btn-custom {
  display: inline-block;
  font-weight: 400;
  color: #117a8b;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid #117a8b;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, 
              background-color 0.15s ease-in-out, 
              border-color 0.15s ease-in-out, 
              box-shadow 0.15s ease-in-out;
}

.btn-custom:hover {
  background-color: #117a8b;
  color: #fff;
  border-color: #117a8b;
}


.btn-blue {
  color: #fff;
  background-color: #014573;
  border-color: #014573;
}

.btn-blue:hover {
  color: #fff;
  background-color: #01395f;
  border-color: #012d4d;
}

.btn-blue:focus, .btn-blue.focus {
  color: #fff;
  background-color: #01395f;
  border-color: #012d4d;
  box-shadow: 0 0 0 0.2rem rgba(1, 69, 115, 0.5);
}

.btn-blue.disabled, .btn-blue:disabled {
  color: #fff;
  background-color: #014573;
  border-color: #014573;
}

.btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active,
.show > .btn-blue.dropdown-toggle {
  color: #fff;
  background-color: #012d4d;
  border-color: #011f33;
}

.btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus,
.show > .btn-blue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 69, 115, 0.5);
}

.btn-blue-green {
  color: #fff;
  background-color: #16A1B8;
  border: 1px solid #16A1B8;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.15s ease-in-out, 
              border-color 0.15s ease-in-out, 
              box-shadow 0.15s ease-in-out;
  display: inline-block;
  text-decoration: none;
}

/* Hover */
.btn-blue-green:hover {
  background-color: #138697; /* Darker shade */
  border-color: #138697;
  color: #fff;
}

/* Focus */
.btn-blue-green:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(22, 161, 184, 0.5);
}

/* Active */
.btn-blue-green:active {
  background-color: #117d8d;
  border-color: #117d8d;
  color: #fff;
}

/* Disabled */
.btn-blue-green:disabled,
.btn-blue-green.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background-color: #16A1B8;
  border-color: #16A1B8;
  color: #fff;
}

.btn-orange {
  color: #fff;
  background-color: #E06633;
  border-color: #E06633;
}

.btn-orange:hover {
  color: #fff;
  background-color: #c75a2a;
  border-color: #b94d1e;
}

.btn-orange:focus, .btn-orange.focus {
  color: #fff;
  background-color: #c75a2a;
  border-color: #b94d1e;
  box-shadow: 0 0 0 0.2rem rgba(224, 102, 51, 0.5);
}

.btn-orange.disabled, .btn-orange:disabled {
  color: #fff;
  background-color: #E06633;
  border-color: #E06633;
}

.btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active,
.show > .btn-orange.dropdown-toggle {
  color: #fff;
  background-color: #b94d1e;
  border-color: #9f3f17;
}

.btn-orange:not(:disabled):not(.disabled):active:focus, .btn-orange:not(:disabled):not(.disabled).active:focus,
.show > .btn-orange.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(224, 102, 51, 0.5);
}

.btn-purple {
  color: #fff;
  background-color: #7066E0;
  border-color: #7066E0;
}

.btn-purple:hover {
  background-color: #5f58c4;
  border-color: #5f58c4;
}

.btn-purple:focus, .btn-purple.focus {
  box-shadow: 0 0 0 0.2rem rgba(112, 102, 224, 0.5);
}

.btn-purple.disabled, .btn-purple:disabled {
  background-color: #7066E0;
  border-color: #7066E0;
}

.btn-purple:not(:disabled):not(.disabled):active,
.btn-purple:not(:disabled):not(.disabled).active,
.show > .btn-purple.dropdown-toggle {
  background-color: #4d4cb0;
  border-color: #4d4cb0;
}

.btn-purple:not(:disabled):not(.disabled):active:focus,
.btn-purple:not(:disabled):not(.disabled).active:focus,
.show > .btn-purple.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(112, 102, 224, 0.5);
}

.btn-clipboard {
    /*position: absolute;
    top: .65rem;
    right: .65rem;
    z-index: 10;
    display: block;*/
    padding: .25rem .5rem;
    font-size: 65%;
    color: #007bff;
    background-color: #fff;
    border: 1px solid;
    border-radius: .25rem;
    margin-right:5px;
}

.btn-accordion-blue {
    /*position: absolute;
    top: .65rem;
    right: .65rem;
    z-index: 10;
    display: block;*/
    padding: .25rem .5rem;
    color: #fff;
    background-color: #014573;
    border: 1px solid;
    border-color: #014573;
    border-radius: .25rem;
    margin-right:5px;
    width:100%;
}

/* Hover */
.btn-accordion-blue:hover {
    color: #fff;
    background-color: #E06633;
    border-color: #E06633;
}

/* Estado ativo (clicado) */
.btn-accordion-blue.active {
    color: #fff;
    background-color: #E06633;
    border-color: #E06633;
}

.btn-accordion-gray {
    /*position: absolute;
    top: .65rem;
    right: .65rem;
    z-index: 10;
    display: block;*/
    padding: .25rem .5rem;
    color: #fff;
    background-color: #4A4A4A;
    border: 1px solid;
    border-color: #4A4A4A;
    border-radius: .25rem;
    margin-right: 5px;
    width: 100%;
}

/* Hover */
.btn-accordion-gray:hover {
    color: #fff;
    background-color: #7A7A7A;
    border-color: #7A7A7A;
}

/* Estado ativo (clicado) */
.btn-accordion-gray.active {
    color: #fff;
    background-color: #7A7A7A;
    border-color: #7A7A7A;
}

.btn-accordion-orange {
    /*position: absolute;
    top: .65rem;
    right: .65rem;
    z-index: 10;
    display: block;*/
    padding: .25rem .5rem;
    color: #E06633;
    background-color: #fff;
    border: 1px solid;
    border-radius: .25rem;
    margin-right:5px;
}

.fundo-fosco {
  color: #721c24;
  background-color: #333333;
  border-color: #f5c6cb;
  opacity:0.7;
}

.updateProgresso {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-image: url('../../imagens/loading.gif');
    background-position: center center;
    background-repeat: no-repeat;
}

.alerta
{
    padding:10px;
    background-color:#FFF;
}

.alerta.titulo_danger
{
    color: #fff;
    background-color: #c82333;
    font-size: 1.5rem;
}

.alerta.titulo_info
{
    color: #fff;
    background-color: #17a2b8;
    font-size: 1.5rem;
}

.alerta.titulo_primary
{
    color: #fff;
    background-color: #007bff;
    font-size: 1.5rem;
}

.alerta.titulo_secondary
{
    color: #fff;
    background-color: #6c757d;
    font-size: 1.5rem;
}

.alerta.titulo_dark
{
    color: #fff;
    background-color: #343a40;
    font-size: 1.5rem;
}

.icon-style {
    height:91px;
    margin-bottom:20px;
    text-align:center;
    font-size: 70px;
    line-height: 1.3;

    /* Exemplo de uso:
        <div class="icon-style icon-purple">
          <i class="fas fa-question"></i>
        </div>
    */
}

.icon-blue { color: #87ADBD; }
.icon-purple { color: #7066E0; }
.icon-red { color: #D9534F; }
.icon-success { color: #28a745; }

.icon-grande {
    font-size:2.5rem;
}

.icon-medio {
    font-size:1.75rem;
}

.icon-pequeno {
    font-size:1.25rem;
}

.bg-fosco-glass {
  background-color: rgba(0, 0, 0, 0.7); /* mais transparente */
}

.sombra
{
    -webkit-box-shadow: 0 0 20px 1px #4D4D4D;
    box-shadow: 0 0 20px 1px #4D4D4D;
}

.alert-white {
  position: relative;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
  /* border-left: 5px solid #117a8b; */
  border-radius: 0.25rem;
  background-color: #ffffff;
  color: #212529;
  font-size: 1rem;
  line-height: 1.5;
}

.alert-white .alert-heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.alert-white p {
  margin-bottom: 0;
}

.alert-white hr {
  border-top: 1px solid #dee2e6;
}


.alert-scriptcase {
    background-color: #e3f2fd;
    border: 1px solid #90caf9;
    color: #0d47a1;
    font-size: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.alert-scriptcase i {
    font-size: 18px;
    vertical-align: middle;
}

/* máximas: cores neutras + leve animação */
.dg-row       { background-color:#ffffff; transition:background-color .15s ease; }
.dg-row.alt   { background-color:#f8f9fa; }          /* zebra (cinza Bootstrap) */

/* destaque no hover (todas as células da linha) */
.dg-row:hover,
.dg-row.alt:hover {
    background-color:#e7f2ff;                         /* azul bem clarinho */
    cursor:pointer;
}

/* opcional: muda a cor do texto de botões/ícones para contraste melhor */
.dg-row:hover img,
.dg-row.alt:hover img,
.dg-row:hover a,
.dg-row.alt:hover a  {
    filter:brightness(.85);
}

/* ALERTA RESPONSIVO PARA O MODAL NO AJAX */
.modalResponsiva {
  width: 90%;
  max-width: 544px;
  margin: 0 auto;
  background-color:#FFFFFF;
  color:#575454;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding:10px;
}

/* Tablets (largura entre 600px e 1024px) */
@media (max-width: 1024px) {
  .modalResponsiva {
    width: 95%;
  }
}

/* Celulares (largura menor que 600px) */
@media (max-width: 600px) {
  .modalResponsiva {
    width: 98%;
  }
}


.gridview {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.gridview th {
    /*background-color: #007acc;*/
    background-color: #006699;
    color: white;
    font-weight: bold;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

.gridview td {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.gridview tr:nth-child(even) td {
    background-color: #f1f1f1;
}

.gridview tr:hover td {
    /*background-color: #e0f3ff;*/
    background-color:#FFD98A;
}

.gridview .pager {
    text-align: center;
    background-color: #e0e0e0;
    font-weight: bold;
    padding: 10px;
}

.gridview .pager a {
    margin: 0 5px;
    text-decoration: none;
    color: #006699;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: white;
}

.gridview .pager a:hover {
    background-color: #d0ecff;
    border-color: #006699;
}

.gridview .pager span {
    margin: 0 5px;
    padding: 5px 10px;
    font-weight: bold;
    color: white;
    background-color: #006699;
    border-radius: 3px;
}

/* 📌 Estilo para o rodapé (FooterRow) */
.gridview tfoot td {
    /*background-color: #cccccc;*/
    background-color: #E06633;
    color: #333;
    font-weight: bold;
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc;
}

/* ======================================================================================= */

.gridview-sm {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.gridview-sm th {
    /*background-color: #007acc;*/
    background-color: #006699;
    color: white;
    font-weight: bold;
    padding: 5px;
    border: 1px solid #ccc;
    text-align: left;
}

.gridview-sm td {
    padding: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.gridview-sm tr:nth-child(even) td {
    background-color: #f1f1f1;
}

.gridview-sm tr:hover td {
    /*background-color: #e0f3ff;*/
    background-color:#FFD98A;
}

.gridview-sm .pager {
    text-align: center;
    background-color: #e0e0e0;
    font-weight: bold;
    padding: 10px;
}

.gridview-sm .pager a {
    margin: 0 5px;
    text-decoration: none;
    color: #006699;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: white;
}

.gridview-sm .pager a:hover {
    background-color: #d0ecff;
    border-color: #006699;
}

.gridview-sm .pager span {
    margin: 0 5px;
    padding: 5px 10px;
    font-weight: bold;
    color: white;
    background-color: #006699;
    border-radius: 3px;
}

/* 📌 Estilo para o rodapé (FooterRow) */
.gridview-sm tfoot td {
    /*background-color: #cccccc;*/
    background-color: #E06633;
    color: #333;
    font-weight: bold;
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc;
}

.gridview-container {
    width: 100%;
}

@media (max-width: 768px) {
    .gridview-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* scroll suave no celular */
    }

    .gridview,
    .gridview-sm {
        min-width: 600px; /* força largura mínima para ativar scroll */
    }
}

/* ======================================================================================= */

.ajax_modal
{
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}
.ajax_center
{
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 130px;
    background-color: White;
    border-radius: 10px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}
.ajax_center img
{
    height: 128px;
    width: 128px;
}

.hr-blue {
  border: none;
  height: 2px;
  background-color:#053D59;
  /*background: linear-gradient(to right, transparent, #053D59, transparent);
  margin: 2rem 0;
  border-radius: 1px;*/
}

.hr-orange {
  border: none;
  height: 2px;
  background-color:#E97317;
  /*background: linear-gradient(to right, transparent, #E97317, transparent);
  margin: 2rem 0;
  border-radius: 1px;*/
}

.mouse {
    cursor:pointer;
}

.btn-redondo-ico {
    width: 67px;
    height: 67px;
    border-radius: 50%;
    border: 2px solid #014573;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%; /* ajusta o tamanho da imagem no centro */
    cursor: pointer;
    transition: border-color 0.3s ease;
    padding: 0; /* remove padding que possa desalinhar */
    outline: none;
}

/* Efeito hover */
.btn-redondo-ico:hover {
    border-color: #E06633;
}

.btn-ico-dados-pessoais {
    background-image:url(../imagens/dados_pessoais.png);
}

