:root{
  /* Ajusta aqui o “azul escuro” ao teu gosto */
  --bg: #061a2b;
  --text: #ffffff;
  --muted: rgba(255,255,255,.85);
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.wrap{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.card{
  width: min(760px, 100%);
  text-align: center;
}

.title{
  margin: 0 0 22px 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.lines{
  display: grid;
  gap: 12px;
}

.line{
  margin: 0;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  color: var(--muted);
}

.link{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
}

.link:hover{
  border-bottom-color: rgba(255,255,255,.8);
}

.footer{
  margin-top: 26px;
  color: rgba(255,255,255,.75);
}

.footer small{
  font-weight: 400;
}
