:root {
  --dark: #1c2b26;
  --green: #4a5d54;
  --whatsapp: #25D366;
  --bg-top: #f4f6f4;
  --bg-bottom: #e4e9e4;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(160deg, var(--bg-top), var(--bg-bottom));
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(28, 43, 38, 0.12);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin-bottom: 12px;
}

.status {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 8px 0 4px;
  letter-spacing: 0.3px;
}

.subtext {
  font-size: 15px;
  color: #5a6b62;
  margin: 0 0 24px;
  line-height: 1.5;
}

.divider {
  height: 1px;
  background: #e2e6e2;
  margin: 0 0 28px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  background: #f4f6f4;
  border-radius: 12px;
  padding: 14px 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(28, 43, 38, 0.1);
}

.contact-item .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-item.whatsapp .icon {
  fill: var(--whatsapp);
}

.contact-item.whatsapp:hover {
  background: #e9f9ee;
}

.contact-item.email .icon {
  fill: var(--green);
}

.contact-item.email:hover {
  background: #eef1ee;
}

footer {
  margin-top: 24px;
  font-size: 13px;
  color: #7c8a82;
  text-align: center;
}

@media (max-width: 480px) {
  .card {
    padding: 36px 24px;
  }
  .status {
    font-size: 19px;
  }
}
