* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primaria: #4f46e5;
  --secundaria: #7c3aed;
  --escuro: #0f172a;
  --maisEscuro: #0a0f1c;
  --claro: #e2e8f0;
  --vidro: rgba(255, 255, 255, 0.1);
}

body {
  background-color: rgba(7, 3, 27, 0.93);
  color: var(--claro);
}

.navegacao {
  position: fixed;
  top: 0;
  background: rgba(5, 0, 20, 0.95);
  width: 100%;
  z-index: 100;
  padding: 1.8rem;
  max-height: 70px;
}

.menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 3rem;
}

.menu-link {
  text-decoration: none;
  color: var(--claro);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.menu-link::after {
  content: '';
  height: 2px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(69, 248, 14, 0.711));
  transition: width 0.5s ease;
}

.menu-link:hover::after {
  width: 100%;
}

/* after -> depois / before -> antes */

.menu-link:hover {
  text-shadow: 0 5px 10px rgba(61, 250, 3, 0.636);
}

.cabecalho {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.foto-perfil {
  display: block;
  width: 150px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--vidro);
  animation: flutuar 3s ease-in-out infinite;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.05rem;
  color: rgba(61, 250, 3, 0.711);
  font-weight: bold;
  margin: 0.5px;
}

.cabecalho-sub-titulo {
  font-size: 1.1rem;
  color: var(--claro);
  text-shadow: 0 5px 10px rgba(61, 250, 3, 0.636);
}

.sobre {
  padding: 6rem 2rem;
}

.sobre-titulo {
  font-size: 1.8rem;
  color: rgba(69, 248, 14, 0.711);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 70px;
}

.sobre-caixa {
  padding: 2rem;
 /* max-width: 700px;*/
  min-height: 250px;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--vidro);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
}

.sobre-paragrafo {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 6%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /*margin-bottom: 10%;*/
}

.projetos {
  padding: 6rem 2rem;
}

.projetos-titulo {
  text-align: center;
  color: rgba(69, 248, 14, 0.711);
  font-size: 1.8rem;
  margin-bottom: 50px;
}

.projetos-card:hover {
  box-shadow: 0 5px 20px rgba(61, 250, 3, 0.375);
  transform: translateY(-10px) scale(1.03);
}

.projetos-caixa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.projetos-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  border: 1px solid var(--vidro);
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.projetos-imagem {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.caixa-textos-projeto {
  padding: 1.5rem;
}

.info-projetos {
  margin-bottom: 5px;
  color: rgba(69, 248, 14, 0.711);
}

.paragrafo-projetos {
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.25rem;
}

.contatos {
  padding: 6rem 2rem;
}

.contatos-titulo {
  text-align: center;
  color: rgba(69, 248, 14, 0.711);
  font-size: 1.8rem;
  margin-top: 50px;
  margin-bottom: 70px;
}

.formulario-contato {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  padding: 2rem;
  border: 1px solid var(--vidro);
  border-radius: 16px;
}

.campo-form {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--claro);
  border: 1px solid var(--vidro);
  outline: none;
}

.campo-form:focus {
  border-color: rgba(69, 248, 14, 0.711);
  box-shadow: 0 0 10px rgba(61, 250, 3, 0.711);
}

.grupo-form {
  margin-bottom: 1.5rem;
}

.botao-form {
  color: rgba(239, 245, 243, 0.711);
  background: linear-gradient(
    45deg,
    rgba(14, 248, 26, 0.711),
    rgba(3, 250, 77, 0.711)
  );
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  width: 100%;
  transition: all 0.5 ease;
}

.botao-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 20px rgba(61, 250, 3, 0.375);
}

.particulas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(61, 250, 3, 0.711) 0%,
      transparent 20%
    ),
    radial-gradient(circle at 90% 80%, rgba(85, 245, 36, 0.711) 0%, transparent 20%),
    var(--maisEscuro);
}


@keyframes flutuar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}


  
 
