/* HOME (título centralizado + partículas, tipografia, bloco central) */

.typing-cursor { display: inline-block; width: 1ch; color: #4a0e83; animation: blink 0.7s steps(1) infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.highlight { color: #a78bfa; font-weight: bold; }
#particles-js {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.home-section {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.conteudo-home {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1.2vw, 12px);
  padding-top: 0;
  transform: translate(var(--home-offset-x), var(--home-offset-y));
  max-inline-size: 1100px;
  inline-size: 100%;
  text-align: center;
}
.titulo-principal {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 5.2vw, 4.7rem);
  line-height: 1.1;
  letter-spacing: clamp(0.5px, 0.4vw, 3px);
  margin: 0;
  text-align: center;
}
.subtitulo {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.6vw, 2.2rem);
  letter-spacing: clamp(0.6px, 0.4vw, 3px);
  margin: 0;
  text-align: center;
}
@media (max-width: 1400px) { :root { --home-offset-x: 0px; --home-offset-y: clamp(-16px, -3.5vh, -8px); } }
@media (max-width: 768px)  { :root { --home-offset-x: 0px; --home-offset-y: clamp(-12px, -3vh, -6px); } }
