/* ======= Modulos ======= */
:root.recruit {
  --color-primary: #007bff;    /* cor principal (ex: botões, destaques) */
  --color-accent: #0056b3;     /* cor de contraste ou hover */
  --color-text: #ffffff;       /* cor padrão de texto */
  --background-login: url("/static/images/background_login_recruit.png");
}
:root.sales {
  --color-primary: #E97132;
  --color-accent: #c65d25;
  --color-text: #ffffff;
  --background-login: url("/static/images/background.jpg");
}
:root.default {
  --color-primary: #007bff;
  --color-accent: #0056b3;
  --color-text: #ffffff;
  --background-login: url("/static/images/background.jpg");
}
body{
    background-color: #edeeef;
    font-family: sans-serif;
    color:#464646;
    margin: 0px;
}
header{
    color: #ebebeb;
    box-shadow: 0px 0px 8px grey;
    padding: 10px;
    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;
}
i[disabled]{
    opacity: 0.6;
    cursor: not-allowed;
}
.header-resultados{
    display: block;
}
.sub-header{
    display: flex;
    align-items: center;
}
.sub-header div{
    display: block;
    margin-left: 10px;
    line-height: 10px;
}
.header_sales{
    background-color: var(--color-primary);  
}
.header_recruit{
    background-color: var(--color-primary);
}
.logo{
    height: 60px;
    vertical-align: middle;
}
.logo-login{
    height: 50px;
}
.icon-user{
    width: 30px;
    height: 30px;
    margin: auto;
    text-align: right;
    border-radius: 100%;
    padding: 2px;
    cursor: pointer;
    filter: grayscale(100%) contrast(200%);
    vertical-align: middle;
}
.user-details{
    position: relative;
    display: inline-flex;
    display: inline-flex;;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-style: solid;
    border-width: 1px;
    border-radius: 25px;
    border-color: #c7c7c7;
    padding: 2px 10px 2px 10px;
    cursor: pointer;
}
.user-details p{
    margin: 0;
    padding: 2px;
    font-size: 12px;
    font-weight: 600;
}
.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;
}
.sidebar{
    width: 20%;
    background-color: white;
    display: inline-block;
    box-shadow: 4px 0px 8px grey;
    padding-right: 5px;
}
.sidebar-opcoes{
    display: grid;
    margin: 20px;
    padding: 5px;
    width: 90%;
}
.sidebar-opcoes a{
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}
.sidebar-opcoes button{
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    background: none;
    border-style: none;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    font-family: sans-serif;
    color: #464646;
}
.item-menu:hover{
    background-color: var(--color-primary);
    color: #ebebeb;
    padding: 8px;
    border-radius: 3px;
}
.item-menu:active{
    font-weight: bolder;
}
.item-menu i{
    margin-right: 5px;
}
.conteudo{
    vertical-align: top;
    display: inline-block;
    padding: 20px;
    width: 70%;
}
.conteudo-pagina{
    width: 100%;
    margin: 5px;
}
hr{
    margin-bottom: 10px;
    border: 0;
    background-color: #c1c6ca;
    height: 1px;
}
label{
    font-weight: 500;
    margin-bottom: 5px;
}
footer a{
    color: var(--color-primary);
}
.label-padrao{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}
.input-padrao{
    border-left: var(--color-primary) !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: lightgrey;
    border-bottom-width:thin;
    background: #fcfcfc !important;
    height: 40px;
    display: block;
    border-radius: 2px;
    width: 95%;
}
textarea.input-padrao {
    height: auto;
}
textarea.input-padrao-textarea-reduzido{
    height: auto;
    min-height: 100px;
    border-left: var(--color-primary) !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: lightgrey;
    border-bottom-width: thin;
    background: #fcfcfc !important;
    height: 40px;
    display: block;
    border-radius: 2px;
    width: 95%;
}
.botao-padrao{
    background: var(--color-primary) !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(--color-primary) !important;
    border-style: solid;
    border-width: 1px;
    border-color: var(--color-primary);
}
.botao-padrao.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.botao-padrao[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
.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);
}
.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;
    margin: 15px 5px 5px 5px;
    border-radius: 3px;
}
.botao-ui a{
    text-decoration: none !important;
}
.botao-ui[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
.botao-padrao a{
    text-decoration: none;
}
.botao-icon{
    background: transparent;
    border-style: none;
    cursor: pointer;
    color: var(--color-primary);
}
.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: #2F2F2F !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 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(--color-primary);
}

