/* Reset básico */
* {margin: 0;padding: 0;box-sizing: border-box;text-decoration: none;list-style: none;}

body {
	background-color:#0e2c40;
	margin:0px 0Px;
	width:100%;
	overflow-y: scroll;
	font-size: 12px;
	font-style: normal;
	text-decoration: none;
	font-weight:normal;
	overflow: auto;
	display: flex;
	flex-direction: column;
}
html {
	scroll-behavior: smooth;
 }

/* Header */
 .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 10;
	position: fixed; /* Adicionado para fixar o header no topo */
	top: 0; /* Adicionado para alinhar o header com o topo da página */
	width: 100%; /* Adicionado para garantir que o header ocupe toda a largura da página */
	font-family: 'Economica';
	font-weight: normal;
}

.target-element {
	padding-top: 60px; /* A altura do seu cabeçalho */
	margin-top: -60px; /* Negativo da altura do seu cabeçalho */
}
.texto    {font-family: 'Economica', sans-serif;font-style: normal;text-decoration: none; font-weight:normal;color: #000;}
.textosys {font-family: 'Inconsolata', monospace; font-style: normal;text-decoration: none;font-weight:normal;color: #000;}

.texto8  {font-size: 8px;}
.texto10 {font-size: 10px;}
.texto12 {font-size: 12px;}
.texto14 {font-size: 14px;}
.texto16 {font-size: 16px;}
.texto20 {font-size: 20px;}
.texto25 {font-size: 25px;}
.texto30 {font-size: 30px;}
.texto40 {font-size: 40px;}
.texto50 {font-size: 50px;}
.texto60 {font-size: 60px;}
.textoBold    {font-weight:bold;}
.textoBold400 {font-weight: 400;}
.textoBold700 {font-weight: 700;}
.textoWhite   {color: #fff;}
.textoGray    {color: #7e7e7e;}
.textoBlueLight {color: #869ed6;}
.textoCyan      {color: #00ccbf;}
.textoYellow2 {color: #efbc75;}
.textoLeft	{text-align: left;}

.textoCenter    {text-align:center;}
.textoLeft      {text-align:left;}
.textoRight     {text-align:right;}
.textoJustify   {text-align:justify;}

.flex-row {display: flex; flex-direction: row;}
.flex-column {display: flex; flex-direction: column;}
.flex-gap1  {gap: 1px; }
.flex-gap2  {gap: 2px;}
.flex-gap3  {gap: 3px;}
.flex-gap4  {gap: 4px;}
.flex-gap5  {gap: 5px;}
.flex-gap6  {gap: 6px;}
.flex-gap7  {gap: 7px;}
.flex-gap8  {gap: 8px;}
.flex-gap9  {gap: 9px;}
.flex-gap10 {gap: 10px;}
.flex-gap15 {gap: 15px;}
.flex-gap20 {gap: 20px;}
.flex-gap25 {gap: 25px;}
.flex-gap100 {gap: 100px;}
.flex-center-c {justify-content: center; align-items: center;}
.flex-center-e {justify-content: center; align-items: left;}
.flex-end {align-items: flex-end;}


.target-element {
	padding-top: 70px; /* A altura do seu cabeçalho */
	margin-top: -70px; /* Negativo da altura do seu cabeçalho */
}

/* Itens do Menu */
.nav-list {
	list-style: none;
	display: flex;
}

.nav-list li {
	position: relative;
}

.nav-list li a, .nav-list li span {
	color: white;
	padding: 0 10px;
	display: block;
	position: relative;
	z-index: 2; /* Ajuste o z-index para ser maior que o do pseudo-elemento ::before */
	transition: color 0.25s ease-in-out; /* Adiciona transição para a cor do texto */
	cursor: pointer;
}

.nav-list li:hover a, .nav-list li:hover span {
	color: #000; /* Cor desejada quando o mouse está sobre o item do menu */
}

.inputGestorTexto {padding: 5px; background-color:#fff; box-sizing: border-box; border-radius: 3px; border: 1px solid #999999; outline:none; resize: none;min-height:27px;}
.inputGestorTexto:disabled {background-color: #cecece;}
.inputGestorTexto:focus {border: 1px solid #000; background-color: #FFFFCC; outline:none;}
.inputGestorTextoDecimal {text-align:right;}
 
.custom-button {
	width: 120px;
	height: 40px;
	background-color: #148d8d;
	border: 1px solid white;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 10px;
}

.custom-button:hover {
	color: black;
	background-color: white;
	border: 1px solid black;
}


.flex-wrap {flex-wrap: wrap;}
.flex-nowrap {flex-wrap: nowrap;}

.flex-row            {display: flex; flex-direction: row;}
.flex-column         {display: flex; flex-direction: column;}
.flex-row-mobile     {display: flex; flex-direction: row;}
.flex-row-desktop    {display: flex; flex-direction: column;}
.flex-column-mobile  {display: flex; flex-direction: column;}
.flex-column-desktop {display: flex; flex-direction: row;}

.flex-stretch {align-items: stretch;}
.flex-center  {align-items: center;}
.flex-end     {align-items: flex-end;}
.flex-start   {align-items: flex-start;}
.flex-base    {align-items: baseline;}

.flex-between   {justify-content: space-between;}
.flex-between-c {justify-content: space-between; align-items: center;}
.flex-between-s {justify-content: space-between; align-items: flex-start;}
.flex-between-e {justify-content: space-between; align-items: flex-end;}
.flex-evenly-b  {justify-content: space-between; align-items: baseline;}

.flex-evenly   {justify-content: space-evenly;}
.flex-evenly-c {justify-content: space-evenly; align-items: center;}
.flex-evenly-s {justify-content: space-evenly; align-items: flex-start;}
.flex-evenly-e {justify-content: space-evenly; align-items: flex-end;}
.flex-evenly-b {justify-content: space-evenly; align-items: baseline;}

.flex-end-c {justify-content: end; align-items: center;}
.flex-end-s {justify-content: end; align-items: flex-start;}
.flex-end-e {justify-content: end; align-items: flex-end;}
.flex-end-b {justify-content: end; align-items: baseline;}

.flex-center-c {justify-content: center; align-items: center;}
.flex-center-s {justify-content: center; align-items: flex-start;}
.flex-center-e {justify-content: center; align-items: flex-end;}
.flex-center-b {justify-content: center; align-items: baseline;}

.flex-start-c {justify-content: flex-start; align-items: center;}
.flex-start-s {justify-content: flex-start; align-items: flex-start;}
.flex-start-e {justify-content: flex-start; align-items: flex-end;}
.flex-start-b {justify-content: flex-start; align-items: baseline;}

.flex-gap1  {gap: 1px; }
.flex-gap2  {gap: 2px;}
.flex-gap3  {gap: 3px;}
.flex-gap4  {gap: 4px;}
.flex-gap5  {gap: 5px;}
.flex-gap6  {gap: 6px;}
.flex-gap7  {gap: 7px;}
.flex-gap8  {gap: 8px;}
.flex-gap9  {gap: 9px;}
.flex-gap10 {gap: 10px;}
.flex-gap15 {gap: 15px;}
.flex-gap20 {gap: 20px;}
.flex-gap25 {gap: 25px;}
.flex-gap30 {gap: 30px;}
.flex-gap40 {gap: 40px;}
.flex-gap50 {gap: 50px;}
.flex-gap60 {gap: 60px}
.flex-gap70 {gap: 70px}
.flex-gap80 {gap: 80px}
.flex-gap90 {gap: 90px}
.flex-gap100 {gap: 100px}

.texto-33-45-60 {font-size: 33px;}
.texto-27-37-50 {font-size: 27px;}
.texto-22-30-40 {font-size: 22px;}
.texto-20-25-30 {font-size: 20px;}
.texto-16-18-20 {font-size: 16px;}

.w-100-100-50 {width: 100%;}
.w-100-80-60 {width: 100%;}
.w-100-80-40 {width: 100%;}

.flex-c-c-s {align-items: center;}
.flex-e-e-c {align-items: flex-end;}

.flex-gap-15-15-0 {gap: 15px;}

#bloco-logo img {height: 40px; object-fit: cover;}

@media screen and (min-width: 768px) and (max-width: 1080px) {
	.flex-row-mobile     {display: flex; flex-direction: column;}
	.flex-row-desktop    {display: flex; flex-direction: column;}
	.flex-column-mobile  {display: flex; flex-direction: row;}
	.flex-column-desktop {display: flex; flex-direction: row;}

	.texto-33-45-60 {font-size: 45px;}
	.texto-27-37-50 {font-size: 37px;}
	.texto-22-30-40 {font-size: 30px;}
	.texto-20-25-30 {font-size: 25px;}
	.texto-16-18-20 {font-size: 18px;}


	.w-100-100-50 {width: 100%;}
	.w-100-80-60 {width: 80%;}
	.w-100-80-40 {width: 80%;}

	.flex-c-c-s {align-items: center;}
	.flex-e-e-c {align-items: flex-end;}

	.flex-gap-15-15-0 {gap: 15px;}

	#bloco-logo img {height: 50px;}
}
	
@media screen and (min-width: 1080px) {

	.flex-row-mobile     {display: flex; flex-direction: column;}
	.flex-row-desktop    {display: flex; flex-direction: row;}
	.flex-column-mobile  {display: flex; flex-direction: row;}
	.flex-column-desktop {display: flex; flex-direction: column;}

	.texto-33-45-60 {font-size: 60px;}
	.texto-27-37-50 {font-size: 50px;}
	.texto-22-30-40 {font-size: 40px;}
	.texto-20-25-30 {font-size: 30px;}
	.texto-16-18-20 {font-size: 20px;}

	.w-100-100-50 {width: 50%;}
	.w-100-80-60 {width: 60%;}
	.w-100-80-40 {width: 40%;}

	.flex-gap-15-15-0 {gap: 0;}

	.flex-c-c-s {align-items: flex-start;}
	.flex-e-e-c {align-items: center;}

	#bloco-logo img {height: 60px;}
}
	
	