html, body {
    overflow: auto;
    box-sizing: border-box;
	overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: inherit;
}

*{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.noselect {
    user-select: none;           /* Padrão moderno */
    -webkit-user-select: none;   /* Chrome/Safari */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge antigo */
}
body::-webkit-scrollbar {
  display: none;
  font-family: 'Source Sans 3';
}
header{
    position:fixed;
    top:0px;
    left:0px;
	width:100%;
	height:80px;
    -box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    background-color: white;
    z-index:5
}

.logo{
	height:50px;
	width:auto;
	float:left;
    margin-top:18px;
    margin-left:20px;
	z-index:1;
}
.logo:hover{
	height:52px;
}
.iconemenu{
height:45px;
margin-top:-10px;
width:auto;
z-index:2;
}
.iconemenu:hover{
	animation: girar 1s linear;
}
/* Quando o usuário rola a página */
header.shrink {
    height: 60px; /* antes era 100px */
    transition: all 0.3s ease;
}

/* Logo encolhida */
header.shrink .logo {
    height: 40px;
    margin-top: 13px; 
    transition: all 0.3s ease;
}

header.shrink .iconemenu {
    height: 42px;
    margin-top:-22px;
    transition: all 0.3s ease;
}

header.shrink .btnmenu {
    margin-top:-3px;
}


header, 
.logo, 
.iconemenu {
    transition: all 0.3s ease;
}

.logincheck{
    height:30px;
    width:auto;
    position:absolute;
    top:10px;
    right:10px;
}
.logincheck2{
    height:17px;
    width:auto;
    position:fixed;
    top:10px;
    right:10px;
}
.conteudo {
    width: 100%;
    margin: 0 auto;
    padding-top: 90px;  /* substitui margin-top + position:relative */
    min-height: 800px;
    color: #2F2F33;
    box-sizing: border-box; /* garante que padding não aumente altura inesperadamente */
    padding-bottom: 50px;  
}
.conteudoquestionario {
    width: 100%;
    max-width: 98%;
    margin: 0 auto;
    margin-top: 90px;  /* substitui margin-top + position:relative */
    min-height: 800px;
    color: #2F2F33;
    box-sizing: border-box; /* garante que padding não aumente altura inesperadamente */
    padding-bottom: 50px; 
    text-align: center;
    align-items: center;
    font-family: 'Source Sans 3', sans-serif;

}
.itemquestionario {
    width: 450px;
    max-width:90%;
    border: 0.3px solid #424242;
    border-radius: 9px;
    font-family: 'Source Sans 3', sans-serif;
    padding: 4px;
    margin: 0 auto 15px auto; /* centraliza e separa os itens */
    text-align: left;
    transition: background-color 0.2s;
    cursor: pointer;
    box-shadow: inset 0 0 0 5px #f0f4ff;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.itemquestionario:hover {
    background-color: #f0f4ff; 
    border: 2px solid #2f5d9f;
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.3);
}

.itemconteudo {
    display: flex;
    align-items: center;  /* ícone e texto centralizados verticalmente */
    gap: 15px;  
    padding:4px;
}

.itemicone {
    width: 60px;
    flex-shrink: 0;       
    display: flex;
    justify-content: center;
    align-items: center;
}
.itemicone img{
    padding:5px;
}
.itemiconeconcurso {
    width: 120px;
    flex-shrink: 0;       /* impede o ícone de encolher */
    display: flex;
    justify-content: center;
    align-items: center;
}
.itemiconeconcurso img {
    width: 120px;
    height: auto;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.itemtexto {
    font-size: 1.3rem;
    margin: 0;
    word-break: break-word; /* garante que textos longos não quebrem o layout */
    text-decoration: none;
    color:#424242;
}


.conteudoinserirnoticia{
	position:relative;
	top:0px;
	margin:0 auto;
	margin-top:90px;
    width:100%;
	height:auto;
	min-height:1500px;
	color:#2F2F33;
}

.shrink .filtrocategoria{
	top:90px;
}
.shrink .icone2 {
	position:absolute;
	top:65px;
    transition: all 0.3s ease;
}

#cookie-consent {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 99998;
}

.cookie-box {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px 0;
}

