:root {
  --navy: #061225;
  --blue: #1559c7;
  --blue-bright: #2478ff;
  --green: #13b56b;
  --text: #0b1a33;
  --muted: #52657d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 15%, rgba(36, 120, 255, 0.22), transparent 34%),
    linear-gradient(145deg, #f8fbff 0%, #eaf3ff 48%, #f8fbff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 89, 199, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 89, 199, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.card {
  width: min(760px, 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
  border: 1px solid rgba(21, 89, 199, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 90px rgba(6, 18, 37, 0.14);
  backdrop-filter: blur(18px);
}

.card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 120, 255, 0.2), transparent 68%);
}

.logo {
  width: min(280px, 76%);
  height: auto;
  margin-bottom: 26px;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(36, 120, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(19, 181, 107, 0.9);
}

h1 {
  margin: 24px auto 16px;
  max-width: 640px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  color: var(--navy);
}

p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(6, 18, 37, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(6, 18, 37, 0.18);
}

.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
}

.whatsapp {
  background: linear-gradient(135deg, #0f9f5f, var(--green));
}

.meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.meta span {
  padding: 10px 14px;
  border: 1px solid rgba(21, 89, 199, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #345574;
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 560px) {
  .page {
    padding: 18px;
  }

  .card {
    padding: 30px 20px;
    border-radius: 26px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
