* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #020617;
  color: #e5e7eb;
}

/* CONTAINER */
.card-container {
  max-width: 420px;
  margin: 0 auto;
  background: #020617;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  overflow: hidden;
}

/* CAPA */
.cover img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* PERFIL */
.profile {
  text-align: center;
  margin-top: -55px;
  padding: 0 20px;
  
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #020617;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  object-fit: cover;
}

.profile h1 {
  margin-top: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}

.subtitle {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* CONTEÚDO */
.content {
  padding: 24px 22px 30px;
}

.content h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.description {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.feature {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* AÇÕES */
.actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn img {
  width: 20px;
  height: 20px;
  filter: invert(100%);
}

/* BOTÃO PRINCIPAL */
.primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #020617;
  box-shadow: 0 14px 30px rgba(34,197,94,0.35);
}

.primary:hover {
  transform: translateY(-2px);
}

/* BOTÃO SECUNDÁRIO */
.secondary {
  border: 1px solid #334155;
  color: #e5e7eb;
}

.secondary:hover {
  background: #020617;
}
