
body{
    background-color: #fafafa;
    /* font-family: sans-serif; */
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color:#464646;
    margin: 0px;
}
body.modal-open {
  padding-right: 0 !important;
}
header{
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header div{
    display: inline;
}
header h1{
    width: 84%;
}
header a{
    color: white;
    display: inline-flex;
}
header p{
    text-align: left;
}
header button{
    background-color: transparent;
    color: white;
    cursor: pointer;
    border-style: none;
}
header form{
    display: inline-flex;
}
.header-resultados{
    display: block;
}
.fundo-logo{
    background-color: var(--cor-primaria);
    padding: 10px;
    padding-right: 30px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 38px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.logo{
    height: 60px;
    vertical-align: middle;
    cursor: pointer;
}
.logo-login{
    height: 50px;
}
.icon-user{
    width: 30px;
    height: 30px;
    margin: auto;
    text-align: right;
    border-radius: 100%;
    padding: 2px;
    cursor: pointer;
    vertical-align: middle;
}
.icon-user::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--cor-primaria);
    mix-blend-mode: multiply; /* ou color, experimente */
    pointer-events: none;
    border-radius: 50%;
}
.user-details{
    position: relative;
    display: inline-flex;
    display: inline-flex;;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 25px;
    padding: 5px 15px 5px 15px;
    gap:7px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border: 1px solid #e5e7eb;
}
.user-details p{
    margin: 0;
    font-size: 12px;
    font-weight: 600;
}
.user-details i{
    margin: 5px;
    color: var(--cor-primaria);
}
.user-details hr{
    width: 1px;
    height: 20px;
    border: none;
    background-color: #f2f2f3;
    margin: 0 2px;
}
.opcoes-user{
    display: none;
    position: absolute; /* sai do fluxo normal */
    top: 100%; /* posiciona logo abaixo do trigger */
    right: 0; /* alinha à direita da div pai (user-details) */
    z-index: 999;
    background-color: #ececec;
    min-height: 100px;
    width: 200px;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .15), 0 1px 3px rgba(0, 0, 0, .3);
}
.opcoes-user button{
    display: block ;
    color: #424242 ;
    margin: 10px;
    text-align: left;
}
.opcoes-user button:hover{
    font-weight:600;
}
main{
    margin: 0px;
    display: flex;
    min-height: 100vh;
}
.sidebar{
    width: 18%;
    max-width: 250px;
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 1000px;
    padding-right: 5px;
    background: linear-gradient(180deg, var(--cor-primaria), rgba(var(--cor-primaria-rgb), 0.8));
    flex-direction: column;
    padding: 10px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.sidebar::after {
    content: "";
    position: absolute;
    bottom: 95px;
    left: -110%;
    width: 230%;
    height: 180px;

    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.10),
        rgba(255, 255, 255, 0.00)
    );

    border-radius: 0 0 100% 100%;
}
.sidebar::before {
    content: "";
    position: absolute;
    bottom: 155px;
    left: -122%;
    width: 228%;
    height: 334px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.00));
    border-radius: 0 0 196% 240%;
}
.sidebar-opcoes,
.sidebar-opcoes * {
  position: relative;
  z-index: 2;
}
.sidebar-opcoes{
    display: flex;
    flex-direction: column;
    margin: 5px;
    width: 90%;
    flex: 1; 
}
.sidebar-opcoes a{
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}
.sidebar-opcoes button{
    display: block;
    margin-top: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    background: none;
    border-style: none;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    font-family: sans-serif;
    color: #ebebeb;
}
.item-menu:hover{
    background-color: #ebebeb;
    color:var(--cor-primaria);
    padding: 10px;
    border-radius: 8px;
    width: 100%;
}
.item-menu:hover i{
    background-color: var(--cor-primaria);
    color:#ebebeb;
    padding: 5px;
    border-radius: 5px;
}
.item-menu:active{
    font-weight: bolder;
}
.item-menu i{
    margin-right: 5px;
}
.versao{
    margin-top: auto;
}
.versao p{
    color:#ebebeb;
    font-size: 12px;
    text-align: left;
}
.conteudo{
    vertical-align: top;
    padding-right: 25px;
    padding-left: 10px;
    width: 100%;
}
.conteudo-pagina{
    width: 100%;
    margin: 10px 10px;
}
.conteudo-pagina h2{
    margin: 5px 0px 10px 0;
}
hr{
    margin-bottom: 10px;
    border: 0;
    background-color: var(--cor-primaria);
    height: 1px;
    opacity: 0.3;
}
label{
    font-weight: 500;
    margin-bottom: 5px;
}
footer a{
    color: var(--cor-primaria);
}
.label-padrao{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}
input[readonly] {
    background-color: #f7f7f7;
    color: #666;
    cursor: not-allowed;
}
.input-padrao{
    border-left: var(--cor-primaria)!important;
    border-left-style: solid !important;
    margin-top: 5px !important;
    margin-bottom: 10px !important;
    border-top-style: none !important;
    border-right-style: none !important;
    border-bottom-color: #efefef;
    border-bottom-width:thin;
    background: #fcfcfc !important;
    height: 40px;
    display: block;
    border-radius: 8px;
    width: 95%;
    padding-left: 10px;
}
.input-padrao:disabled{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
input[type="color"]{
   cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: unset;
    margin: unset;
}
textarea.input-padrao {
    height: auto;
    min-height: 300px;
}
.form-field .input-padrao{
    height: auto;
    min-height: 50px;
}
.input-file-padrao{
    display: inline-block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.input-file-padrao::file-selector-button {
    height: 28px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
    color: var(--cor-primaria);
    border-color: var(--cor-primaria);
    border-style: solid;
    border-width: 2px;
    background: #fff;
    cursor: pointer;
    padding: 0 12px;
    white-space: nowrap;
}

.input-file-padrao::file-selector-button:hover {
    opacity: 0.9;
    color:  #fff;
    border-color: var(--cor-primaria);
    border-style: solid;
    border-width: 2px;
    background: var(--cor-primaria);
}
.input-file-escondido{
    display: none !important;
}
.input-color-padrao {
    border-left: 4px solid var(--cor-primaria) !important;
    margin-top: 5px !important;
    margin-bottom: 10px !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: thin solid lightgrey;
    background: #fcfcfc !important;
    height: 40px;
    display: block;
    border-radius: 8px;
    width: 95%;
    padding: 4px 8px;
    cursor: pointer;
}

/* Remove bordas internas padrão (Chrome / Edge / Safari) */
.input-color-padrao::-webkit-color-swatch-wrapper {
    padding: 0;
}

.input-color-padrao::-webkit-color-swatch {
    border: none;
    border-radius: 6px;
}

/* Firefox */
.input-color-padrao::-moz-color-swatch {
    border: none;
    border-radius: 6px;
}
.a-padrao{
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}
.a-padrao:hover{
    color: grey;
}
.botao-padrao{
    background: var(--cor-primaria)!important; 
    color: #fcfcfc !important;
	border: none;
	font-size:1rem;
	padding: .4rem 1rem;
	cursor:pointer;
	font-weight: 500;
    display: inline;
    margin: 15px 5px 5px 5px;
    border-radius: 3px;
}
.botao-padrao:hover{
    background: #fcfcfc !important; 
    color: var(--cor-primaria) !important;
    border-style: solid;
    border-width: 1px;
    border-color: var(--cor-primaria);
}
.botao-padrao:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.botao-padrao[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
.secundario{
    background: #fcfcfc !important; 
    color: var(--cor-primaria) !important;
    border-style: solid;
    border-width: 1px;
    border-color: var(--cor-primaria);
}
.aprovado{
    background: #4AC959 !important;
}
.reprovado{
    background: #FF4C4C !important;
}
.input-com-texto {
    display: flex; 
    align-items: center;
    width: 95%;
}
.input-com-texto .input-padrao{
    margin: auto;
}
.input-com-texto p {
    margin: 0; 
    padding-left: 5px;
    color: grey;
}
.modal-body .botao-padrao{
    background: #f7f5f5 !important; 
    color: #464646 !important;
    border-style: solid;
    border-width: 1.5px;
    border-color: #bebbbb;
    border-radius: 8px;
    padding: 10px;
}
.modal-body .botao-padrao:hover{
    background: #464646 !important; 
    color: #f7f5f5 !important;
    border-style: solid;
    border-width: 1.5px;
    border-color: #bebbbb;
    border-radius: 8px;
    padding: 10px;
    animation: .5s ease !important;
}
.modal-body .botao-padrao i{
    font-size: 12px;
}
.modal-footer .botao-padrao:hover{
    background: #fcfcfc !important; 
    color: var(--color-primary) !important;
    border-style: solid;
    border-width: 1px;
    border-color: var(--color-primary);
}
.modal-sm{
    width: 400px;
    margin: auto;
    top: 10%;
}
.botao-ui{
    background: #d9d9d9 !important; 
    color: #464646 !important;
	border: none;
    margin: 0px 5px 0px 5px !important;
	font-size:1rem;
	padding: .4rem 1rem;
	cursor:pointer;
	font-weight: 500;
    display: block;
}
.botao-ui a{
    text-decoration: none !important;
}
.botao-ui-chatbot{
    background: #fff; 
    color: #e31010 !important;
	border: none;
	font-size:14px;
	padding: 2px;
	cursor:pointer;
	font-weight: 500;
    display: block;
}
.botao-padrao a{
    text-decoration: none;
}
.botao-icon{
    background: transparent;
    border-style: none;
    cursor: pointer;
    color: var(--cor-primaria);
}
.botao-compartilhar{
    background: #0e76a8 !important; 
    color: #fcfcfc !important;
	border: none;
	font-size:1rem;
	padding: 20px;
	cursor:pointer;
	font-weight: 500;
    display: block;
    margin-left: 5%;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 85%;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}
.botao-compartilhar-whatsapp{
    background: #4AC959 !important; 
    color: #fcfcfc !important;
	border: none;
	font-size:1rem;
	padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
	cursor:pointer;
	font-weight: 500;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 85%;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}
.botao-novo-chat{
    background: #ffffff40  !important; 
    color: #fcfcfc !important;
	border: none;
	font-size:1rem;
	padding: 20px;
	cursor:pointer;
	font-weight: 500;
    display: block;
    margin-left: 5%;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 85%;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}
.botao-novo-chat:hover{
    background-color: #2F2F2F !important;
}
.botao-novo-chat p{
    margin-left: 5px;
    font-weight: 500;
    display: inline;
    font-family: 'Montserrat', sans-serif;
}
.botao-compartilhar p{
    margin-left: 5px;
    font-weight: 500;
    display: inline;
    font-family: 'Montserrat', sans-serif;
}
.nav-tabs{
	width: 90%;
    display: inline-flex;
    text-align: left;
    padding-bottom: 5px;
    margin: 0px;
    border-bottom: solid;
    border-width: 0.5px;
    border-color: #e9e9e9;
    list-style-type: none;
}
.nav-tabs li a{
    font-style: normal;
}
.nav-tabs li a:link{
	color: #424242;
	padding-left: 5px;
	padding-right: 15px;
	padding-top:5px;
	padding-bottom: 5px;
    text-decoration: none;
}
.nav-tabs li a:hover{
    padding-left: 5px;
	padding-right: 15px;
    padding-top:5px;
	padding-bottom: 5px;
	color: var(--cor-primaria);
}
.full-width{
    width: 100%;
}
.half-width{
    width: 50%;
}
.tab-content>.tab-pane{
    display: none;
}
ul.nav-tabs li.active {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-color: var(--cor-primaria);
}
.tab-content>.active{
    display: block;
    justify-content: center;
    margin: 20px;
}
.tab-content>.tab-pane form{
    width: 100%;
}
.bloco-pesquisa{
    margin:10px 10px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.bloco-pesquisa h3{
    margin-top: 5px;
    margin-bottom: 15px;
    color: grey;
}
.bloco-pesquisa h4{
    margin-bottom: 5px;
    font-weight: 500;
    color: grey;
}
.bloco-indicadores{
    margin:10px 10px;
    width: 100%;
    min-height: 800px;
    border-radius: 10px;
    display: block;
}
.indicador{
    padding-top: 10px;
    padding-left: 10px;
    vertical-align: middle;
    margin: 5px;
    font-size: 30px !important;
}
.titulo-indicadores p{
    vertical-align: middle;
    margin: 5px;
    font-size: 18px !important;
}
.grupo-quadro{
    border-style: solid;
    border-color: #f3eeee;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    flex-basis: calc(50% - 10px);
}
.grupo-quadro legend{
    font-size: 14px;
}
.grupo-quadro span{
    display: inline-flex;
    margin-left: 10px;
    margin-right: 10px;
    gap: 5px;
}
.grupo-quadro input{
    border-style: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #ebe3e3;
}
.grupo-quadro h3{
    text-align: left;
    margin: auto;
    padding-bottom: 20px;
}
.grupo-quadro label{
    font-weight: normal;
}
.grupo-quadro p{
    margin-bottom: 10px !important;
}
.grupo-quadro-indicadores{
    display: inline-block;
    position: relative;
    margin: 10px;
    width: 20%;
    vertical-align: top;
    min-height:130px;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 15px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.02) 83%);
    background-size: 100% 15%;
    background-repeat: no-repeat;
    background-position: center bottom;
}
.grupo-quadro-indicadores h4{
    width: 50%;
    margin-top: 5px;
    margin-bottom: 5px !important;
    font-size: 14px;
    color: #474747;
}
.grupo-quadro-indicadores p{
    font-size: 12px;
}
.grupo-quadro-indicadores hr{
    color: #ededed;
    border-style: solid;
    border-color: var(--cor-primaria);
    margin-left: 5px;
    width: 45%;
}
.grupo-quadro-indicadores-link{
    text-decoration: none;
    color: #000 !important;
}
.grupo-quadro-indicadores-link:active{
    text-decoration: none !important;
    color: #000 !important;
}
.grupo-quadro-indicadores-link:link{
    text-decoration: none !important;
    color: #000 !important;
}
.grupo-quadro-indicadores img{
    position: absolute;
    right: 20px;
    bottom: 15px;
    filter: grayscale(100%) brightness(1.9) contrast(0.1);
    opacity: 0.3;
    width: 15%;
}
.grupo-quadro-grande{
    background-color: #fff;
    display: block;
    margin: auto;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.grupo-quadro-grande h3{
    margin: 10px;
}
.grupo-quadro-grande span{
    display: inline-flex;
}
.grupo-quadro-grande span i{
    margin: auto;
    color: lightgrey;
    cursor: pointer;
}
.bkg-cinza{
    background-color: #fbfbfb;
}
.bkg-branco{
    background-color: #fff;
}
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(10, auto);
    gap: 6px 5px;
    align-items: center;
    text-align: left;
  }
.tabela{
    border-collapse: separate;
    border-spacing: 0px 4px;
    min-width: 1200px;
    width: 100%;
    margin-bottom: 10px;
}
.tabela tr{
    height: 80px;
    border-style: solid;
    border-width: 1px !important;
    border-color: #9f2a2a;
    border-radius: 5px;
    margin: 20px;
    background-color: white;
    border-right: solid;
    box-shadow: 3px 6px 6px -3px #e2e2e2;
    vertical-align: middle;
    cursor: pointer;
}
.tabela th{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    text-align: center;
}
.tabela td{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    vertical-align: baseline
}

.tabela tbody tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.tabela tbody tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.tabela thead tr th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.tabela thead tr th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.tabela td i{
    margin-left: 5px;
    margin-right: 5px;
    line-height: 30px;  
    display: inline;
    cursor: pointer;
}
.tabela-resultado{
    border-style: solid;
    border-width: 1px;
    border-color: #999;
    border-collapse: collapse;
}
.tabela-resultado tr{
    border-style: solid;
    border-width: 1px;
    border-color: #e5e5e5;
}
.tabela-resultado td,th{
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.modal .tabela-resultado {
    overflow-x: auto;
    width: 100%;
    border-style: none;
}
.modal{
    position:fixed;
    top:5px;
    right:10%;
    bottom:0;
    left:10%;
    z-index:1050;
    display:none;
    overflow:hidden;
    -webkit-overflow-scrolling:touch;
    outline:0;
}
.modal.fade .modal-dialog{
    -webkit-transform:translate(0,-25%);
    -ms-transform:translate(0,-25%);
    -o-transform:translate(0,-25%);
    transform:translate(0,-25%);
    -webkit-transition:-webkit-transform .3s ease-out;
    -o-transition:-o-transform .3s ease-out;
    transition:-webkit-transform .3s ease-out;
    transition:transform .3s ease-out;
    transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out
}
.modal.in .modal-dialog{
    -webkit-transform:translate(0,0);
    -ms-transform:translate(0,0);
    -o-transform:translate(0,0);
    transform:translate(0,0)
}
.modal-open .modal{
    overflow-x:hidden;
}
.modal-dialog{
    position:relative;
    width:auto;
    margin:10px
}
.modal-content{
    position:relative;
    background-color:#fff;
    background-clip:padding-box;
    border:1px solid #999;
    border:1px solid rgba(0,0,0,.2);
    border-radius:6px;
    -webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);
    box-shadow:0 3px 9px rgba(0,0,0,.5);
    outline:0;
    border-radius:15px;
}
.modal-backdrop{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:1040;
    background-color:#000
}
.modal-backdrop.fade{
    filter:alpha(opacity=0);
    opacity:0
}
.modal-backdrop.in{
    filter:alpha(opacity=50);
    opacity:.5
}
.modal-header{
    padding:15px;
    border-bottom:1px solid #e5e5e5
}
.modal-header .close{
    margin-top:-2px
}
.modal-title{
	text-align:center;
    margin:0;
    line-height:1.42857143
}
.modal-subtitle{
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px !important;
    color: #464646;
}
.modal-body{
    position:relative;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #424242;
    max-height: 400px;
    overflow-y: auto;
}
.modal-body ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.modal-body li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px; 
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.modal-body li::before {
    position: absolute;
    left: 0;
    top: 3px;
    font-weight: bold;
}
.modal-footer{
    padding:15px;
    text-align:right;
    border-top:1px solid #e5e5e5;
}
.modal-footer .btn+.btn{
    margin-bottom:0;
    margin-left:5px
}
.modal-footer .btn-group .btn+.btn{
    margin-left:-1px
}
.modal-footer .btn-block+.btn-block{
    margin-left:0
}
.modal-scrollbar-measure{
    position:absolute;
    top:-9999px;
    width:50px;
    height:50px;
    overflow:scroll
}
.close{
    float:right;
    font-size:21px;
    font-weight:700;
    line-height:1;
    color:#000;
    text-shadow:0 1px 0 #fff;
    filter:alpha(opacity=20);
    opacity:.2
}
.close:focus,.close:hover{
    color:#000;
    text-decoration:none;
    cursor:pointer;
    filter:alpha(opacity=50);
    opacity:.5
}
button.close{
    padding:0;
    cursor:pointer;
    background:0 0;
    border:0;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none
}
.subtitulo-modal{
    text-align: center;
    display: block;
    font-size: 12px;
}
.button-modal{
	background-color: #c3c3c3;
	border-width:0px;
	color: #424242;
	padding: .5rem 1rem;
	margin-right: 10px;
    cursor: pointer;
    border-radius: 8px;
}
.bolinha {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
}
.vermelho {
    background-color: red;
}

.amarelo {
    background-color: yellow;
}

.verde {
    background-color: green;
}
.dropdown-registro{
    position: relative;
    display: inline-block;
}
.dropdown-content-registro{
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 10px 10px 10px 10px;
    text-align: left;
    top: -280%;
}
.dropdown-content-registro a{
    color: #424242;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content-registro a:hover{
    background-color: white;
    color: var(--cor-primaria);
}
.dropdown-content-registro-disabled{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.dropdown-content-registro-lote{
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 10px 10px 10px 10px;
    text-align: left;
    top: 105%;
}
.dropdown-content-registro-lote a{
    color: #424242;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content-registro-lote a:hover{
    background-color: white;
    color: var(--cor-primaria);
}
.dropdown-content-registro-lote-disabled{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.botao-drop{
    background: var(--cor-primaria)!important; 
    color: white !important;
    border-style: solid;
    border-color: var(--cor-primaria);
    margin: 0px 5px 0px 5px;
	font-size:1rem;
    padding: .4rem 1rem;
	cursor:pointer;
    border-radius: 2%;
}
.botao-drop:hover{
    background: white !important; 
    color: var(--cor-primaria) !important;
    border-radius: 2%;
    border-style: solid;
    border-color: var(--cor-primaria);
}
.botao-drop.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.botao-drop-icon{
    background: var(--cor-primaria)!important; 
    color: #424242 !important;
	border: none;
    margin: 0px 5px 0px 5px;
	font-size:1rem;
	padding: .4rem 1rem;
	cursor:pointer;
    border-radius: 100%;
    position: fixed;
    right: 355px;
    top: 400px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.botao-drop-icon:hover{
    background: white !important; 
    color: var(--cor-primaria) !important;
	border: none;
    margin: 0px 5px 0px 5px;
	font-size:1rem;
	padding: .4rem 1rem;
	cursor:pointer;
    border-radius: 100%;
    border-style: solid;
    border-color: var(--cor-primaria);
}
.show-registro{display:block;}
.paginacao {
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}
.paginacao a {
    padding: 8px 16px;
    text-decoration: none;
    color: #ffffff;
    background-color: var(--cor-primaria);
    border: 1px solid var(--cor-primaria);
    border-radius: 5px;
    margin-right: 5px;
}
.paginacao a:hover {
    background-color: #f2f2f2;
    color: var(--cor-primaria);
    border: 1px solid var(--cor-primaria);
}
.paginacao span {
    padding: 8px 16px;
    color: #666666;
    background-color: #f2f2f2;
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin-right: 5px;
}
.paginacao a:disabled,
.paginacao span.disabled {
    background-color: #dddddd;
    border-color: #dddddd;
    cursor: not-allowed;
}
.linha{
    display: inline-flex;
    margin-top: 10px;
    margin-bottom: 10px;
    gap:10px;
}
.linha-indicadores{
    display: inline-flex;
}
.titulo-indicadores{
    margin: 5px;
    padding-left: 10px;
    vertical-align: middle;
    line-height: 1.5;
}
.duas-colunas{
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}
.tres-colunas{
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}
.linha .botao-ui{
    margin: auto;
}
.disclaimer{
    font-size: 12px;
    text-align: center;
}
.disclaimer a{
    cursor: pointer;
    color: var(--cor-primaria);
    text-decoration: none;
}
.disclaimer a:hover{
    cursor: pointer;
    color: #959290 ;
}
.disclaimer-chatbot{
    margin-left: 10px;
    padding-top: 5px;
    font-size: 12px;
    text-align: center;
    width: 100%;    
}
.disclaimer-chatbot a{
    cursor: pointer;
    font-weight: bold;
    color: #686768;
}
.versao{
    font-size: 10px;
    text-align: center;
}
.subform{
    border-style: solid;
    padding: 5px 10px 10px 20px;
    border-width: 1px;
    margin: 20px;
    border-color: #f3eeee;
}
.subform h4{
    text-align: left;
}
.grupo-indicadores{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.loading{
    display: block;
    z-index: 1;
    position: fixed;
    top: 50%;
    right: 50%;
}
.loading-modal{
    display:none;
    text-align:center;
    margin:auto;
    width: 50px;
}
.loading-modal-chat{
    width: 50px;
    z-index: 1;
    display: block;
    position: absolute;
    bottom: 250px;
    left: 30%;
}
.input-loading {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='20' stroke='%23007bff' stroke-width='5' fill='none' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' dur='0.8s' repeatCount='indefinite' from='0 25 25' to='360 25 25' /%3E%3C/circle%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}
.campo-editavel {
    padding: 8px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}
.campo-editavel:hover {
    min-width: 200px;
    border: 1px solid #ddd;
    cursor: pointer;
}
.campo-editavel input[type="text"] {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.campo-editavel input[type="text"]:focus {
    border-color: #66afe9;
    outline: none;
}
.lista{
    text-align: left;
}
.lista i{
    cursor: pointer;
}
.botao-menu{
    display: none;
}
.botao-minimiza-menu{
    display: none;
    margin-left: 10px;
}
footer {
    background-color: #b3b3b3;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}
footer a:hover{
    color: #fff;
    text-decoration:underline;
}
footer a:active{
    color: #fff;
    font-style: bold;
}
footer a:link{
    color: var(--cor-primaria);
    font-style: bold;
    font-weight: bolder;
    text-decoration: none;
}
footer .logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.assinatura{
    font-size: 12px;
}
.form_section{
    padding-top: 50px;
    padding-bottom: 50px;
    display: table-row;
}
.form-signin{
    text-align: center;
    width: 100%;
    max-width: 330px;
    margin-left: 33%;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 50px;
    background-color: #fff;
    opacity: 0.9;
  }
  .form-signin h1{
    margin-top: 1rem;
	width: 90%;
  }
  .form-gestao-senha{
    text-align: center;
    width: 100%;
    max-width: 330px;
    margin: auto;
    padding: 50px;
    background-color: #fff;
    opacity: 0.9;
  }
  .hero-image{
    background-color: #ffffff;
    display: inline-flex;
    width: 100%;
    height: 50%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.page-layout{
    background-color: #ffffff;
    display: inline-flex;
    width: 100%;
}
.page-colun-1-line-1{
    max-height: 70vh;
    overflow-x: auto;
}
.page-colun-1-line-2{
    max-height: 30vh;
}
.container-chatbot{
    background-image: url("/static/images/background_chatbot.svg");
    display: inline-flex;
    width: 100%;
    height: 50%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom: 80px;
}
.grupo-login{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), var(--cor-primaria)), url("/static/images/background.png");
    display: inline-flex;
    width: 100%;
    height: 50%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.forgot-password{
    font-size:12px;
    margin-top: 10px !important;
}
.forgot-password a{
    color: grey;
    text-decoration: none;
    font-weight: 600;
}
.grupo-contato{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), var(--cor-primaria)), url("/static/images/background.png");
    width: 100%;
    height: 50%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.grupo-agradecimento{
  font-family: 'Montserrat', sans-serif;
  background-color: #242424;
  display: block;
  padding-top: 5%;
  width: 100%;
  text-align: center;
  background-image: url("/static/images/background_chatbot.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
}
.grupo-agradecimento h1{
    font-size:38px;
    color: #fff;
}
.grupo-agradecimento p{
    font-size:24px;
    color: #fff;
}
.grupo-agradecimento .botao-novo-chat{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}
.grupo-agradecimento a{
    text-decoration: none;
    color: #fff;
}
.erro{
    color: red;
    font-size: 12px;
}
.grupo-chat-box{
    display: block;
    text-align: center;
    width: 70%;
    padding: 5px;
    color: #242424;
    border-radius: 5px
}
.grupo-chat-box p{
    font-family: 'Montserrat', sans-serif;
}
.chat-box{
    display: block;
    text-align: left;
    width: 85%;
    margin: 5%;
    padding: 20px;
    opacity: 0.8;
}
body::-webkit-scrollbar {
    width: 12px;
  }
  
  body::-webkit-scrollbar-track {
    background: rgb(211, 211, 211);
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: rgb(116, 116, 116);
    border-radius: 20px;
    border: 3px solid rgb(116, 116, 116);
  }
  
  .chat-box::-webkit-scrollbar {
    width: 12px;
  }
  
  .chat-box::-webkit-scrollbar-track {
    background: rgb(211, 211, 211);
  }
  
  .chat-box::-webkit-scrollbar-thumb {
    background-color: rgb(116, 116, 116);
    border-radius: 20px;
    border: 3px solid rgb(116, 116, 116);
  }
.sidebar-bio{
    display: inline-flex;
    text-align: left;
    width: 85%;
    margin: 5%;
    padding: 5px;
    color: #fff;
    opacity: 0.8;
    font-family: 'Montserrat', sans-serif;
}
.sidebar-bio h2,.sidebar-bio p{
    padding-left: 20px;
    font-family: 'Montserrat', sans-serif;  
}
.header-bio-lp{
    display: inline-flex;
    text-align: left;
    width: 85%;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 5px;
    color: #fff;
    opacity: 0.8;
    font-family: 'Montserrat', sans-serif;
}
.header-bio-lp-texto{
    padding-left: 20px;
    font-family: 'Montserrat', sans-serif;  
    margin-top: auto;
    margin-bottom: auto;
    font-size: 17px;
}
.header-bio-lp img{
    width: 32px;
    height: 32px;
}
.footer-bio-lp{
    display: inline-flex;
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 5px;
    color: #fff;
    opacity: 0.8;
    font-family: 'Montserrat', sans-serif;
}
.footer-bio-lp-texto{
    padding-left: 20px;
    font-family: 'Montserrat', sans-serif;  
    margin-top: auto;
    margin-bottom: auto;
    font-size: 17px;
}
.footer-bio-lp img{
    width: 32px;
    height: 32px;
}
.titulo-chatbot-lp{
    font-size: 34px;
    color: #fff;
    padding-bottom: 20px;
    padding-left: 0px !important;
}
.subtitulo-chatbot-lp{
    font-size: 16px;
    color: #fff;
    padding-bottom: 20px;
    padding-left: 0px !important;
}
.sidebar-cta{
    display: block;
    text-align: left;
    width: 85%;
    margin-top: 2%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    padding: 5px;
    color: #fff;
    opacity: 0.8;
    font-family: 'Montserrat', sans-serif;
}
.cta-chat-bot{
    width: 85%;
    margin: 5%;
    cursor: pointer;
}
.intro{
    display: block;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}
.intro p{
    padding-top: 20px;
    padding-bottom: 20px;
}
.logo-apoiadores-chatbot{
    width: 160px;

}
.avatar-lp{
    width: 640px;
    height: 640px;
    margin: auto;
}
.bloco-form{
    display: block;
}
.separador{
    margin-bottom: 15px;
    border: 0;
    background-color: #c1c6ca;
    width: 80%;
    opacity: 0.6;
}
.foto-bio{
    width: 96px;
    height: 96px;
    border-radius: 100%;
    border-width: 3px;
    border-color: #fff;
    border-style: solid;
}
.envia-mensagem{
    border-style: solid;
    border-width: 1px;
    border-color: #fbfbfb;
    background-color: #fbfbfb;
    border-radius: 15px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-flex;
    width: 85%;
    margin-bottom: 10px;
    box-shadow: 0px 9px 30px #80808036;
}
.envia-mensagem form{
    display: inline-flex;
    width: 100%;
}
.input-chat-bot {
    width: 93%;
    margin-right: 10px;
    margin-left: 10px;
    font-family: 'Montserrat', sans-serif;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}
.input-chat-bot:disabled{
    cursor: not-allowed;
    opacity: 0.7;           
}
.input-chat-bot:disabled::placeholder {
    color: transparent;
    opacity: 1;
}
.envia-mensagem .input-chat-bot{
    background-color: #fbfbfb;
}
.input-chat-bot-lp{
    width: 93%;
    margin-right: 10px;
    margin-left: 10px;
    border-style: none;
    font-family: 'Montserrat', sans-serif;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-style: solid;
    border-width: 0.5px;
    border-color: #fff;
    padding-left: 15px;
    color: #fff;
}
.input-chat-bot-lp::-webkit-file-upload-button {
    display: none;
}

textarea.input-chat-bot{
    min-width: 700px;
}
.custom-file-upload {
    position: relative;
    width: 93%;
    margin: 20px 10px;
}
.custom-file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.custom-file-upload label {
    display: block;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 0.5px solid #fff;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    line-height: 60px;
    color: #fff;
    cursor: pointer;
}
.custom-file-upload label:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
.upload-container {
    position: relative;
    display: inline-block;
    padding: 10px;
    margin: auto;
}
.file-input {
    display: none;
  }
.file-input:disabled{
    cursor: not-allowed !important;
    opacity: 0.6;
}
.file-input:disabled + .file-label {
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
}
.file-input:disabled + .file-label i {
    opacity: 0.6;
    cursor: not-allowed !important;
}
.file-label {
    cursor: pointer;
    font-size: 20px;
    color: var(--cor-primaria);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: none;
    background: none;
    margin-bottom: 0 !important;
}
.file-label:hover {
    color: #2F2F2F;
  }
.botao-chat-lp{
    background-color: var(--cor-primaria);
    font-weight: 600;
    color: black;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    display: block;
    text-align: center;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
}
.botao-icon-chatbot{
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 10px;
    border-style: none;
    display: block;
}
.sidebar-chatbot{
    width: 35%;
    background-color: var(--cor-primaria);
    padding: 10px;
}
.apoiadores{
    color: #fff;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}
.apoiadores p{
    padding-bottom: 10px !important;
    font-size: 10px;
}
.titulo-subtitulo-chatbot{
    margin-top: 10px;
    margin-bottom: 10px;
}
.titulo-subtitulo-chatbot h2,p{
    margin-top: 2px !important;
    margin-bottom: 2px !important;
}
.form-lp{
    display: block;
    margin-left: 10%;
    width: 30%;
}
.form-chatbot{
    margin-top: 20px;
}

.form-chatbot label{
    margin-top: 20px;
    margin-left: 10px;
}
.apoiadores img{
    margin-left: 5px;
    margin-right: 5px;
}
.botao-chat-bot{
    background: transparent !important;
    color: var(--cor-primaria) !important;
    border: none;
    padding: 1rem 1rem;
	cursor:pointer;
	font-weight: 500;
    border-radius: 5px;
}
.botao-chat-bot:disabled{
    color: #999;
    cursor: not-allowed !important;
    opacity: 0.6;
}
#chat-input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 16px;
}
#send-button {
    padding: 10px;
    border: none;
    background: var(--cor-primaria);
    color: white;
    cursor: pointer;
    font-size: 20px;
}
#send-button:hover {
    color: #2F2F2F !important;
}
.message {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.message.you {
    justify-content: flex-start;
    background-color: #eaeaea;
    color: #2F2F2F ;
    margin-right: 40%;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 0px;
    font-family: 'Montserrat', sans-serif;
}

.message.bot {
    justify-content: flex-end;
    color: #2F2F2F;
    margin-left: 20%;
    margin-top:40px;
    margin-bottom: 40px;
}

.message.bot .text{
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 0px;
    font-family: 'Montserrat', sans-serif;
}

.message .text {
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
}

.you .text {
    align-self: flex-start;
    text-align: left;
    border-width: 1.5px;
    border-left-color: #53b2f6;
    border-left-width: 2px;
    padding: 30px;
    line-height:1.5;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.bot .text {
    background-color: var(--cor-primaria)1f;
    color:#2F2F2F;
    align-self: flex-start;
    text-align: left;
    padding-left: 40px;
    line-height:1.5
}
.bot .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border-width: 1.5px;
    border-color: var(--cor-primaria);
    border-style: solid;
}
.box-contato{
    text-align: center;
    padding: 20px;
    background-color: #fff;
    opacity: 0.8;
    display: block;
}
.form-contato{
    text-align: center;
    max-width: 500px;
    margin-left: 10%;
    margin-right: 10%;
    padding: 10px;
    background-color: #fff;
    opacity: 0.9;
    display: inline-block;
    width: 50%;
}
.form-modal{
    display: inline-flex;
    width: 95%;
    margin-bottom: 10px;
    margin-top: 10px;
    vertical-align: middle;    
}
.form-modal .botao-padrao{
    margin: 10px;
}
.form{
    width: 100%;
}
.form-duas-colunas{
    display: inline-flex;
    gap: 15px;
}
.form-duas-colunas fieldset{
    width: 48%;
}
.form-resultado-pesquisa{
    margin: 2% 15% 2% 10%;
}
.nenhum-resultado-pesquisa{
    padding: 20px;
}
.developedby{
    margin-bottom: 0px;
    color: white;
    font-size: 12px;
    text-align: center;
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.developedby a{
    color:#fff;
    text-decoration: none;
    font-weight: 600;
}
.alert-container {
    margin-bottom: 20px;
}
.alert {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.alert.success {
    background-color: #d4edda;
    color: #155724;
}
.alert.error {
    background-color: #f8d7da;
    color: #721c24;
}
.popup {
    width: 500px;
    background-color:#fff;
    display: none;
    position: fixed;
    bottom: 0%;
    left: 20%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border: 1px solid lightgrey;
    z-index: 1000;
    text-align: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 0px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}
.popup p{
    text-align: left;
    padding-bottom: 10px;
}
.popup a{
    text-decoration: none;
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.close-btn {
    background-color: transparent;
    color: lightgrey;
    border: none;
    padding: 2px 2px;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 15px;
}
.cta-popup{
    background-color: black;
    color: white;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    cursor: pointer;
    border-radius: 5px;
    border-style: none;
    display: block;
    font-family: 'Montserrat', sans-serif;
}
.grupo-popup{
    display: inline-flex;
}
.subgrupo-popup{
    padding-left: 20px;
}
.logotipo-popup{
    margin: 15px;
}
.popup-title-message{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #000000;
}
.popup-title-message b{
    color: #35A7FC;
}
.popup-message{
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #606060;
}
.a-popup{
    text-decoration: none;
}
.veiculos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0px;
}

.veiculo-card {
    border: 1px solid #ebebeb;
    border-radius: 8px;
    min-width: 40%;
    max-width: 525px;
    margin: 0px;
}

.veiculo-card input.input-padrao {
    width: 100%;
    margin-bottom: 8px;
}
.veiculo-card-grande {
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 15px;
}
.avatar-circulo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0)
    );
    pointer-events: none;
}
.avatar-circulo::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--cor-primaria), transparent 65%),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.avatar-circulo:hover::after {
    opacity: 1;
}
.avatar-circulo {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    flex-shrink: 0;
    border: 3px solid transparent;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(
            135deg,
            var(--cor-primaria),
           var(--cor-primaria-clara)
        ) border-box;
}
.avatar-circulo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.avatar-circulo:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.16),
        0 6px 10px rgba(0, 0, 0, 0.12);
}
.image-dados-usuario{
    width: 150px;
    height: 150px;
    margin: auto ;
    display: flex;
}
.grupo-quadro-dados-principais{
    display: inline-flex;
    margin: auto;
    gap: 15px;
    width: 100%;
}
.grupo-quadro-dados-principais input{
    background-color: transparent;
    font-size: 12px;
    border-style: none;
    text-align: left;
    display: flex;
    color: #3a3a3a;
    flex: 1;
}
.grupo-quadro-dados-principais label{
    display: inline-flex;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    gap:2px
}
#dados_motorista span {
    display: flex;
    align-items: center;
    gap: 8px;
}

#dados_motorista label {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 14px;
}
#modal_cpf label {
    display: flex;
    align-items: center;
    gap: 4px;
    width: auto;
    margin: 0;
}
#dados_motorista a{
    margin-left: 10px;
}

