* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #10002b;
}
.navegacao {
  position: fixed;
  width: 100%;
  background-color: rgba(60, 9, 108, 1);
}
.menu {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  margin: 1.5em;
}
.item-menu {
  font-size: rem;
  text-decoration: none;
  color: #ffffff;
}
li {
  list-style: none;
}

.cabecalho {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.foto {
  width: 400px;
  height: 400px;
  box-shadow: #79787838 0px 22px 70px 4px;
  border-radius: 30%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 30px;
  color: white;
}
.subtitulo {
  font-size: 1.5rem;
  color: white;
}
.sobre {
  padding: 6rem 2rem;
}
.sobre-titulo {
  color: white;
  font-size: 3rem;
  text-align: center;
}
.sobre-caixa {
  color: white;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
  border: 1px solid rgb(128, 126, 126);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
}
.sobre-paragrafo {
  text-align: center;
  font-size: 1rem;
}
.projetos {
  padding: 6rem 2rem;
}
.projetos-card {
  border: 1px solid rgb(128, 126, 126);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
}
.projeto-titulo {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.projetos-card:hover {
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
  transform: translatey(-10px) scale(1.03);
  transition: all 0.5s ease;
  cursor: pointer;
}
.projeto-caixa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.projetos-imagem {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.info-projetos {
  color: rgba(255, 255, 255, 0.979);
  margin-bottom: 5px;
}
.paragrafo-projetos {
  color: white;
}
.caixa-textos-projetos {
  padding: 1.5rem;
}
