:root {
  --bg: #050507;
  --card: #0b1014;
  --accent: #0ea5e9;
  --accent-2: #0369a1;
  --glass: rgba(255, 255, 255, 0.04);
  --text: #cbd5e1;
  --muted: #94a3b8;
  --glow: 0 6px 24px rgba(14, 165, 233, 0.08);
}

body {
  height: 100%;
  background: linear-gradient(180deg, #030307 0%, rgba(2, 6, 12, 1) 60%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  padding: 32px;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(14, 165, 233, 0.08);
  box-shadow: var(--glow);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(6px);
}

.title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.bio-text {
  line-height: 1.7;
  color: var(--text);
  font-size: 1rem;
  margin-top: 12px;
}
.meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}
.pill {
  background: linear-gradient(
    90deg,
    rgba(14, 165, 233, 0.08),
    rgba(3, 105, 161, 0.04)
  );
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(14, 165, 233, 0.06);
}

.btn-premium {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(3, 105, 161, 0.18);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.btn-premium:active {
  transform: translateY(1px) scale(0.997);
}

.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeup 0.7s ease forwards;
}
@keyframes fadeup {
  to {
    opacity: 1;
    transform: none;
  }
}

footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--muted);
}

.accent-line {
  height: 4px;
  width: 80px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin: 12px 0 18px;
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}
.agradecimento {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

@media (max-width: 768px) {
  html, body {
    padding: 16px;
  }

  .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card {
    padding: 20px;
  }

  .title {
    font-size: 1.4rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .bio-text {
    font-size: 0.95rem;
  }

  .meta {
    flex-direction: column;
    gap: 8px;
  }

  .btn-premium {
    width: 100%;
    max-width: 100%;
  }

  aside.card {
    width: 100%;
  }
}

/* Extra pequeno (até 420px) */
@media (max-width: 420px) {
  .avatar {
    width: 72px;
    height: 72px;
    font-size: 1rem;
  }

  .title {
    font-size: 1.2rem;
  }

  .bio-text {
    text-align: left;
  }

  .actions {
    flex-direction: column;
    gap: 10px;
  }
}