    :root {
      --bg: #0f172a;       /* azul escuro usado no site */
      --highlight: #cdad7d; /* mesma cor da frase principal */
      --white: #ffffff;
      --brand: #2563eb;
    }

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

    body {
      font-family: "Libre Baskerville", Georgia, serif;
      background: var(--bg);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      padding: 20px;
    }

    .container {
      max-width: 700px;
    }

    h1 {
      font-size: clamp(28px, 4vw, 52px);
      color: var(--highlight);
      margin-bottom: 20px;
    }

    p {
      font-size: 20px;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    a.voltar {
      display: inline-block;
      padding: 14px 24px;
      font-size: 18px;
      font-weight: bold;
      background: var(--brand);
      color: var(--white);
      text-decoration: none;
      border-radius: 10px;
      transition: 0.2s;
    }

    a.voltar:hover {
      background: #1e40af;
    }
