@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  color: #eaeaea;
  font-family: 'Orbitron', 'Fira Code', 'Consolas', monospace;
  min-height: 100vh;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}
#bg-anim {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.logo {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
  color: #fff;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.5em;
  z-index: 1;
}
.frase {
  font-size: 1.08rem;
  color: #fff;
  text-align: center;
  margin: 1.2rem 0 0.2rem 0;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s, transform 0.7s;
  min-height: 2.2em;
  z-index: 1;
}
.frase.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.contato {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.2rem;
  z-index: 1;
  position: relative;
}
.contato-email {
  font-size: 1.08rem;
  color: #fff;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-family: 'Orbitron', 'Fira Code', monospace;
  text-decoration: none;
  box-shadow: none;
  transition: color 0.2s;
  position: relative;
}
.contato-email:hover {
  color: #fff;
  text-decoration: none;
  background: none;
}
.contato-email::after, .contato-email.tooltip-contato::after {
  display: none !important;
}
.tooltip {
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
  min-width: 240px;
  max-width: 320px;
  background: rgba(10,12,16,0.97);
  color: #eaeaea;
  font-size: 1rem;
  padding: 1.1em 1.2em 1em 1.2em;
  border-radius: 10px;
  box-shadow: 0 2px 16px #0008;
  border: 1.5px solid #222428;
  z-index: 20;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s, top 0.22s;
  white-space: normal;
}
.tooltip.visible {
  opacity: 1;
  top: 150%;
}
.tooltip-title {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.3em;
  color: #fff;
  font-family: 'Fira Code', 'Consolas', monospace;
}
.tooltip-desc {
  font-size: 0.98rem;
  color: #b8b8b8;
  font-family: 'Fira Code', 'Consolas', monospace;
}
@media (max-width: 600px) {
  .logo { font-size: 1.5rem; }
  .tagline { font-size: 0.95rem; }
  .tooltip {
    min-width: 160px;
    font-size: 0.95rem;
    padding: 0.7em 0.7em 0.7em 0.7em;
  }
  .tooltip-title {
    font-size: 1rem;
  }
  .tooltip-desc {
    font-size: 0.92rem;
  }
} 