@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.hero-bg {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f1e 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Nome principal */
.name {
  font-weight: 700;
  letter-spacing: -0.04em;
}

/* Ponto maior (35% maior que o texto) */
.dot {
  font-size: 1.55em;        /* Aumentado em ~35% */
  color: #ffffff;
  vertical-align: baseline;
  margin-left: 8px;
  line-height: 1;
}

/* Texto do typing menor */
.typing-text {
  font-weight: 400;
}