#modal_cpf {
    width: 90px;
}

#dados_motorista  .grupo-elemento{
    padding-left: 10px;
}
.link{
    display: block;
    color: #3a3a3a;
    text-decoration: none;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-align: left !important;
    cursor: pointer;
    padding-top: 5px !important;
}
.link:hover{
    color: var(--color-primary) !important;
}
.disabled{
    cursor: not-allowed;
    opacity: 0.5;
}
.coluna-pequena{
    width: 20%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 5px;
}
.coluna-media{
    width: 35%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 5px;
}
.coluna-grande{
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}
.highlight{
    font-weight: bold !important;
    font-size: 24px !important;
    margin-bottom: 5px;
    width: 100%;
}
.grupo-quadro-dados{
    display: inline-flex;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.large{
    grid-template-columns: repeat(3, 1fr)
}
.small{
    grid-template-columns: repeat(2, 1fr)
}
.grupo-quadro-dados input,select{
    background-color: #fff;
    font-size: 14px;
    border-style: none;
    text-align: left;
    display: flex;
    color: #3a3a3a;
}
.grupo-quadro-dados label{
    display: inline-flex;
    align-items: center;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    gap:2px
}
.large-input{
    width: 200px;
}
.small-input{
    width: 30px;
    flex: none !important;
}
.timeline-container {
    padding: 20px 0;
}
.timeline {
    list-style: none;
    padding: 0;
    position: relative;
    margin: 0;
}
/* Linha vertical central */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e9ecef; 
    left: 2px; 
    margin-left: -2px;
    z-index: 0; 
}

