* {
  padding: 0;
  margin: 0; 
  box-sizing: border-box;
  font-family: sans-serif;  
}

body{
      background-image: linear-gradient(black, rgb(1, 62, 65));
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(14.3px);
      -webkit-backdrop-filter: blur(14.3px);
}

a{
    text-decoration: none;
}

/* Menu atualizado  */
/* Navbar */
.navbar {
  width: 100%;  
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 2, 2, 0.492);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14.3px);
  -webkit-backdrop-filter: blur(14.3px);
  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: rgba(0, 0, 0, 0.492);
  box-shadow: 0 4px 30px rgba(204, 9, 9, 0.1);
  backdrop-filter: blur(14.3px);
  -webkit-backdrop-filter: blur(14.3px);
  border-radius: 1rem;
  margin: 5rem auto;
  max-width: 1100px;
}

.texto .titulo h1{
  color: rgb(255, 255, 255);
  text-align: center;
   text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.1rem;
  text-decoration: underline;
}
.texto .sub-titulo h2{
  padding: 10px;
  color: rgb(255, 255, 255);
  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(255, 255, 255);
}



/* Rodape  */
footer {
    
  width: 100%;
	background: rgba(17, 0, 255, 0.492);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14.3px);
  -webkit-backdrop-filter: blur(14.3px);
	color: #fff;
	padding: 20px;
	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: rgba(0, 0, 0, 0.492);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14.3px);
    -webkit-backdrop-filter: blur(14.3px);
    position: absolute;
    top: 64px;
    right: 0;
    width: 110%;
    padding: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
/* Menu Responsividade */