.cookie-box button {
    padding: 6px 20px;
    border-radius: 7px;
    border: none;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    animation: pulse 1.5s infinite;
}
.loginblock{
    position: fixed;
    top:0px;
    left:0px;
	display:none;
	height:100%;
	width:100%;
	text-align: center;
	margin:0px;
    z-index:100;
	overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
.loginquestblock{
    position: fixed;
    top:0px;
    left:0px;
	display:block;
	height:100%;
	width:100%;
	text-align: center;
	margin:0px;
    z-index:100;
	overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
.login{
    background-color: #fff;
    color:#2f5d9f;
    margin: 0 auto;
    padding:20px 50px;
	border-radius: 10px;
	background-color: #ffffff;
    height:450px;
    width: 100%;
    position: relative;
	text-align: center;
	top:120px;
	margin:0px;
	margin-top:0px;	
	box-shadow: 0px 0px 10px rgba(21, 21, 21 , 0.5);
	z-index:1000;
}
.login input{
	border:solid 0.5px #2f5d9f;
	color:#2f5d9f;
}
.login button{
	padding:5px 40px;
	border-radius: 10px;
	border:none;
	background-color: #2f5d9f;
	color:#ffffff;
	margin-top:0px;
	margin-bottom:20px;
}
.info{
   position: absolute;
   left: -9999px;
   opacity: 0;
}
#loginformcandidatura{
	text-align: right;
	margin-right:0px;
}
#erro_log{
    position:relative;
    top:0px;
    left:0px;
    width:100%;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

#esquecisenha{
    color:#2f5d9f;
    font-size: 16px;
    font-weight: normal;
}
#loadingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
#loadingOverlaycandidatura {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#loadingLogo {
    position:relative;
    top:50%;
    margin-top:-20px;
    width: 70px;
    height: auto;
    animation: girar 1s linear infinite;
    opacity: 0.6;
}
.recuperadiv{
	height:420px;
	width:100%;
	position:relative;
	text-align: center;
	top:120px;
	margin:0px;
	margin-top:0px;	
	display:none;
	color:#2f5d9f;
	background-color: #ffffff;
	padding:20px 60px;
	
	border-radius: 10px;
	z-index: 1002;
	box-shadow: 0px 0px 10px rgba(21, 21, 21 , 0.5);
}
.recuperadiv input{
	border:solid 0.3px #2f5d9f;
	color:#2f5d9f;
}
.recuperadiv button{
	padding:5px 40px;
	border-radius: 10px;;
	background-color: #2f5d9f;
	border:none;
	color:#ffffff;
	margin-top:0px;
	margin-bottom:20px;
}
#recuperaformcandidatura{
	text-align: right;
	margin-right:0px;
}

#closerecup{
	position:relative;
	right:-170px;
	top:0px;
}
#closerecup:hover{
	animation: girar 1s linear;
}

#closelog{
	position:relative;
	right:-170px;
	top:0px;
}
#closelog:hover{
	animation: girar 1s linear;
}
.cadastrouser{
	height:auto;
	width:100%;
	position:relative;
	margin:0 auto;
	top:110px;
	display:none;
	text-align: center;
	color:#ffffff;
	background-color: #2f5d9f;
	padding:15px 50px;
	border-radius: 10px;
	z-index: 1002;
	box-shadow: 0px 0px 10px rgba(21, 21, 21 , 0.5);
	align-content: center;
  }
  .cadastrouser input{
	width:250px;
  }
  .termos{
      text-align: center;
  }
  .cadastrouser button{
	padding:6px 40px;
	border-radius: 8px;
	border:none;
	color:#2f5d9f;
	float:right;
	margin-right:25px;
	margin-bottom:30px;
  }
  #closecad{
	position:relative;
	right:-160px;
	top:10px;
}
#closecad:hover{
	animation: girar 1s linear;
}
#bemvindo{
	position:relative;
	left:50px;
	color:#2f5d9f;
	z-index:1;
}

.nav{
	display:none;
	float:right;
	margin-right:20px;
	margin-top:45px;
}
.navbar{
	display:block;
	float:right;
	margin-right:15px;
	margin-top:20px;
	z-index:-1;
}

.dropdown-menu{
	width:400px;
	height:2000px;
	padding:10px;
	color:#2f5d9f;
	font-family: 'Source Sans 3';
	margin-top:12px;
	margin-left: -240px;
}
.shrink .dropdown-menu{
    margin-top: -2px;
    transition: all 0.3s ease;
}

@keyframes girar {
	from {
		transform: rotate(0deg); /* Posição inicial */
	} to {
		transform: rotate(360deg); /* Posição final (gira 360 graus) */
	}
}

.iconemenu:hover{
	animation: girar 1s linear;
}

.btn{
	border:none;
}
.btn:hover{
	border:none;
}

.logomobile{
	position:absolute;
	top:50px;
	left:50px;
}	

