/* Fondo tenue tipo Windows 11 */
.profile-bg {
  background: radial-gradient(1200px 600px at 10% 10%, #eef3ff, transparent),
              radial-gradient(800px 400px at 90% 0%, #e6fff7, transparent),
              #f7f8fb;
}

/* Tarjeta “glass” */
.glass-card {
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Subtarjetas suaves */
.subcard {
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Avatar */
.avatar-xxl { width: 96px; height: 96px; }
.avatar-xxl img, .avatar-xxl .avatar-fallback {
  width: 100%; height: 100%; object-fit: cover;
  display: block; text-align: center; line-height: 96px; font-size: 42px;
}
.avatar-fallback { color: #6c757d; }

/* Detalles */
.bullet {
  width: 8px; height: 8px; border-radius: 50%; background: #0d6efd; display: inline-block;
}

/* Inputs redondeados para look Win11 */
.form-control, .form-select {
  border-radius: 12px;
}
.btn { border-radius: 12px; }
