* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(8, 20, 35, 0.7), rgba(8, 20, 35, 0.7)),
    url("/health-assets/fundo.jpeg") center center / cover no-repeat fixed;
  color: #f4f7fb;
  padding: 24px;
}

.card {
  width: min(720px, 100%);
  text-align: center;
  background: rgba(7, 13, 25, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 32px 24px;
  backdrop-filter: blur(5px);
}

.logo {
  width: min(220px, 60vw);
  height: auto;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 700;
}

p {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  opacity: 0.92;
}

.badge {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(113, 242, 174, 0.45);
  background: rgba(53, 188, 126, 0.18);
  color: #9af6c2;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.actions {
  margin-top: 22px;
}

.btn-logs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid rgba(146, 194, 255, 0.45);
  background: rgba(77, 141, 230, 0.22);
  color: #e8f0ff;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-logs:hover {
  background: rgba(77, 141, 230, 0.34);
  transform: translateY(-1px);
}