* {
  padding: 0;
  margin: 0; 
  box-sizing: border-box;
  font-family: sans-serif;  
}

body{

    background: #042cdb;
    background: linear-gradient(90deg, rgb(28, 31, 41) 0%, rgb(0, 8, 19) 80%, rgba(44, 1, 1, 0.527) 100%);
}

a{
    text-decoration: none;
}

/* Menu atualizado  */
/* Navbar */
.navbar {
  width: 100%;  
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.842),rgb(0, 0, 0),blue);
  color: white;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: gold;
}

/* Botão hambúrguer (só aparece no mobile) */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
/* Menu atualizado  */
/* Navbar */

.texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  background-color: rgb(166, 167, 165);
  border-radius: 1rem;
  margin: 5rem auto;
  max-width: 1100px;
}

.texto .titulo h1{
  color: rgb(0, 0, 0);
  text-align: center;
   text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.1rem;
  text-decoration: underline;
}
.texto .sub-titulo h2{
  padding: 10px;
  color: rgb(0, 0, 0);
  text-align: center;
   text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.1rem;
  text-decoration: underline;
}

.texto .titulo  .teste p{
  padding: auto;
  text-decoration: solid;
  font-size: 18px;
  color: rgb(0, 0, 0);
}



/* Rodape  */
footer {
    
  width: 100%;
	background: linear-gradient(black, blue);
	color: #fff;
	padding: 20px;
	text-align: center;
	margin-top: 50px;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

li {
	display: inline-block;
	margin: 0 10px;
}

a {
	color: #fff;
	text-decoration: none;
}

/* Rodape  */
/* Rodape  */

/* Menu Responsividade */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgb(1, 1, 54);
    position: absolute;
    top: 64px;
    right: 0;
    width: 110%;
    padding: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
/* Menu Responsividade */