
* {
	margin: 0;
	/* padding: -300px; */
	box-sizing: border-box;
	list-style: none;
}
html, body, header, section {
	/* background-color: #1e1e1e; */
	overflow-x: hidden;
	

}
  /* VIDEO DE FUNDO ANIMADO - PLEXUS */
  




  
  #bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: -10;
	pointer-events: none; 
  }
   

html {
	scroll-behavior: smooth;

}

/* SCROLL BAR ------------------------------------------------------------------ */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #1b191a;
}
::-webkit-scrollbar-thumb {
  background-color: #8d9c9d;
}
body {
	margin: 0;
	padding: 0;
  }

  .header {
	position: fixed;
	width: 100%;
	background-color: #fff; /* Altere a cor de fundo conforme necessário */
	z-index: 1000;
	transition: transform 0.3s ease-in-out;
  }

  .header.hidden {
	transform: translateY(-100%);
  }

  /* Adicione estilos adicionais conforme necessário */

  .header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }

  nav {
	display: flex;
	align-items: center;
  }

  ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
  }

  li {
	margin: 0 10px;
  }

  a {
	text-decoration: none;
	color: #333; /* Altere a cor do texto conforme necessário */
  }