.tab-content>.tab-pane{
    display: none;
}
ul.nav-tabs li.active {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-color: var(--color-primary);
}
.tab-content>.active{
    display: block;
    justify-content: center;
    margin: 20px;
}
.tab-content>.tab-pane form{
    width: 100%;
}
.bloco-pesquisa{
    margin:auto;
    background-color: white;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 0px 11px grey;
    vertical-align: top;
    display: inline-block;
}
.bloco-pesquisa h2{
    margin-top: 10px;
}
.bloco-pesquisa h3{
    margin-top: 5px;
    margin-bottom: 15px;
    color: grey;
}
.bloco-pesquisa h4{
    margin-bottom: 5px;
    font-weight: 500;
    color: #808080;
}
.bloco-indicadores{
    margin:auto;
    background-color: white;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 0px 11px grey;
    display: block;
    min-height: 500px;
}
.indicador{
    font-size: 18px;
    padding-left: 10px;
    vertical-align: middle;
    margin: 5px;
}
.grupo-quadro{
    margin: auto;
    border-style: solid;
    border-color: #f3eeee;
    padding: 10px;
    border-radius: 5px;
    border-width: 0.5px;
}
.grupo-quadro-indicadores{
    display: inline-block;
    margin: 10px;
    border-style: solid;
    border-color: #cdcbcb87;
    padding: 5px;
    padding-left: 15px;
    border-radius: 12px;
    border-width: 0.5px;
    width: 20%;
    vertical-align: top;
    min-height:130px;
}
.grupo-quadro-indicadores h4{
    border-bottom-style: solid;
        border-width: 1px;
        border-color: var(--color-primary);
        width: 50%;
}
.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-grande{
    display: block;
    width: 95%;
    margin: auto;
    margin-bottom: 20px;
    border-style: solid;
    border-color: #e5e5e5;
    padding: 10px;
    border-radius: 12px;
    border-width: 0.5px;
}
.tabela{
    border-collapse: separate;
    border-spacing: 0px 4px;
    /* display: block; */
    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;
}
.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 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;
}
body.modal-open {
  padding-right: 0 !important;
}
.modal{
    position:fixed;
    top:5%;
    right:20%;
    bottom:0;
    left:20%;
    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: 10px;
    margin-bottom: 5px !important;
}
.modal-body{
    position:relative;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
}
.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;
}
.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(--color-primary);
}
.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(--color-primary);
}
.dropdown-content-registro-lote-disabled{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.botao-drop{
    background: var(--color-primary) !important; 
    color: white !important;
    border-style: none;
    border-color: var(--color-primary);
    margin: 0px 5px 0px 5px;
	font-size:1rem;
    font-weight: 500;
    padding: .4rem 1rem;
	cursor:pointer;
    border-radius: 3px;
}
.botao-drop:hover{
    background: white !important; 
    color: var(--color-primary)  !important;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-primary);
}
.botao-drop.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.botao-drop-icon{
    background: var(--color-primary) !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(--color-primary)  !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(--color-primary);
}
.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(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    margin-right: 5px;
}
.paginacao a:hover {
    background-color: #f2f2f2;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.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;
}
.linha-indicadores{
    display: inline-flex;
    vertical-align: middle;
}
.linha-indicadores .indicador{
    margin: 2px;
    padding-left: 0px;
}
.titulo-indicadores{
    font-size: 14px;
    margin: 5px;
    vertical-align: middle;
}
.linha .botao-ui{
    margin: auto;
}
.disclaimer{
    font-size: 12px;
    text-align: center;    
}
.disclaimer a{
    cursor: pointer;
    color: var(--color-primary);
    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%;
}
.versao{
    font-size: 10px;
    text-align: center;
    color: #525050;
}
.subform{
    border-style: solid;
    padding: 5px 10px 10px 20px;
    border-width: 1px;
    margin: 20px;
    border-color: #f3eeee;
    border-radius: 5px;
}
.subform h4{
    text-align: left;
}
.grupo-quadro{
    margin-top: 10px;
    margin-bottom: 10px;
}
.grupo-quadro label {
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
  vertical-align: middle;
}
.loading{
    display: block;
    z-index: 1;
    position: fixed;
    top: 50%;
    right: 50%;
}
.loading-modal{
    display:none;
    text-align:center;
    margin:auto;
}
.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;
    margin-top: 10px;
    margin-left: 10px;
}
.botao-minimiza-menu{
    display: none;
    margin-left: 10px;
}
footer {
    background-color: #e0dede;
    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(--color-primary);
    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;
    border-radius: 25px;
  }
  .form-signin h1{
    margin-top: 1rem;
	width: 90%;
  }
  .hero-image{
    background-color: #242424;
    display: inline-flex;
    width: 100%;
    height: 50%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.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(--color-primary)), var(--background-login);
    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(--color-primary)), var(--background-login);
    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;
}
.grupo-chat-box{
    display: block;
    text-align: center;
    width: 70%;
    padding: 5px;
    color: #fff;
    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;
    color: #fff;
    opacity: 0.8;
    max-height:500px;
    overflow-x: auto;
}
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{
    opacity: 70%;
}
.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: #59D7FF;
    border-style: solid;
}
.envia-mensagem{
    border-style: solid;
    border-width: 1px;
    border-color: #fff;
    background-color: #fff;
    border-radius: 15px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-flex;
    width: 85%;
    margin-bottom: 10px;
}
.envia-mensagem form{
    display: inline-flex;
    width: 100%;
}
.input-chat-bot{
    width: 93%;
    margin-right: 10px;
    margin-left: 10px;
    border-style: none;
    font-family: 'Montserrat', sans-serif;
    height: 60px;
}
.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;
}
.custom-file-upload {
    position: relative;
    width: 93%;
    margin: 20px 10px;
}
.custom-file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0; /* Torna o input invisível */
    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; /* Centraliza o texto verticalmente */
    color: #fff;
    cursor: pointer; /* Altera o cursor para indicar que o elemento é clicável */
}
.custom-file-upload label:hover {
    background-color: rgba(255, 255, 255, 0.15); /* Efeito de hover */
}
.botao-chat-lp{
    background-color: #59D7FF;
    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: #000;
    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;
}
.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 label{
    color: #fff;
    margin-top: 20px;
    margin-left: 10px;
}
.apoiadores img{
    margin-left: 5px;
    margin-right: 5px;
}
.botao-chat-bot{
    background: transparent !important;
    color: #0291FA !important;
    border: none;
    padding: 1rem 1rem;
	cursor:pointer;
	font-weight: 500;
    border-radius: 5px;
}
#chat-input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 16px;
}

