* {
  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 */

/* Sobre */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  background-color: rgb(4, 85, 133);
  border-radius: 1rem;
  margin: 5rem auto;
  max-width: 1100px;
}

.about h2 {
  font-size: 20px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.1rem;
}

.about h2 small {
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-align: center;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.about-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 1.1rem;
  box-shadow: 2px 2px yellow;
  background: blue;
}
.about-text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: rgb(255, 255, 255);
}

.about-text h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgb(255, 255, 255);
  margin-bottom: 0.3rem;
  border-bottom: 1px solid rgb(255, 255, 255);
  padding-bottom: 0.2rem;
  letter-spacing: 0.05rem;
  text-align: center;
}

.about-text p,
.about-text ul li {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 0.5rem;
}

.about-text ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-text ul li {
  color: rgb(255, 255, 255);
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .about-img {
    width: 220px;
    height: 220px;
  }
  .about {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .about {
    border-radius: 0;
  }
  .about-text {
    text-align: center;
  }
}
/* Sobre */



/* 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 */