/* Ponto de marcação */
.timeline-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #007bff; 
    border: 3px solid #fff; 
    left: 20px;
    top: 15px;
    margin-left: -10px;    
    z-index: 10;
}

.timeline-item.status-completo::before { background: #28a745; } 
.timeline-item.status-reprovado::before { background: #dc3545; } 
.timeline-item.status-removido::before { background: #dc3545; } 
.timeline-item.status-pendente::before { background: #ffc107; }

.timeline-date {
    font-size: 12px;
    color: #6c757d;
}
.timeline-title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
}
.timeline-description{
    font-size: 12px;
}
.lista-selecao{
    line-height: 25px;
}
.lista-selecao li{
    text-align: center;
}
/* Container para alinhar o texto e o switch */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.toggle-container label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

/* O elemento principal do switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 34px;
}

/* Esconde o checkbox padrão do navegador */
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* O "trilho" do switch (o background) */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc; /* Cor de fundo quando DESATIVADO */
    transition: .4s;
}

/* O "botão" (o indicador que se move) */
.slider:before {
    position: absolute;
    content: "";
    height: 26px; /* Altura do botão */
    width: 26px; /* Largura do botão */
    left: 4px; /* Posição inicial (padding interno) */
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

/* Estilo do trilho quando ATIVADO */
input:checked + .slider {
    background-color: #2196F3; /* Cor de fundo quando ATIVADO (ex: azul) */
}

/* Move o botão para a direita quando ATIVADO */
input:checked + .slider:before {
    transform: translateX(26px);
}

/* Arredonda o trilho e o botão */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
.hidden{
    display: none;
}
.fa-whatsapp:hover{
    color: #155724;
}
.status-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.status-input input {
    flex: 0 0 auto;
    width: 130px; 
}

/* Ícone */
.status-icon {
    padding-left: 10px;
    padding-right: 5px;
    font-size: 16px;
}

.status-nao-avaliado .status-icon {
    color: #888;
}

.status-aprovado .status-icon {
    color: #28a745;
}

.status-reprovado .status-icon {
    color: #dc3545;
}
.carrosel{
    display: inline-flex;
}
.carrosel img{
    width: 50px;
}
.preview-imagem-modal img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}
.preview-imagem-modal {
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 150px;
    height: 150px;
    margin: auto;
     display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.preview-imagem-modal:hover {
    opacity: 0.85;
    transform: scale(1.02);
}
.preview-imagem-modal button{
    margin: auto;
    background: transparent;
    border-style: none;
    color: grey !important;
}
.bot-options {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 5px;
}

.bot-option-btn {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    cursor: pointer;
    text-align: left;
}

.bot-option-btn:hover {
    background-color: #e9e9e9;
}
.content {
    display: flex;
    flex-direction: column;
}
.cpf-item {
    display: inline-flex !important;
    align-items: center;
    gap: 3px;
    margin-left: 10px;
    margin-bottom: 5px;
    font-size: 12px;
}
.cpf-texto.link {
    color: #464646;
    text-decoration: none;
}

.cpf-texto.link:hover {
    text-decoration: underline;
    color: var(--cor-primaria);
}
.btn-remover-cpf {
    background: #dc3545;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0px 4px;
    border-radius: 2px;
}
.nav-tabs > li.disabled > a {
    pointer-events: none;
    cursor: not-allowed;
    color: #aaa;
}
#bt_fazer_login{
    background: white !important;
    color: var(--cor-primaria)  !important;
    border-style: solid;
    border-width: 1px;
    border-color: var(--cor-primaria)  !important;
}
#bt_fazer_login:hover{
    color: white !important;
    background: var(--cor-primaria)  !important;
    border-color: white  !important;
}
.campo-senha {
    position: relative;
    display: flex;
    align-items: center;
}

.campo-senha input {
    width: 100%;
    padding-right: 40px;
}

.campo-senha button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}
.campo-senha button i{
    color: #464646;
}
.grid{
    display: grid;
    gap: 16px;
    align-items: end;
    grid-template-columns: repeat(12, 1fr);
}
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-8 { grid-column: span 8; }
.col-10 { grid-column: span 10; }
.col-12 { grid-column: span 12; }

