* {
  padding: 0;
  margin: 0; 
  box-sizing: border-box;
  font-family: sans-serif;  
}

body{

    background: #042cdb;
    background: linear-gradient(90deg, rgb(1, 0, 44) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 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 */


header{
    height: 150px;
    justify-content: center;
    align-items: center;
}
header h2{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #07a4ff;
    text-align: center;
    text-decoration: underline;
}
.gallery-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    padding: 0 2vw;
}
.gallery-items{
    width: 340px;
    height: 340px;
    padding: 10px;
    border: 10px solid #fbff00;
    box-shadow: 5px 5px 5px #0006;
    flex-grow: 1;
    transition: transform .5s linear;
}
.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-items:hover{
    transform: scale(1.1);
}


/* Rodape  */
footer {
    
  width: 100%;
	background: linear-gradient(rgb(4, 68, 153), 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;
  }
}