#send-button {
    padding: 10px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

#send-button:hover {
    background: #0056b3;
}

.message {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.message.you {
    justify-content: flex-start;
    background-color: #59D7FF;
    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;
}

.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
}
.bot .text {
    background-color: rgba(255, 255, 255, 0.05);
    color:#fff;
    align-self: flex-start;
    text-align: left;
    padding: 40px;
    line-height:1.5
}
.bot .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border-width: 1.5px;
    border-color: #59D7FF;
    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%;
    max-height: 400px;
    overflow-y: auto;
}
.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;
}
.box-privacidade{
    margin: 15px;
}
.box-noticia{
    margin:auto;
    padding: 5px;
    line-height: 1.5;
    border-style: solid;
    border-width: 1px;
    border-color: #eeeded;
    width: 80%;
}
.box-noticia a{
    font-size: 12px;
    text-decoration: none;
    color: #464646;
}
.box-noticia p{
    font-size: 12px;
}
.alerta-erro {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  border-radius: 8px;
  padding: 10px 15px;
  margin-top: 10px;
  font-weight: 500;
  text-align: center;
}
.status_envio_mensagem{
    width: 300px;
    padding: 10px;
    border-radius: 25px;
    margin: auto;
}
.sucesso{
    background-color: green;
    color: #fff;
}
.erro{
    background-color: red;
    color: #fff;
}
@media screen and (max-width: 480px){
    main {
        overflow-x: auto;
    }
    body{
        width: 100%;
        margin: 0px;
    }
    .sidebar{
        display: none;
        width: 70%;
        position: absolute;
        padding: 10px;
        height: 100%;
    }
    .modal{
        width: 95%;
        top: 1%;
        left: 1%;
    }
    .dropdown-registro{
        display: block;
    }
    .bloco-pesquisa{
        width: auto;
    }
    header h1{
        width: 58%;
    }
    .botao-menu{
        display: block;
        margin-top: 10px;
        margin-left: 5px;
        border-style: none;
        position:absolute
    }
    .botao-minimiza-menu{
        border-style: none;
        display: block;
        padding: 10px;
    }
    .sidebar-opcoes{
        margin: 5px;
    }
    .form-signin{
        text-align: center;
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 50px;
        margin-bottom: 50px;
        padding-top: 50px;
        padding-bottom: 50px;
        background-color: #fff;
        opacity: 0.
    }
    .conteudo{
        display: flex;
        width: 85%;
        margin: auto;
    }
    .chat-box{
        width: 100%;
    }
    .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;
    }
    .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%;
    }
    .modal-body .linha{
        display: block;
        text-align: center;
    }
    .modal .tabela-resultado{
        display: block;
        margin: auto;
        overflow-x: auto;
    }
    

}