.linkgeral{
	text-decoration:none;
	color:#2f5d9f;
	font-size:18px;
	font-weight:bold;
	padding:10px 15px;
}
.linkgeral:hover{
 	color:#8eff72;
}
.flash{
	text-decoration:none;
	color:#ffffff;
	font-size:18px;

	font-weight:bold;
	margin-left: 10px;
	padding:10px 15px;
	background-color:rgba(40, 72, 189, 0.8);
	
	border:1px solid #2f5d9f;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
.flash:hover{
	background-color:#ffffff;
	color:#2f5d9f;
}
.linksimul{
	text-decoration:none;
	color:#2f5d9f;
	font-size:18px;

	font-weight:bold;
	margin-left: 10px;
	padding:10px 15px;
	background-color:#ffffff;
	border:1px solid #2f5d9f;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
.linksimul:hover{
	background-color:#2f5d9f;
	color:#2f5d9f;
	color:#ffffff;
}
#fabars{
	font-size:40px;
	color:#2f5d9f;
}
#fabars:hover{
	color:#8eff72;
}
.portal{
	text-decoration:none;
	color:#ffffff;
	font-size:18px;
	font-weight:bold;
	padding:10px 15px;
	background-color:#8eff72;
	border:1px solid #8eff72;
	border-radius:10px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
	.portal:hover{
	background-color:#ffffff;
}
.portalprofessor{
	text-decoration:none;
	color:#ffffff;
	font-size:18px;
	font-weight:bold;
	padding:10px 15px;
	background-color:#8eff72;
	border:1px solid #8eff72;
	border-radius:10px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
	.portalprofessor:hover{
	background-color:#ffffff;
}
.quant{
	position: relative;
	bottom:15px;
	left:-18px;
	padding:0px;
	font-weight: normal;
	width:auto;
}
#cursosAssociados{
	width:300px;
	text-align: center;
	padding:15px 0px;
	padding-right:25px;
	border: solid 1px white;
	background-color: #ffffff;
	display:none;
	margin:0;
}
#cursosAssociados ul{
	list-style-type: none;
}
.back{
	height:35px;
	width:auto;
}
.menuback{
	height:30px;
	width:auto;
}
.menuicon{
	display:block;
	font-size:25px;
	margin-left:-2px;
	margin-top:4px
}
.menutext{
	display:none;
}
.back:hover{
	height:38px;
	margin-left:-3px;
	margin-top:-3px;
}
.back2{
	height:35px;
	width:auto;
	z-index:5;
}
.back2:hover{
	height:37px;
	margin-left:-1px;
	margin-top:-1px;
}
.icone{
	font-size:25px;
}
.icone2{
	width:60px;
	height:60px;
	position:fixed;
	left:20px;
	top:95px;
	display:block;
	background-color: rgb(255, 255, 255, 0.6);
	border-top-right-radius:50%;
	border-top-left-radius:50%;
	border-bottom-left-radius:50%;
	border-bottom-right-radius:50%;
	box-shadow:5px 5px 5px rgba(38, 4, 139, 0.5);
	margin-right: 0px;
	margin-bottom: 0px;
	text-align: center;
	padding-left:12px;
	padding-top:11px;
	z-index:4;
}
.icone2:hover{
	box-shadow:5px 5px 5px rgb(230, 155, 44, 0.5);
	background-color: rgb(255, 255, 255, 1);
	border:1px solid rgb(38, 4, 139, 1);
}
.ncar{
	position:relative;
	top:-5px;
	font-size:20px;
	color:#2f5d9f;
}
.ncar:hover{
	color:#8eff72;
}
.ncar2{
	position:absolute;
	top:5px;
	right:6px;
	font-size:20px;
	color:#8eff72;
}
	.icone{
	font-size:20px;
	color:#8eff72;
}
	.icone:hover{
	color:#27048D;
}

.footer{
	position:relative;
	bottom:0px;
	color:#ffffff;
	background-color:#5F6365;
	width:100%;
	height:auto;
	text-align:center;
	padding-top:15px;
	padding-bottom: 20px;
	margin:0px;
	margin-bottom: -50px;
	margin-top:-30px;
}
.socialmidia{
    width:100%;
    height:auto;
}
.iconesm{
    width:40px;
    margin:0px 20px;
    margin-bottom:50px;
}
	form textarea{
	height:5em;
}

	#fechar{
	font-size:20px;
	text-align:right;
	margin-right:-25px;
}
	#contact{
	margin-top:-25px;
}	
#enviar{
	border-radius:5px;
	background-color:#2f5d9f;
	color:#ffffff;
	padding:3px 20px;	
}

