body {
  font-family: Arial, sans-serif;
  background: #f4f5f6;
  margin: 0;
  padding: 40px 16px;
  color: #111;
}

.card {
  max-width: 760px;
  margin: auto;
  text-align: center;
  background: #ffffff;
  padding: 48px 32px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

h1 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 22px;
  margin-bottom: 14px;
  margin-top: 30px;
}

p {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

ul {
  padding-left: 18px;
}

li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #444;
}

img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 12px;
}

.cta {

  display: block !important;
  width: fit-content;
  margin: 35px auto !important;
  text-align: center;

  background: #1e88e5;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(30, 136, 229, 0.25);
  transition: 0.2s ease;
  transform: scale(1);
}

.cta:hover {
  background: #1565c0;
  transform: scale(1.03);
}

.checks {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.disclaimer {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 20px;
}

/* BLOCO DE PROVA REAL */
.prova-real {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #1e88e5;
  margin-top: 25px;
}

.subheadline {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .card {
    padding: 32px 20px;
  }

  h1 {
    font-size: 24px;
  }

  img {
    max-width: 90%;
  }
}
