* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
}

body {
  background-color: var(--background); /* #F3EEEB */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  text-align: center;
}

.typewriter {
  color: var(--primary); /* #A25040 */
  font-family: var(--font-title); /* Playfair Display */
  font-size: clamp(2.5rem, 10vw, 7rem);
  font-weight: 600;
  white-space: nowrap;
  min-height: 1.2em;
}

/* Tamanho reduzido para a frase "em processo…" */
.typewriter--small {
  font-size: clamp(1.5rem, 6vw, 4rem);
}

.typewriter__cursor {
  display: inline-block;
  width: 0.06em;
  height: 1em;
  margin-left: 0.05em;
  vertical-align: -0.12em;
  background-color: var(--primary); /* #A25040 */
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