.container{
	color: #2F2F33;
}
.tabs {
    display: flex;
    cursor: pointer;
    color:#ffffff;
    margin: 0px;
    padding: 0px;
    font-weight: bold;
    list-style-type: none;
}
.tabs li {

}
.tabs li:hover {
    background: #e0e0e0;
    color:#289DBD;
}
.tab{
    height:54px;
    width:58px;
    color:#2f5d9f;
    padding:0px;
    text-align: center;
    margin-bottom:-2px;
    border: 2px solid #787474;
    background: #acabab;
    color:#ffffff;
    font-size: 16px;
    text-align: center;
    border-radius: 7px 7px 0 0;
}

.tabs li.active {
    background: #ffffff;
    color: #2f5d9f;
    border-bottom: 2px solid #ffffff; /* “esconde” a borda do conteúdo */
    position: relative;
}

.tab-content {
    height: auto;
    width: 100%;
    display: none;
    padding-bottom: 50px;
    margin: 0 auto;
    border: 2px solid #787474;

    background: #acabab;
    overflow-x: auto;
    white-space: nowrap;
}

.tab-content.active {
    display: block;
    background-color: #ffffff;
}

#tab1{
	color:#2f5d9f;
}

.mochilacompras{
    color:#2F2F33;
    background-color: #e0e0e0;
    border-radius:10px;
    padding-top:20px;
    margin:0 auto;
}
.compras{
    color:#2F2F33;
    padding-top:20px;
    margin:0 auto;;
}
.historicocompras{
    color:#2F2F33;
    padding-top:20px;
    margin:0 auto;
}
.mochila{
    border: 0.5 solid 2F2F33;
    border-radius: 7px;
    padding:5px;
    margin:0 auto;
}
.comprastable{
    margin:0 auto;
}
.butvermochila{
    border-radius:5px;
	background-color:#2f5d9f;
	color:white;
	padding:5px 20px;
	border:none;
}
.butaz{
	border-radius:5px;
	background-color:#2f5d9f;
	color:white;
	padding:5px 20px;
	border:none;
	float:right;
}
.butaz2{
	border-radius:5px;
	background-color:#2f5d9f;
	color:white;
	padding:5px 20px;
	border:none;
	text-decoration: none;
}
#modify{
    display:block;
    margin-bottom:-50px;
}
#save{
    display:none;
}
.butsave{
	border-radius:5px;
	border:none;
	background-color:#278C54;
	color:white;
	padding:5px 20px;	
	float:right;
}
.butcancel{
	border-radius:5px;
	border:none;
	background-color:#5F6365;
	color:white;
	padding:5px 20px;
	float:right;
}
#cancelm{
    display:none;
}
#tab2 form{
    display:block;
    margin:0 auto;
    text-align: center;
}
@media (max-width: 991px) {
    .dados {
        margin: 0 auto;
    }
}
.dados label{
    text-align: left;
    display:block;
}

.meusdados{
    border-radius: 5px;
    border: solid 0.3px #2F2F33;
    height:35px;
    color:#2f5d9f;
    padding:8px;
    width:100%;
    
    pointer-events: none;
    background-color: #e0e0e0;
    text-align: left;
}
.meusdadoscpf{
    border-radius: 5px;
    border: solid 0.3px #2F2F33;
    height:35px;
    color:#2f5d9f;
    padding:8px;
    width:100%;
    pointer-events: none;
    background-color: #e0e0e0;
    text-align: left;
}

#tab2 textarea{
    height:80px;
}

.tab-content{
	color: #2f5d9f;
}
.tab-content button{
    width:150px;
    border-radius: 5px;
}
.senh{
    padding-top:50px;
    margin-left:-20px;
}
.modificarsenha{
    display: none;
    padding:0px 10px;
}
.modificarsenha p {
    word-wrap: break-word;
    word-break: break-word;
}
.cliente{
    width: 200px;
    border-radius: 5px;;
}

