html,
body {
  height: 100%;
  font-size: 16px;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  box-sizing: border-box;
}
* {
  box-sizing: border-box;
}
.card {
  max-width: 720px;
  width: 100%;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}
h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 700;
}
h2 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  margin: 1rem 0;
  line-height: 1.3;
  font-weight: 600;
}
p {
  margin: 0.75rem 0;
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  margin-top: 14px;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 8px;
  background: #0b5fff;
  color: #fff;
  cursor: pointer;
  font-size: clamp(1rem, 3vw, 1.125rem);
}
.linkRedirecionamento {
  color: #0b5fff;
  text-decoration: underline;
  cursor: pointer;
}
.linkRedirecionamento:hover {
  color: #0847cc;
}
@media (max-width: 480px) {
  .card {
    padding: 1.5rem;
  }
  h1 {
    margin-bottom: 0.75rem;
  }
  h2 {
    margin: 0.75rem 0;
  }
  p {
    margin: 0.5rem 0;
  }
}
