/* ==========================
   SONETTO — HOME PROVISÓRIA
========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: linear-gradient(to bottom, #f6f2eb, #ece5db);
  color: #1f1f1f;
  font-family: "Georgia", "Times New Roman", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.hero {
  width: 100%;
  padding: 2rem;
}

.hero-conteudo {
  max-width: 700px;
  margin: 0 auto;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}

.subtitulo {
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #6e6257;
  margin-bottom: 2rem;
}

.frase {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a5149;
  font-style: italic;
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 768px) {
  .subtitulo {
    letter-spacing: 0.25em;
  }

  .frase {
    font-size: 1rem;
    line-height: 1.7;
  }
}