.grupo-elemento{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.grupo-elemento input[select]{
    height: 40px !important;
}
.sm {
    width: 20%;
}
.grey{
    background-color: #aaa;
}
.destaque{
    border-style: solid;
    border-width: 1px;
    border-color: #eaeaea;
    border-radius: 10px;
    padding: 5px;
    margin-left: 10px;
}
.destaque p{
    font-size: 12px;
    text-align: left;
    font-weight: 600;
}
.destaque label{
    font-weight: normal;
}
.status-field{
    position: relative;
    margin-bottom: 10px;
}
.status-field:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;          /* margem esquerda da linha */
    width: 60%;          /* tamanho da linha */
    height: 1px;
    background-color: #efefef;
}
.status-field label{
    font-size: 14px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px 16px;
    width: 100%;
    margin-right: 20px;
}
.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
}

.form-field input,select {
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.form-field.small {
    max-width: 120px;
}
.form-field.full {
    grid-column: 1 / -1;
    flex-direction: row;
}

/* grupo de checkbox */
.checkbox-group {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-top: 8px;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #444;
    cursor: pointer;
}
.checkbox input {
    accent-color: var(--cor-primaria);
}
.demo-white-label{
    background: #fafafa;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    padding: 5px 8px;
    gap: unset !important;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0px !important;
}
.demo-white-label p{
    margin: 0;
}
.demo-white-label p:first-of-type {
    font-weight: 700;
}
.demo-white-label i{
    margin-right: 10px;
}
.grupo-cor{
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}
.grupo-cor input[type='color']{
    max-width: 30px;
    max-height: 30px;
}
.grupo-cor input[type='text']{
    font-size: 14px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    max-width: 90px;
}
#lista-comentarios {
    max-height: 350px;
    overflow-y: auto;
}