h2{
    text-align:center;
}
#tab3 td, th{
    height:25px;
    width:250px;
    text-align: left;
    color:#1d1d1f;
}
#tab3{
    text-align: center;
    padding:0;
    margin:0;
    height:auto;
    min-height:600px;;
    width:100%;
    white-space: nowrap;
    color:#2f5d9f;
}
#tab5{
    margin:0 auto;
    text-align: center;
}
.candidaturas{
    width:100%;
}
.detalhescandidaturas{
    width:700px;
    margin:0 auto;
}
.detalhecanditatudatexto{
    width:690px;
}
#tab5 input{
    color:#2f5d9f;
}
.newapoint{
    visibility: hidden;
}
#tab4{
    text-align: center;
    padding:40px;
    height:800px;
    width:100%;
}
#tab4 td{
    text-align: left;
}
#tab2{
    margin:0 auto;
    width:100%;
}
#tab6{
    margin:0 auto;
	text-align: center;
}
#tab7{
    margin:0 auto;
	text-align: center;
}

#tab7 label {
    display: block;
    margin-bottom: 5px; /* espaço entre label e input */
    text-align: left;
    margin-left: 20px;
}
#tab7 textarea{
    border:0.3px solid #595959;
    border-radius: 5px;
}
#tab7 input{
    border:0.3px solid #595959;
    border-radius: 5px;
}
#tab7 button{
    width:200px;
    border:none;
    border-radius: 7px;
    color:#ffffff;
    background-color: #2f5d9f;
    font-weight: bold;
    padding:7px 0px;
}
#formNoticia{
    width:95%;
    max-width: 700px;
    margin:0 auto;
}
.cke_editor {
    border:0.3px solid #595959;
    border-radius: 5px;
}

.cke_contents {
    height: 700px;    /* altura da área de escrita */
    border:0.3px solid #595959;
    border-radius: 5px;
}

#btnParagrafo{
    background-color: #f6f6f6;
    border:0.3 solid #2f5d9f;
    color:#2f5d9f;
    font-weight: bold;
    float:left;
}
.forminserir{
	text-align: left;
}
.inserircurso{
	display: none;
	height:0px;
}
.inserirplano{
	display: none;
	height:0px;
}
.inserircursos{
	display:none;
	text-align: center;
}
#tabelacompr{
    margin-left:0px;
    overflow-x: auto;  /* Scroll horizontal automático */
    white-space: nowrap; /*evita quebra de linha*/
    border:solid 2px blue;
}
.clients{
    overflow-x: auto;  /* Scroll horizontal automático */
    white-space: nowrap; /*evita quebra de linha*/
}
#mudarsenha{
    display: none;
}
#atualizatabela{
    width:200px;
    font-size: 15px;
    color: rgb(78, 78, 78);
    border:solid 1px gray;
}
.hidden {
    visibility: hidden;
}
.edit {
    background-color: #e9ecef;
    border: solid 1px #7c7b7b;
}
#formNoticia input, textarea{
    width:95%;
    max-width:700px;
    border: ;
}
@media only screen and (min-width: 500px){
    header.shrink .iconemenu {
    margin-top:-25px;
    }

    .login{
	width:420px;
	top:150px;
	left:50%;
	margin-left:-210px;
    }
    .tab{
        width:80px;
        padding-left:0px;
    }
    #tab7 textarea{
    width:400px;
    border:0.3 solid #2f5d9f;
    border-radius: 7px;
    }
    #tab7 input{
        width:400px;
        border:0.3 solid #2f5d9f;
        border-radius: 7px;
    }
}

@media only screen and (min-width: 700px) {

	.cadastrouser{
	height:auto;
	width:700px;
	position:fixed;
	top:130px;
	left:50%;
	margin-left:-350px;
    }

    #closecad{
    	right:-300px;
	top:10px;
	}

     .logincheck2{
    height:20px;
    top:12px;
    right:12px;
    }
}
@media only screen and (min-width: 1100px) {
    header{
	max-width:100%;
	height:120px;
	margin-left:0px;
	margin-top:0px;
	align-items:center;
    }
    header.shrink {
    height: 90px;
    }

    .logo{
	height:60px;
	width:auto;
	float:left;
    margin-top:30px;
    margin-left:30px;
    }
	.logo:hover{
	height:62px;
	width:auto;
	float:left;
    }
    header.shrink .logo {
        height: 55px;
        margin-top: 15px;
    }
    	.iconemenu{
	height:40px;
	}
	header.shrink .iconemenu {
        height: 28px;
    }
	.nav{
	display:block;
    
    }
    header.shrink .nav {
        height: 28px;
        margin-top:40px;
    }
    	.navbar{
    	display:none;
    }
    .icone2{
    	display:none;
    }
    .login{
	top:150px;
    }
    .recuperadiv{
	top:150px;
    }
	.cadastrouser{
	height:auto;
	width:700px;
	top:130px;
	left:50%;
	margin-left:-350px;
    }

}
