/* Reset básico e fundo escuro */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  font-family: sans-serif;
}

/* Canvas cobre toda a tela */
#moleculefield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Seção centralizada acima do canvas */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Logo responsiva com animação de baixo para cima */
.logo {
  max-width: 80%;
  height: auto;
  opacity: 0;
  transform: translateY(50px);
  animation: riseUp 1s ease-out forwards 0.5s;
}

/* Keyframes para subir a imagem */
@keyframes riseUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