.comentario-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 5px;
    background: #fafafa;
}

.comentario-header {
    display: inline-flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 3px;
}

.comentario-header span{
    margin-left: 2px;
    margin-right: 2px;
}

.comentario-data {
    font-weight: 600;
    color: #444;
}

.comentario-usuario {
    color: #777;
}

.comentario-texto {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
    margin-bottom: 5px;
}

@media screen and (max-width: 480px){
    body{
        width: 100%;
        margin: 0px;
    }
    .sidebar{
        display: none;
        position: absolute;
        z-index: 1;
        width: 60%;
    }
    .modal{
        width: 95%;
        top: 5px;
        left: 1%;
    }
    .dropdown-registro{
        display: block;
    }
    .bloco-pesquisa{
        width: auto;
    }
    header h1{
        width: 58%;
    }
    .botao-menu{
        display: block;
        margin: auto;
        background-color: transparent;
        border-style: none;
        color: lightslategray;
    }
    #sidebar {
        display: none;
    }

    #sidebar.aberto {
        display: block;
    }
    .botao-minimiza-menu{
        border-style: none;
        display: block;
        padding: 5px;
        color: #fff;
        background-color: transparent;
    }
    .sidebar-opcoes{
        margin: 5px;
    }
    .grupo-login{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: 100vh;
        overflow-x: hidden;
    }
    .form_section{
        padding: 50px 0;
        width: 100%
    }
    .form-signin{
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 24px 16px;
    }
    .user-details{
        gap:1px;
        margin-top: 0;
        margin-bottom: 0;
        padding: 5px;
    }
    .user-details p{
        display: none;
    }
    .user-details img{
        width: 20px;
        height: 20px;
    }
    .chat-box{
        margin: auto;
        padding: 2px;
    }
    .form-contato{
        width: 80%;
    }
    .you .text {
        margin-left: 5%;
    }
    .bot .text {
        margin-right: 5%;
    }
    .grupo-quadro-indicadores{
        width: 80%;
        min-height: 90px;
    }
    .resultado-automacoes{
        overflow-y: auto;
    }
    .form-modal{
        display: block;
    }
    .icon-user{
        width: 30px;
        height: 30px;
    }
    .hero-image{
        display: block;
    }
    .grupo-chat-box{
        width: 90%;
    }
    .sidebar-chatbot{
        width: 100%;
        padding: 0px;
        margin-top: 20px;
    }
    .page-layout{
        display: block;
    }
    .form-lp{
        width: 100%;
    }
    .avatar-lp{
        display: none;
        width: 100%;
        padding-top: 30px;
    }
    .bloco-form {
        display: block;
        width: 80%;
    }
    .grupo-agradecimento .botao-novo-chat{
        width: 80%;
    }
    .footer-bio-lp{
        margin-top: 15%;
    }
    .envia-mensagem{
        width: 90%;
        margin-left: 10px;
    }
    .popup {
        width: 90%;
        left: 50%;
    }
    .logotipo-popup {
        width: 30%;
    }
    .message.you{
        margin-right: 15%;
    }
    .message.bot {
        margin-left: 5%;
    }
    textarea.input-chat-bot{
        min-width: 20px;
    }
    .logo{
        height: 30px;
    }
    .input-com-texto {
        display: block !important;
        margin-bottom: 15px;
    }
    .form-duas-colunas{
        display: block;
    }
    .form-duas-colunas fieldset{
        width: 90%;
    }
    .checkbox-grid{
        grid-template-columns: 1fr !important;
        line-height:5px;
    }
    .grid{
        display: block;
    }
    .tabela{
        display: block;
        min-width: auto;
        overflow-x: auto;
    }
    .grupo-quadro-dados-principais{
        display: block;
    }
    .tab-content>.active{
        margin: auto;
    }
    .modal-body{
        padding: 5px;
        margin: 2px;
    }
    .coluna-pequena{
        width: auto;
    }
    .coluna-media{
        width: auto;
    }
    .coluna-grande{
        width: auto;
    }
    #dados_motorista span {
        display: block;
        margin: auto;
    }
    .grupo-quadro{
        margin-top: 5px;
    }
    .grupo-elemento{
        margin: auto;
        padding: unset;
    }
    .grupo-quadro-dados {
        margin: auto;
    }
    #dados_motorista .grupo-elemento{
        padding-left: unset;
    }
    .nav-tabs{
        overflow-x: auto;
    }
     .half-width {
        width: 100%;
    }
    .form-resultado-pesquisa{
        margin: auto;
    }
    .veiculo-card-grande{
        padding: unset;
        margin: auto;
    }
    .toggle-switch {
        transform: scale(0.75);
    }
    .slider{
        margin: auto !important;
    }
    .loading-modal-chat{
        bottom: 250px;
        left: 40%;
    }
}
